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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/html/webappapis/scripting/processing-model-2/support/undefined-variable-in-setInterval.js

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 interval = setInterval('undefined_variable;', 10); 1 interval = setInterval('undefined_variable;', 10);
2 setTimeout(function(){ 2 step_timeout(function(){
3 clearInterval(interval); 3 clearInterval(interval);
4 t.step(function(){ 4 t.step(function(){
5 assert_true(ran, 'ran'); 5 assert_true(ran, 'ran');
6 t.done(); 6 t.done();
7 }); 7 });
8 t_col.step(col_check); 8 t_col.step(col_check);
9 }, 20); 9 }, 20);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698