Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / eventsource / eventsource-cors-basic-expected.txt
blob532b57ccfa9c90d0f8bd92ca6ec02a058e12e0a9
1 CONSOLE ERROR: EventSource cannot load http://127.0.0.1:8080/eventsource/resources/es-cors-basic.php?count=1. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://127.0.0.1:8000' is therefore not allowed access.
2 CONSOLE ERROR: EventSource cannot load http://127.0.0.1:8080/eventsource/resources/es-cors-basic.php?count=2. The 'Access-Control-Allow-Origin' header has a value 'http://some.other.origin:80' that is not equal to the supplied origin. Origin 'http://127.0.0.1:8000' is therefore not allowed access.
3 Test that basic EventSource cross-origin requests fail until they are allowed by the Access-Control-Allow-Origin header.
5 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
8 PASS es = new EventSource("http://127.0.0.1:8080/eventsource/resources/es-cors-basic.php?count=1") did not throw exception.
9 PASS es.withCredentials is false
10 PASS es.readyState is es.CLOSED
11 PASS count != 3 && count != 4 is true
12 PASS es = new EventSource("http://127.0.0.1:8080/eventsource/resources/es-cors-basic.php?count=2") did not throw exception.
13 PASS es.withCredentials is false
14 PASS es.readyState is es.CLOSED
15 PASS count != 3 && count != 4 is true
16 PASS es = new EventSource("http://127.0.0.1:8080/eventsource/resources/es-cors-basic.php?count=3") did not throw exception.
17 PASS es.withCredentials is false
18 PASS evt.origin.indexOf('http://127.0.0.1:8080') === 0 is true
19 PASS evt.data == 'DATA1' && evt.lastEventId == '77' is true
20 PASS count is 4
21 PASS evt.origin.indexOf('http://127.0.0.1:8080') === 0 is true
22 PASS count is 4
23 PASS evt.data is "DATA2"
24 DONE
25 PASS successfullyParsed is true
27 TEST COMPLETE