| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/compile-error-in-body-onerror.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/compile-error-in-body-onerror.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/compile-error-in-body-onerror.html
|
| deleted file mode 100644
|
| index b51bd055b6656c9b22ad174d27bb0d778558e103..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/compile-error-in-body-onerror.html
|
| +++ /dev/null
|
| @@ -1,28 +0,0 @@
|
| -<!doctype html>
|
| -<html>
|
| - <head>
|
| - <title>window.onerror - compile error in <body onerror></title>
|
| - <script src="../../../../../../resources/testharness.js"></script>
|
| - <script src="../../../../../../resources/testharnessreport.js"></script>
|
| - <script>
|
| - setup({allow_uncaught_exception:true});
|
| - var t = async_test();
|
| - var ran = false;
|
| - window.onerror = t.step_func(function(){
|
| - ran = true;
|
| - });
|
| - </script>
|
| - </head>
|
| - <body onerror="{"><!-- sets the event handler to null before compiling -->
|
| - <div id=log></div>
|
| - <script>
|
| - for(;) {}
|
| - </script>
|
| - <script>
|
| - t.step(function(){
|
| - assert_false(ran, 'ran');
|
| - t.done();
|
| - });
|
| - </script>
|
| - </body>
|
| -</html>
|
|
|