Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: LayoutTests/http/tests/security/script-onerror-crossorigin-cors.html

Issue 19596004: Allow sites to enable 'window.onerror' handlers for cross-domain scripts. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <head>
3 </head>
4 <body>
5 <script src="../../js-test-resources/js-test-pre.js"></script>
6 <script>
7 window.jsTestIsAsync = true;
8 description("The test passes if 'window.onerror' gets unsanitized inform ation about an exception thrown in a script loaded with a 'crossorigin' attribut e, and delivered with valid CORS headers.");
9
10 window.onerror = function(msg, url, line, column, error) {
11 window.msg = msg;
12 window.url = url;
13 window.line = line;
14 window.column = column;
15 window.errorObject = error;
16 shouldBeTrue("/SomeError/.test(msg)");
17 shouldBeEqualToString("url", "http://localhost:8000/security/resourc es/cors-script.php?fail=true&cors=true");
18 shouldBe("line", "1");
19 shouldBe("column", "0");
20 shouldNotBe("window.errorObject", "null");
21 finishJSTest();
22 }
23 </script>
24 <script crossorigin="anonymous" src="http://localhost:8000/security/resource s/cors-script.php?fail=true&cors=true"></script>
25 <script src="../../js-test-resources/js-test-post.js"></script>
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698