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

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

Issue 2711183003: Import wpt@a7e9c2abcf65b78fcf1c246fec6681c74e1bc352 (Closed)
Patch Set: Update test expectations and baselines. Created 3 years, 9 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 - runtime error in setTimeout</title> 4 <title>window.onerror - runtime error in 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 15 matching lines...) Expand all
26 assert_true(ran, 'ran'); 26 assert_true(ran, 'ran');
27 t.done(); 27 t.done();
28 }); 28 });
29 t_col.step(function(){ 29 t_col.step(function(){
30 assert_equals(typeof col_value, 'number', 'fourth arg'); 30 assert_equals(typeof col_value, 'number', 'fourth arg');
31 t_col.done(); 31 t_col.done();
32 }); 32 });
33 }, 20); 33 }, 20);
34 </script> 34 </script>
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698