[tests] Ignore console line numbers without source files
Decrease scheduler flakes of layout tests which can incorrectly infer console message line numbers depending on execution scheduling. Do this by ignoring line numbers of console messages which do not have an associated discovered source file. Bug: 894792 Bug: 894795 Bug: 896194 Change-Id: Ic8565ba7ac4a2e036f9d333c319544efdc8a3601 Reviewed-on: https://chromium-review.googlesource.com/c/1283037 Commit-Queue: Leszek Swirski <leszeks@chromium.org> Reviewed-by: Peter Beverloo <peter@chromium.org> Reviewed-by: Dan Elphick <delphick@chromium.org> Cr-Commit-Position: refs/heads/master@{#600380}
This commit is contained in:

committed by
Commit Bot

parent
fc07b1db95
commit
ee70ab471e
content/shell/test_runner
third_party/WebKit/LayoutTests
fast
css-grid-layout
grid-columns-rows-get-set-expected.txtgrid-columns-rows-get-set-multiple-expected.txtnamed-grid-line-get-set-expected.txt
dom
custom
shadow
domurl
events
event-isolated-world-clone-expected.txtevents-in-isolated-world-expected.txtinit-custom-event-isolated-world-expected.txtinit-message-event-isolated-world-expected.txt
forms
frames
mediastream
peerconnection
xmlhttprequest
html5lib
http
tests
pointer-lock
security
contentSecurityPolicy
isolatedWorld
bypass-main-world-csp-for-inline-script-expected.txtno-bypass-main-world-csp-for-delayed-execution-expected.txtsandboxed-iframe-expected.txt
popup-allowed-by-sandbox-is-sandboxed-control-expected.txtpopup-allowed-by-sandbox-is-sandboxed-expected.txtxss-exception-expected.txtwebsocket
xmlhttprequest
getResponseHeader-expected.txt
origin-exact-matching
07-expected.txt08-expected.txt09-expected.txt10-expected.txt11-expected.txt12-expected.txt13-expected.txt14-expected.txt15-expected.txt16-expected.txt17-expected.txt18-expected.txt19-expected.txt20-expected.txt21-expected.txt22-expected.txt23-expected.txt24-expected.txt25-expected.txt26-expected.txt27-expected.txt28-expected.txt29-expected.txt30-expected.txt31-expected.txt32-expected.txt33-expected.txt34-expected.txt35-expected.txt36-expected.txt37-expected.txt38-expected.txt39-expected.txt40-expected.txt41-expected.txt42-expected.txt43-expected.txt44-expected.txt45-expected.txt46-expected.txt47-expected.txt
redirect-cross-origin-tripmine-expected.txtxhr-to-blob-in-isolated-world-expected.txtwebexposed
@ -520,7 +520,10 @@ void WebFrameTestClient::DidAddMessageToConsole(
|
||||
level = "MESSAGE";
|
||||
}
|
||||
std::string console_message(std::string("CONSOLE ") + level + ": ");
|
||||
if (source_line) {
|
||||
// Do not print line numbers if there is no associated source file name.
|
||||
// TODO(crbug.com/896194): Figure out why the source line is flaky for empty
|
||||
// source names.
|
||||
if (!source_name.IsEmpty() && source_line) {
|
||||
console_message += base::StringPrintf("line %d: ", source_line);
|
||||
}
|
||||
// Console messages shouldn't be included in the expected output for
|
||||
|
2
third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-columns-rows-get-set-expected.txt
vendored
2
third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-columns-rows-get-set-expected.txt
vendored
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: Percentages row tracks and gutters for indefinite height grid containers will be resolved against the intrinsic height instead of being treated as auto and zero respectively. This change will happen in M70, around October 2018. See https://www.chromestatus.com/feature/6708326821789696 for more details.
|
||||
CONSOLE WARNING: Percentages row tracks and gutters for indefinite height grid containers will be resolved against the intrinsic height instead of being treated as auto and zero respectively. This change will happen in M70, around October 2018. See https://www.chromestatus.com/feature/6708326821789696 for more details.
|
||||
Test that setting and getting grid-template-columns and grid-template-rows works as expected
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
2
third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-columns-rows-get-set-multiple-expected.txt
vendored
2
third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-columns-rows-get-set-multiple-expected.txt
vendored
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: Percentages row tracks and gutters for indefinite height grid containers will be resolved against the intrinsic height instead of being treated as auto and zero respectively. This change will happen in M70, around October 2018. See https://www.chromestatus.com/feature/6708326821789696 for more details.
|
||||
CONSOLE WARNING: Percentages row tracks and gutters for indefinite height grid containers will be resolved against the intrinsic height instead of being treated as auto and zero respectively. This change will happen in M70, around October 2018. See https://www.chromestatus.com/feature/6708326821789696 for more details.
|
||||
Test that setting and getting grid-template-columns and grid-template-rows works as expected
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: Percentages row tracks and gutters for indefinite height grid containers will be resolved against the intrinsic height instead of being treated as auto and zero respectively. This change will happen in M70, around October 2018. See https://www.chromestatus.com/feature/6708326821789696 for more details.
|
||||
CONSOLE WARNING: Percentages row tracks and gutters for indefinite height grid containers will be resolved against the intrinsic height instead of being treated as auto and zero respectively. This change will happen in M70, around October 2018. See https://www.chromestatus.com/feature/6708326821789696 for more details.
|
||||
Test that setting and getting grid-template-columns and grid-template-rows works as expected
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 17: document.registerElement is deprecated and will be removed in M73, around March 2019. Please use window.customElements.define instead. See https://www.chromestatus.com/features/4642138092470272 for more details.
|
||||
CONSOLE WARNING: line 1: :unresolved pseudo selector is deprecated and will be removed in M73, around March 2019. Please use :not(:defined) instead. See https://www.chromestatus.com/features/4642138092470272 for more details.
|
||||
CONSOLE WARNING: :unresolved pseudo selector is deprecated and will be removed in M73, around March 2019. Please use :not(:defined) instead. See https://www.chromestatus.com/features/4642138092470272 for more details.
|
||||
Tests the element upgrade algorithm.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: document.registerElement is deprecated and will be removed in M73, around March 2019. Please use window.customElements.define instead. See https://www.chromestatus.com/features/4642138092470272 for more details.
|
||||
CONSOLE WARNING: document.registerElement is deprecated and will be removed in M73, around March 2019. Please use window.customElements.define instead. See https://www.chromestatus.com/features/4642138092470272 for more details.
|
||||
Tests throwing an exception during registration of constructor
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: document.registerElement is deprecated and will be removed in M73, around March 2019. Please use window.customElements.define instead. See https://www.chromestatus.com/features/4642138092470272 for more details.
|
||||
CONSOLE WARNING: document.registerElement is deprecated and will be removed in M73, around March 2019. Please use window.customElements.define instead. See https://www.chromestatus.com/features/4642138092470272 for more details.
|
||||
Tests that accessing custom elements from an isolated world does not cause worlds to collide and destroy the galaxy.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: /deep/ combinator is no longer supported in CSS dynamic profile.It is now effectively no-op, acting as if it were a descendant combinator. /deep/ combinator will be removed, and will be invalid at M65. You should remove it. See https://www.chromestatus.com/features/4964279606312960 for more details.
|
||||
CONSOLE WARNING: /deep/ combinator is no longer supported in CSS dynamic profile.It is now effectively no-op, acting as if it were a descendant combinator. /deep/ combinator will be removed, and will be invalid at M65. You should remove it. See https://www.chromestatus.com/features/4964279606312960 for more details.
|
||||
/deep/ as a descendant selector in document without shadow trees.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
|
||||
CONSOLE WARNING: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
|
||||
Tests to ensure that shadow element cannot be created in elements having dynamically created shadow root.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
2
third_party/WebKit/LayoutTests/fast/domurl/check-instanceof-domurl-functions-expected.txt
vendored
2
third_party/WebKit/LayoutTests/fast/domurl/check-instanceof-domurl-functions-expected.txt
vendored
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: 'webkitURL' is deprecated. Please use 'URL' instead.
|
||||
CONSOLE WARNING: 'webkitURL' is deprecated. Please use 'URL' instead.
|
||||
Test instanceof functions and properties of URL and webkitURL.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,15 +1,15 @@
|
||||
CONSOLE MESSAGE: line 10: CustomEvent received in main world
|
||||
CONSOLE MESSAGE: line 11: detail was {"foo":5,"bar":"hello","targetWorld":"main"}
|
||||
CONSOLE MESSAGE: line 3: CustomEvent received in isolated world
|
||||
CONSOLE MESSAGE: line 4: detail was {"foo":5,"bar":"hello","targetWorld":"isolated"}
|
||||
CONSOLE MESSAGE: CustomEvent received in isolated world
|
||||
CONSOLE MESSAGE: detail was {"foo":5,"bar":"hello","targetWorld":"isolated"}
|
||||
CONSOLE MESSAGE: line 10: MessageEvent received in main world
|
||||
CONSOLE MESSAGE: line 11: data was {"foo":5,"bar":"hello","targetWorld":"main"}
|
||||
CONSOLE MESSAGE: line 3: MessageEvent received in isolated world
|
||||
CONSOLE MESSAGE: line 4: data was {"foo":5,"bar":"hello","targetWorld":"isolated"}
|
||||
CONSOLE MESSAGE: MessageEvent received in isolated world
|
||||
CONSOLE MESSAGE: data was {"foo":5,"bar":"hello","targetWorld":"isolated"}
|
||||
CONSOLE MESSAGE: line 10: PopStateEvent received in main world
|
||||
CONSOLE MESSAGE: line 11: state was {"foo":5,"bar":"hello","targetWorld":"main"}
|
||||
CONSOLE MESSAGE: line 3: PopStateEvent received in isolated world
|
||||
CONSOLE MESSAGE: line 4: state was {"foo":5,"bar":"hello","targetWorld":"isolated"}
|
||||
CONSOLE MESSAGE: PopStateEvent received in isolated world
|
||||
CONSOLE MESSAGE: state was {"foo":5,"bar":"hello","targetWorld":"isolated"}
|
||||
Tests that properties of various events are cloned between isolated worlds.
|
||||
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
CONSOLE MESSAGE: line 1: keydown event in isolated world
|
||||
CONSOLE MESSAGE: keydown event in isolated world
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
CONSOLE MESSAGE: line 10: CustomEvent received in main world
|
||||
CONSOLE MESSAGE: line 11: detail was {"foo":5,"bar":"hello","targetWorld":"main"}
|
||||
CONSOLE MESSAGE: line 3: CustomEvent received in isolated world
|
||||
CONSOLE MESSAGE: line 4: detail was {"foo":5,"bar":"hello","targetWorld":"isolated"}
|
||||
CONSOLE MESSAGE: CustomEvent received in isolated world
|
||||
CONSOLE MESSAGE: detail was {"foo":5,"bar":"hello","targetWorld":"isolated"}
|
||||
Tests that properties of CustomEvent initialized with initCustomEvent() are cloned when accessed in isolated worlds.
|
||||
|
||||
|
||||
|
4
third_party/WebKit/LayoutTests/fast/events/init-message-event-isolated-world-expected.txt
vendored
4
third_party/WebKit/LayoutTests/fast/events/init-message-event-isolated-world-expected.txt
vendored
@ -1,7 +1,7 @@
|
||||
CONSOLE MESSAGE: line 10: MessageEvent received in main world
|
||||
CONSOLE MESSAGE: line 11: detail was {"foo":5,"bar":"hello","targetWorld":"main"}
|
||||
CONSOLE MESSAGE: line 3: MessageEvent received in isolated world
|
||||
CONSOLE MESSAGE: line 4: detail was {"foo":5,"bar":"hello","targetWorld":"isolated"}
|
||||
CONSOLE MESSAGE: MessageEvent received in isolated world
|
||||
CONSOLE MESSAGE: detail was {"foo":5,"bar":"hello","targetWorld":"isolated"}
|
||||
Tests that properties of MessageEvents initialized with initMessageEvent() are cloned when accessed in isolated worlds.
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: The specified value "2" does not conform to the required format. The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers.
|
||||
CONSOLE WARNING: The specified value "2" does not conform to the required format. The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers.
|
||||
Check stepMismatch results for unsupported types.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,8 +1,8 @@
|
||||
CONSOLE WARNING: line 1: The specified value "" does not conform to the required format. The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers.
|
||||
CONSOLE WARNING: line 1: The specified value "#ghijkl" does not conform to the required format. The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers.
|
||||
CONSOLE WARNING: line 1: The specified value "#112233ff" does not conform to the required format. The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers.
|
||||
CONSOLE WARNING: line 1: The specified value "ffccaa" does not conform to the required format. The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers.
|
||||
CONSOLE WARNING: line 1: The specified value " #223344 " does not conform to the required format. The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers.
|
||||
CONSOLE WARNING: The specified value "" does not conform to the required format. The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers.
|
||||
CONSOLE WARNING: The specified value "#ghijkl" does not conform to the required format. The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers.
|
||||
CONSOLE WARNING: The specified value "#112233ff" does not conform to the required format. The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers.
|
||||
CONSOLE WARNING: The specified value "ffccaa" does not conform to the required format. The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers.
|
||||
CONSOLE WARNING: The specified value " #223344 " does not conform to the required format. The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers.
|
||||
Value sanitization test for input[type=color]
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: The specified value "inputRadioValue" does not conform to the required format, "yyyy-MM-dd".
|
||||
CONSOLE WARNING: The specified value "inputRadioValue" does not conform to the required format, "yyyy-MM-dd".
|
||||
This test is for RadioNodeList specified at http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#radionodelist
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,6 +1,6 @@
|
||||
CONSOLE WARNING: line 10: Blocked to expand the option list to 2147483648 items. The maximum list length is 2147483647.
|
||||
CONSOLE WARNING: line 1: Blocked to expand the option list and set an option at index=2147483648. The maximum list length is 2147483647.
|
||||
CONSOLE WARNING: line 1: Blocked to expand the option list and set an option at index=2147483648. The maximum list length is 2147483647.
|
||||
CONSOLE WARNING: Blocked to expand the option list and set an option at index=2147483648. The maximum list length is 2147483647.
|
||||
CONSOLE WARNING: Blocked to expand the option list and set an option at index=2147483648. The maximum list length is 2147483647.
|
||||
This test that setting HTMLSelectElement.length is capped to 2,147,483,647, and you can't add additional Option elements too.
|
||||
|
||||
PASS sel.length is 0
|
||||
|
@ -1,2 +1,2 @@
|
||||
CONSOLE MESSAGE: line 1: SUCCESS
|
||||
CONSOLE MESSAGE: SUCCESS
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
CONSOLE MESSAGE: Blink Test Plugin: initializing
|
||||
CONSOLE ERROR: line 1: Failed to load 'data:text/plain,' as a plugin, because the frame into which the plugin is loading is sandboxed.
|
||||
CONSOLE ERROR: Failed to load 'data:text/plain,' as a plugin, because the frame into which the plugin is loading is sandboxed.
|
||||
CONSOLE MESSAGE: Blink Test Plugin: initializing
|
||||
CONSOLE ERROR: line 1: Failed to load '' as a plugin, because the frame into which the plugin is loading is sandboxed.
|
||||
CONSOLE ERROR: Failed to load '' as a plugin, because the frame into which the plugin is loading is sandboxed.
|
||||
This test verifies that sandboxing of plugins works as intended. Two tests are made, each in one sandboxed and one non-sandboxed IFrame: embeds and objects.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: Unknown constraint named valid_but_unsupported_1 rejected
|
||||
CONSOLE WARNING: Unknown constraint named valid_but_unsupported_1 rejected
|
||||
Tests webkitGetUserMedia.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
2
third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-datachannel-expected.txt
vendored
2
third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-datachannel-expected.txt
vendored
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: maxRetransmitTime is deprecated and will be removed in M70, around October 2018. Please use maxPacketLifeTime instead. See https://www.chromestatus.com/features/5198350873788416 for more details.
|
||||
CONSOLE WARNING: maxRetransmitTime is deprecated and will be removed in M70, around October 2018. Please use maxPacketLifeTime instead. See https://www.chromestatus.com/features/5198350873788416 for more details.
|
||||
Tests RTCDataChannel.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,7 +1,7 @@
|
||||
CONSOLE WARNING: line 1: The rtcpMuxPolicy option is being considered for removal and may be removed no earlier than M62, around October 2017. If you depend on it, please see https://www.chromestatus.com/features/5654810086866944 for more details.
|
||||
CONSOLE WARNING: line 1: Unknown constraint named invalid rejected
|
||||
CONSOLE WARNING: line 1: Unknown constraint named valid_but_unsupported_1 rejected
|
||||
CONSOLE WARNING: line 1: Unknown constraint named valid_but_unsupported_1 rejected
|
||||
CONSOLE WARNING: The rtcpMuxPolicy option is being considered for removal and may be removed no earlier than M62, around October 2017. If you depend on it, please see https://www.chromestatus.com/features/5654810086866944 for more details.
|
||||
CONSOLE WARNING: Unknown constraint named invalid rejected
|
||||
CONSOLE WARNING: Unknown constraint named valid_but_unsupported_1 rejected
|
||||
CONSOLE WARNING: Unknown constraint named valid_but_unsupported_1 rejected
|
||||
Tests the RTCPeerConnection constructor.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
4
third_party/WebKit/LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype-expected.txt
vendored
4
third_party/WebKit/LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 1: The provided value 'dkjdfkjdfkj' is not a valid enum value of type XMLHttpRequestResponseType.
|
||||
CONSOLE WARNING: line 1: The provided value 'asdfasdfasd' is not a valid enum value of type XMLHttpRequestResponseType.
|
||||
CONSOLE WARNING: The provided value 'dkjdfkjdfkj' is not a valid enum value of type XMLHttpRequestResponseType.
|
||||
CONSOLE WARNING: The provided value 'asdfasdfasd' is not a valid enum value of type XMLHttpRequestResponseType.
|
||||
This test checks if setting non-supported type does not throw an exception
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,3 +1,3 @@
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
../resources/webkit01.dat: PASS
|
||||
|
@ -1,159 +1,159 @@
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: PASS
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: line 2: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
CONSOLE MESSAGE: FOO<span>BAR</span>BAZ
|
||||
resources/webkit01.dat: PASS
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE ERROR: line 1: Blocked pointer lock on an element because the element's frame is sandboxed and the 'allow-pointer-lock' permission is not set.
|
||||
CONSOLE ERROR: Blocked pointer lock on an element because the element's frame is sandboxed and the 'allow-pointer-lock' permission is not set.
|
||||
Test sandboxed iframe blocks pointer lock.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE ERROR: line 1: Blocked pointer lock on an element because the element's frame is sandboxed and the 'allow-pointer-lock' permission is not set.
|
||||
CONSOLE ERROR: Blocked pointer lock on an element because the element's frame is sandboxed and the 'allow-pointer-lock' permission is not set.
|
||||
Test nested sandboxed iframes without and then with allow-pointer-lock disallow pointer lock.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,3 +1,3 @@
|
||||
CONSOLE MESSAGE: line 2: PASS (1/2): Script can execute
|
||||
CONSOLE MESSAGE: line 1: PASS (2/2): Eval works
|
||||
CONSOLE MESSAGE: PASS (2/2): Eval works
|
||||
|
||||
|
@ -2,10 +2,10 @@ CONSOLE MESSAGE: line 33: Injecting in main world: this should fail.
|
||||
CONSOLE ERROR: line 21: Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self' 'unsafe-eval'". Either the 'unsafe-inline' keyword, a hash ('sha256-09Et/dqtUwF1zPoVDKo5ZDj2NUXqkLUxcQfh9UtQQt0='), or a nonce ('nonce-...') is required to enable inline execution.
|
||||
|
||||
CONSOLE MESSAGE: line 38: Injecting into isolated world without bypass: this should fail.
|
||||
CONSOLE ERROR: line 4: Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self' 'unsafe-eval'". Either the 'unsafe-inline' keyword, a hash ('sha256-weyW8ZEkQAD8it2iIcRJESCAdVG/APiGxF6JYEqMvKo='), or a nonce ('nonce-...') is required to enable inline execution.
|
||||
CONSOLE ERROR: Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self' 'unsafe-eval'". Either the 'unsafe-inline' keyword, a hash ('sha256-weyW8ZEkQAD8it2iIcRJESCAdVG/APiGxF6JYEqMvKo='), or a nonce ('nonce-...') is required to enable inline execution.
|
||||
|
||||
CONSOLE MESSAGE: line 43: Starting to bypass main world's CSP: this should pass!
|
||||
CONSOLE MESSAGE: line 1: EXECUTED in isolated world.
|
||||
CONSOLE MESSAGE: EXECUTED in isolated world.
|
||||
CONSOLE MESSAGE: line 49: Injecting into main world again: this should fail.
|
||||
CONSOLE ERROR: line 21: Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self' 'unsafe-eval'". Either the 'unsafe-inline' keyword, a hash ('sha256-09Et/dqtUwF1zPoVDKo5ZDj2NUXqkLUxcQfh9UtQQt0='), or a nonce ('nonce-...') is required to enable inline execution.
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
ALERT: PASS: Case 3 was not blocked by a CSP.
|
||||
CONSOLE MESSAGE: line 1: EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "script-src 'self'".
|
||||
CONSOLE MESSAGE: EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "script-src 'self'".
|
||||
|
||||
ALERT: PASS: Case 2 was blocked by a CSP.
|
||||
ALERT: PASS: Case 1 was not evaluated in main world.
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/security/isolatedWorld/sandboxed-iframe-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/security/isolatedWorld/sandboxed-iframe-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE ERROR: Blocked script execution in 'http://127.0.0.1:8000/security/isolatedWorld/resources/fail.html' because the document's frame is sandboxed and the 'allow-scripts' permission is not set.
|
||||
CONSOLE MESSAGE: line 1: PASS
|
||||
CONSOLE MESSAGE: PASS
|
||||
Test that executing scripts in an isolated world works even inside sandboxed iframes. The test passes, if an alert with the text "PASS" is shown.
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE MESSAGE: line 1: /PASS/
|
||||
CONSOLE MESSAGE: /PASS/
|
||||
To run this test outside of DumpRenderTree, please disable your popup blocker!
|
||||
|
||||
If you change this test, please be sure to change popup-allowed-by-sandbox-is-sandboxed.html as well!
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE ERROR: line 1: Blocked form submission to 'javascript:alert(/FAIL/)' because the form's frame is sandboxed and the 'allow-forms' permission is not set.
|
||||
CONSOLE ERROR: Blocked form submission to 'javascript:alert(/FAIL/)' because the form's frame is sandboxed and the 'allow-forms' permission is not set.
|
||||
To run this test outside of DumpRenderTree, please disable your popup blocker!
|
||||
|
||||
If you change this test, please be sure to change popup-allowed-by-sandbox-is-sandboxed-control.html as well!
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE MESSAGE: line 3: PASS: not executed in iframe context
|
||||
CONSOLE MESSAGE: line 3: PASS: not executed in iframe context
|
||||
CONSOLE MESSAGE: line 3: PASS: not executed in iframe context
|
||||
CONSOLE MESSAGE: PASS: not executed in iframe context
|
||||
CONSOLE MESSAGE: PASS: not executed in iframe context
|
||||
CONSOLE MESSAGE: PASS: not executed in iframe context
|
||||
Test passes if three "PASS" messages are logged to the console.
|
||||
|
38
third_party/WebKit/LayoutTests/http/tests/websocket/bufferedAmount-after-close-expected.txt
vendored
38
third_party/WebKit/LayoutTests/http/tests/websocket/bufferedAmount-after-close-expected.txt
vendored
@ -1,22 +1,22 @@
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
WebSocket bufferedAmount after closed
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
38
third_party/WebKit/LayoutTests/http/tests/websocket/bufferedAmount-after-close-in-busy-expected.txt
vendored
38
third_party/WebKit/LayoutTests/http/tests/websocket/bufferedAmount-after-close-in-busy-expected.txt
vendored
@ -1,22 +1,22 @@
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: line 1: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
CONSOLE ERROR: WebSocket is already in CLOSING or CLOSED state.
|
||||
WebSocket bufferedAmount after closed in busy
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
@ -1,9 +1,9 @@
|
||||
CONSOLE ERROR: line 1: Refused to get unsafe header "SeT-COoKie"
|
||||
CONSOLE ERROR: line 1: Refused to get unsafe header "sEt-coOkIE2"
|
||||
CONSOLE ERROR: line 1: Refused to get unsafe header "SeT-COoKie"
|
||||
CONSOLE ERROR: line 1: Refused to get unsafe header "sEt-coOkIE2"
|
||||
CONSOLE ERROR: line 1: Refused to get unsafe header "SeT-COoKie"
|
||||
CONSOLE ERROR: line 1: Refused to get unsafe header "sEt-coOkIE2"
|
||||
CONSOLE ERROR: Refused to get unsafe header "SeT-COoKie"
|
||||
CONSOLE ERROR: Refused to get unsafe header "sEt-coOkIE2"
|
||||
CONSOLE ERROR: Refused to get unsafe header "SeT-COoKie"
|
||||
CONSOLE ERROR: Refused to get unsafe header "sEt-coOkIE2"
|
||||
CONSOLE ERROR: Refused to get unsafe header "SeT-COoKie"
|
||||
CONSOLE ERROR: Refused to get unsafe header "sEt-coOkIE2"
|
||||
Test the required behavior of XMLHttpRequest.getResponseHeader()
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/07-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/07-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Fwww2.localhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://www2.localhost:8000' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Fwww2.localhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://www2.localhost:8000' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/08-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/08-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '//localhost:8000'.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '//localhost:8000'.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/09-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/09-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '://localhost:8000'.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '://localhost:8000'.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/10-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/10-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=ftp%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'ftp://localhost:8000' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=ftp%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'ftp://localhost:8000' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/11-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/11-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value 'http:://localhost:8000'.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value 'http:://localhost:8000'.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/12-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/12-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http:/localhost:8000' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http:/localhost:8000' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/13-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/13-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3Alocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http:localhost:8000' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3Alocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http:localhost:8000' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/14-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/14-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=localhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'localhost:8000' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=localhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'localhost:8000' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/15-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/15-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%3F' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://localhost:8000?' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%3F' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://localhost:8000?' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/16-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/16-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%2F' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://localhost:8000/' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%2F' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://localhost:8000/' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/17-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/17-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%20%2F' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://localhost:8000 /', but only one is allowed.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%20%2F' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://localhost:8000 /', but only one is allowed.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/18-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/18-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%23' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://localhost:8000#' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%23' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://localhost:8000#' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/19-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/19-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%2523' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value 'http://localhost:8000%23'.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%2523' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value 'http://localhost:8000%23'.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/20-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/20-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%3A80' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value 'http://localhost:8000:80'.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%3A80' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value 'http://localhost:8000:80'.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/21-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/21-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%2C%20*' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://localhost:8000, *', but only one is allowed.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%2C%20*' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://localhost:8000, *', but only one is allowed.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/22-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/22-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%00' from origin 'http://localhost:8000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%00' from origin 'http://localhost:8000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/23-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/23-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=HTTP%3A%2F%2FLOCALHOST%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'HTTP://LOCALHOST:8000' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=HTTP%3A%2F%2FLOCALHOST%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'HTTP://LOCALHOST:8000' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/24-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/24-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=HTTP%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'HTTP://localhost:8000' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=HTTP%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'HTTP://localhost:8000' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/25-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/25-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=-' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '-'.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=-' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '-'.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/26-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/26-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=**' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '**'.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=**' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '**'.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/27-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/27-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=%00*' from origin 'http://localhost:8000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=%00*' from origin 'http://localhost:8000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/28-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/28-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=*%00' from origin 'http://localhost:8000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=*%00' from origin 'http://localhost:8000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/29-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/29-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=%27*%27' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value ''*''.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=%27*%27' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value ''*''.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/30-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/30-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=%22*%22' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '"*"'.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=%22*%22' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '"*"'.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/31-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/31-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=*%20*' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values '* *', but only one is allowed.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=*%20*' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values '* *', but only one is allowed.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/32-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/32-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=*http%3A%2F%2F*' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '*http://*'.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=*http%3A%2F%2F*' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '*http://*'.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/33-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/33-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=*http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '*http://localhost:8000'.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=*http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value '*http://localhost:8000'.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/34-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/34-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=*%20http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values '* http://localhost:8000', but only one is allowed.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=*%20http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values '* http://localhost:8000', but only one is allowed.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/35-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/35-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=*%2C%20http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values '*, http://localhost:8000', but only one is allowed.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=*%2C%20http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values '*, http://localhost:8000', but only one is allowed.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/36-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/36-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=%00http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=%00http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/37-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/37-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=null%20http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'null http://localhost:8000', but only one is allowed.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=null%20http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'null http://localhost:8000', but only one is allowed.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/38-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/38-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Fexample.net' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://example.net' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Fexample.net' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://example.net' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/39-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/39-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Fexample.net%20http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://example.net http://localhost:8000', but only one is allowed.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Fexample.net%20http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://example.net http://localhost:8000', but only one is allowed.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/40-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/40-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Fexample.net%2C%20http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://example.net, http://localhost:8000', but only one is allowed.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Fexample.net%2C%20http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://example.net, http://localhost:8000', but only one is allowed.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/41-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/41-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origins=http%3A%2F%2Fexample.net,http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://example.net, http://localhost:8000', but only one is allowed.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origins=http%3A%2F%2Fexample.net,http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://example.net, http://localhost:8000', but only one is allowed.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/42-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/42-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origins=http%3A%2F%2Flocalhost%3A8000,http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://localhost:8000, http://localhost:8000', but only one is allowed.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origins=http%3A%2F%2Flocalhost%3A8000,http%3A%2F%2Flocalhost%3A8000' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://localhost:8000, http://localhost:8000', but only one is allowed.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/43-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/43-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=null' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'null' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=null' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'null' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/44-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/44-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value ''.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains the invalid value ''.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/45-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/45-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%2Fxmlhttprequest%2Fresources%2Forigin-exact-matching-iframe.html%3F45' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://localhost:8000/xmlhttprequest/resources/origin-exact-matching-iframe.html?45' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%2Fxmlhttprequest%2Fresources%2Forigin-exact-matching-iframe.html%3F45' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://localhost:8000/xmlhttprequest/resources/origin-exact-matching-iframe.html?45' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/46-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/46-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%2Fxmlhttprequest%2Fresources%2F' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://localhost:8000/xmlhttprequest/resources/' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%2Fxmlhttprequest%2Fresources%2F' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://localhost:8000/xmlhttprequest/resources/' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/47-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/origin-exact-matching/47-expected.txt
vendored
@ -1,5 +1,5 @@
|
||||
CONSOLE WARNING: line 24: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%2Fxmlhttprequest%2Fresources%2Forigin-exact-matching-iframe.html%3F47' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://localhost:8000/xmlhttprequest/resources/origin-exact-matching-iframe.html?47' that is not equal to the supplied origin.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://127.0.0.1:8000/xmlhttprequest/resources/access-control-allow-lists.php?origin=http%3A%2F%2Flocalhost%3A8000%2Fxmlhttprequest%2Fresources%2Forigin-exact-matching-iframe.html%3F47' from origin 'http://localhost:8000' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'http://localhost:8000/xmlhttprequest/resources/origin-exact-matching-iframe.html?47' that is not equal to the supplied origin.
|
||||
|
||||
|
||||
--------
|
||||
|
20
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/redirect-cross-origin-tripmine-expected.txt
vendored
20
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/redirect-cross-origin-tripmine-expected.txt
vendored
@ -9,16 +9,16 @@ CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/trip
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=301&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=301&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=301&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=307&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=307&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=303&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=303&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=302&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=302&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=307&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=301&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=301&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: line 1: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=301&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=307&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=307&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=303&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=303&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=302&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=302&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=307&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=301&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=301&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
CONSOLE ERROR: Access to XMLHttpRequest at 'http://localhost:8000/resources/tripmine.php' (redirected from 'http://127.0.0.1:8000/resources/redirect.php?code=301&url=http://localhost:8000/resources/tripmine.php') from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
|
||||
Test that a cross-origin redirect does not result in a non-simple request being sent to the target.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/xhr-to-blob-in-isolated-world-expected.txt
vendored
2
third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/xhr-to-blob-in-isolated-world-expected.txt
vendored
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE WARNING: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
|
||||
CONSOLE ERROR: line 1: Uncaught NetworkError: Failed to execute 'send' on 'XMLHttpRequest': Failed to load 'blob:https://cloud-cuckoo-land.google:2112/456789'.
|
||||
This tests an isolated script's ability to XHR a blob that is in its security origin, which is not the same as the document's security origin.
|
||||
We pass if there are no 'Not allowed to load' console errors. (This will still show one console error as the blob is not available)
|
||||
|
@ -1,4 +1,4 @@
|
||||
CONSOLE WARNING: line 1: :unresolved pseudo selector is deprecated and will be removed in M73, around March 2019. Please use :not(:defined) instead. See https://www.chromestatus.com/features/4642138092470272 for more details.
|
||||
CONSOLE WARNING: :unresolved pseudo selector is deprecated and will be removed in M73, around March 2019. Please use :not(:defined) instead. See https://www.chromestatus.com/features/4642138092470272 for more details.
|
||||
Tests basic web-exposure of Custom Elements
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
Reference in New Issue
Block a user