mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 01:47:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
62
dom/xbl/test/test_bug1086996.xhtml
Normal file
62
dom/xbl/test/test_bug1086996.xhtml
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=1086996
|
||||
-->
|
||||
<head>
|
||||
<bindings xmlns="http://www.mozilla.org/xbl"
|
||||
xmlns:html="http://www.w3.org/1999/xhtml">
|
||||
<binding id="handlerBinding">
|
||||
<implementation>
|
||||
<constructor>
|
||||
<![CDATA[XPCNativeWrapper.unwrap(window).constructedHandlerBinding();]]>
|
||||
</constructor>
|
||||
</implementation>
|
||||
<handlers>
|
||||
<handler event="testevent" action="XPCNativeWrapper.unwrap(window).gotEvent();" allowuntrusted="true"/>
|
||||
</handlers>
|
||||
</binding>
|
||||
<binding id="mainBinding">
|
||||
<content>
|
||||
<html:p id="acWithBinding" style="-moz-binding: url(#handlerBinding)"> Anonymous Content</html:p>
|
||||
</content>
|
||||
<implementation>
|
||||
<method name="doEventDispatch" exposeToUntrustedContent="true">
|
||||
<body>
|
||||
<![CDATA[document.getAnonymousNodes(this)[0].dispatchEvent(new CustomEvent('testevent'));]]>
|
||||
</body>
|
||||
</method>
|
||||
</implementation>
|
||||
</binding>
|
||||
</bindings>
|
||||
<title>Test for Bug 1086996</title>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1086996">Mozilla Bug 1086996</a>
|
||||
<div id="content" style="display: none">
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script type="application/javascript">
|
||||
<![CDATA[
|
||||
|
||||
/** Test for Bug 1086996 **/
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
function constructedHandlerBinding() {
|
||||
ok(true, "Constructed handler binding!");
|
||||
setTimeout(function() { $('boundContent').doEventDispatch(); }, 0);
|
||||
}
|
||||
|
||||
function gotEvent() {
|
||||
ok(true, "Successfully triggered event handler");
|
||||
SimpleTest.finish();
|
||||
}
|
||||
|
||||
]]>
|
||||
</script>
|
||||
</pre>
|
||||
<!-- This div needs to come after the <script> so we don't run the binding ctor
|
||||
before the <script> has been parsed -->
|
||||
<div id="boundContent" style="-moz-binding: url(#mainBinding)"></div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue