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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/html/webappapis/scripting/processing-model-2/compile-error-cross-origin-setTimeout.html

Issue 2711183003: Import wpt@a7e9c2abcf65b78fcf1c246fec6681c74e1bc352 (Closed)
Patch Set: Update test expectations and baselines. Created 3 years, 10 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>window.onerror - compile error in cross-origin setTimeout</title> 4 <title>window.onerror - compile error in cross-origin setTimeout</title>
5 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharness.js"></script>
6 <script src="/resources/testharnessreport.js"></script> 6 <script src="/resources/testharnessreport.js"></script>
7 </head> 7 </head>
8 <body> 8 <body>
9 <div id=log></div> 9 <div id=log></div>
10 <script> 10 <script>
(...skipping 11 matching lines...) Expand all
22 }); 22 });
23 function col_check() { 23 function col_check() {
24 assert_equals(col_value, 0, 'fourth arg'); 24 assert_equals(col_value, 0, 'fourth arg');
25 t_col.done(); 25 t_col.done();
26 } 26 }
27 var script = document.createElement('script'); 27 var script = document.createElement('script');
28 script.src = location.href.replace('://', '://www1.').replace(/\/[^\/]+$/, ' /support/syntax-error-in-setTimeout.js'); 28 script.src = location.href.replace('://', '://www1.').replace(/\/[^\/]+$/, ' /support/syntax-error-in-setTimeout.js');
29 document.body.appendChild(script); 29 document.body.appendChild(script);
30 </script> 30 </script>
31 </body> 31 </body>
32 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698