| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/uievents/legacy-domevents-tests/submissions/Microsoft/converted/EventListener.dispatch.new.event.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/uievents/legacy-domevents-tests/submissions/Microsoft/converted/EventListener.dispatch.new.event.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/uievents/legacy-domevents-tests/submissions/Microsoft/converted/EventListener.dispatch.new.event.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ee3825fccc596df66fdcabf506f0c8dd14ef651d
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/web-platform-tests/uievents/legacy-domevents-tests/submissions/Microsoft/converted/EventListener.dispatch.new.event.html
|
| @@ -0,0 +1,77 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<title> Dispatch additional events inside an event listener </title>
|
| +<script src="../../../../../../../resources/testharness.js"></script>
|
| +<script src="../../../../../../../resources/testharnessreport.js"></script>
|
| +</head>
|
| +<body>
|
| +<div id=log></div>
|
| +
|
| +<table id="table" border="1" style="display: none">
|
| + <tbody id="table-body">
|
| + <tr id="table-row">
|
| + <td id="table-cell">Shady Grove</td>
|
| + <td>Aeolian</td>
|
| + </tr>
|
| + <tr id="parent">
|
| + <td id="target">Over the river, Charlie</td>
|
| + <td>Dorian</td>
|
| + </tr>
|
| + </tbody>
|
| +</table>
|
| +
|
| +<script>
|
| +
|
| + var EVENT = "foo";
|
| + var TARGET = document.getElementById("target");
|
| + var PARENT = document.getElementById("parent");
|
| + var TBODY = document.getElementById("table-body");
|
| + var TABLE = document.getElementById("table");
|
| + var BODY = document.body;
|
| + var HTML = document.documentElement;
|
| + var CurrentTargets = [window, document, HTML, BODY, TABLE, TBODY, PARENT, TARGET];
|
| + var ExpectResult = [window, document, HTML, BODY, TABLE, TARGET, PARENT, TBODY,
|
| + TABLE, BODY, HTML, document, window, TBODY, PARENT, TARGET];
|
| + var ActualResult = [];
|
| + var ExpectTypes = "foo,foo,foo,foo,foo,bar,bar,bar,bar,bar,bar,bar,bar,foo,foo,foo,";
|
| + var ActualTypes = "";
|
| +
|
| + var description = "Test Description: " +
|
| + "Implementations of the DOM event model must be reentrant. Event listeners may perform actions that " +
|
| + "cause additional events to be dispatched. Such events are handled in a synchronous manner, the event " +
|
| + "propagation that causes the event listener to be triggered must resume only after the event dispatch " +
|
| + "of the new event is completed.";
|
| +
|
| + test(function()
|
| + {
|
| + for (var i=0; i < CurrentTargets.length; i++)
|
| + {
|
| + CurrentTargets[i].addEventListener(EVENT, TestEvent, true);
|
| + CurrentTargets[i].addEventListener("bar", TestEvent, false);
|
| + }
|
| +
|
| + var evt = document.createEvent("Event");
|
| + evt.initEvent(EVENT, false, true);
|
| + TARGET.dispatchEvent(evt);
|
| +
|
| + assert_array_equals(ActualResult, ExpectResult, "ActualResult");
|
| + assert_equals(ActualTypes, ExpectTypes, "ActualTypes");
|
| +
|
| + }, description);
|
| +
|
| + function TestEvent(evt)
|
| + {
|
| + ActualResult.push(evt.currentTarget);
|
| + ActualTypes += evt.type + ",";
|
| +
|
| + if (TABLE == evt.currentTarget && EVENT == evt.type)
|
| + {
|
| + var e = document.createEvent("Event");
|
| + e.initEvent("bar", true, true);
|
| + TARGET.dispatchEvent(e);
|
| + }
|
| + }
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|