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