| Index: LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/support/undefined-variable-in-setInterval.js
|
| diff --git a/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/support/undefined-variable-in-setInterval.js b/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/support/undefined-variable-in-setInterval.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2950fdb51d1db6277faa646f8c1cf6e1c39101a2
|
| --- /dev/null
|
| +++ b/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/support/undefined-variable-in-setInterval.js
|
| @@ -0,0 +1,9 @@
|
| +interval = setInterval('undefined_variable;', 10);
|
| +setTimeout(function(){
|
| + clearInterval(interval);
|
| + t.step(function(){
|
| + assert_true(ran, 'ran');
|
| + t.done();
|
| + });
|
| + t_col.step(col_check);
|
| +}, 20);
|
|
|