| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/window-onerror-with-cross-frame-event-listeners-1.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/window-onerror-with-cross-frame-event-listeners-1.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/window-onerror-with-cross-frame-event-listeners-1.html
|
| deleted file mode 100644
|
| index f91f3fd56b947e1ec95e008f18e1052645c2e463..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/window-onerror-with-cross-frame-event-listeners-1.html
|
| +++ /dev/null
|
| @@ -1,33 +0,0 @@
|
| -<!doctype html>
|
| -<meta charset=utf-8>
|
| -<title>
|
| - When a listener from window A is added to an event target in window B via the
|
| - addEventListener function from window B, errors in that listener should be
|
| - reported to window A.
|
| -</title>
|
| -<script src=../../../../../../resources/testharness.js></script>
|
| -<script src=../../../../../../resources/testharnessreport.js></script>
|
| -<iframe></iframe>
|
| -<iframe></iframe>
|
| -<script>
|
| -test(function() {
|
| - var f = new frames[0].Function("thereIsNoSuchCallable()");
|
| - frames[1].document.addEventListener("myevent", f);
|
| - var frame0ErrorFired = false;
|
| - var frame1ErrorFired = false;
|
| - var ourErrorFired = false;
|
| - frames[0].addEventListener("error", function() {
|
| - frame0ErrorFired = true;
|
| - });
|
| - frames[1].addEventListener("error", function() {
|
| - frame1ErrorFired = true;
|
| - });
|
| - addEventListener("error", function() {
|
| - ourErrorFired = true;
|
| - });
|
| - frames[1].document.dispatchEvent(new Event("myevent"));
|
| - assert_true(frame0ErrorFired);
|
| - assert_false(frame1ErrorFired);
|
| - assert_false(ourErrorFired);
|
| -}, "The error event from an event listener should fire on that listener's global");
|
| -</script>
|
|
|