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