Bug 1412775 - Implement Event.composedPath, tests for chrome handling, r=stone

--HG--
extra : rebase_source : 1f13feb180f5d42e8bc4b3092b11a942d9dd37ab
This commit is contained in:
Olli Pettay 2017-12-18 18:08:03 +02:00
Родитель d78d3295c5
Коммит 1d4729afe6
3 изменённых файлов: 81 добавлений и 0 удалений

Просмотреть файл

@ -8,6 +8,7 @@ support-files =
bug602962.xul
file_bug679494.html
window_bug617528.xul
window_bug1412775.xul
test_bug336682.js
[test_bug336682_2.xul]
@ -23,5 +24,6 @@ support-files =
[test_bug1128787-1.html]
[test_bug1128787-2.html]
[test_bug1128787-3.html]
[test_bug1412775.xul]
[test_eventctors.xul]
[test_DataTransferItemList.html]

Просмотреть файл

@ -0,0 +1,71 @@
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet type="text/css" href="/tests/SimpleTest/test.css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1412775
-->
<window title="Mozilla Bug 1412775"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="init()">
<script type="application/javascript"
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
<script type="application/javascript"
src="chrome://mochikit/content/chrome-harness.js"></script>
<!-- test code goes here -->
<script type="application/javascript">
<![CDATA[
/** Test for Bug 1412775 **/
const { classes: Cc, interfaces: Ci, utils: Cu } = Components;
var win;
function init() {
SimpleTest.waitForExplicitFinish();
win = window.open("window_bug1412775.xul", "_new", "chrome");
win.onload = function() {
var b = win.document.getElementById("browser");
var d = b.contentWindow.document;
var e = new d.defaultView.Event("foo");
var didCallChromeSide = false;
var didCallContentSide = false;
b.addEventListener("foo", function(e) {
didCallChromeSide = true;
var path = e.composedPath();
var mm = d.defaultView.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIWebNavigation)
.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIContentFrameMessageManager);
is(path.length, 5, "Should have 5 items in composedPath in chrome.");
is(path[0], mm, "TabChildGlobal is the chrome handler.");
is(path[1], b, "browser element should be in the path.");
is(path[2], b.parentNode, "window element should be in the path.");
is(path[3], win.document, "Document object should be in the path.");
is(path[4], win, "Window object should be in the path.");
}, true, true);
d.addEventListener("foo", function(e) {
didCallContentSide = true;;
var path = e.composedPath();
is(path.length, 4, "Should have 4 items in composedPath in content.");
is(path[0], d.body, "body element should be in the path.");
is(path[1], d.documentElement, "html element should be in the path.");
is(path[2], d, "Document object should be in the path.");
is(path[3], d.defaultView, "Window object should be in the path.");
}, true, true);
d.body.dispatchEvent(e);
ok(didCallChromeSide, "didCallChromeSide");
ok(didCallContentSide, "didCallContentSide");
win.close();
SimpleTest.finish();
}
}
]]>
</script>
<!-- test results are displayed in the html:body -->
<body xmlns="http://www.w3.org/1999/xhtml">
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1412775"
target="_blank">Mozilla Bug 1412775</a>
</body>
</window>

Просмотреть файл

@ -0,0 +1,8 @@
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
width="640" height="480">
<browser id="browser" type="content" primary="true" flex="1" src="about:blank"/>
</window>