mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 10:27:32 +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
64
js/xpconnect/tests/mochitest/test_nac.xhtml
Normal file
64
js/xpconnect/tests/mochitest/test_nac.xhtml
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=914618
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 914618</title>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
<bindings xmlns="http://www.mozilla.org/xbl"
|
||||
xmlns:html="http://www.w3.org/1999/xhtml">
|
||||
<binding id="testBinding" chromeOnlyContent="true">
|
||||
<!-- The root of the anonymous subtree is special, and is not allowed to
|
||||
be adopted, among other things. Work with a child of the root. -->
|
||||
<content><html:div><html:span id="nac">hidden text</html:span></html:div></content>
|
||||
<implementation>
|
||||
<constructor>
|
||||
var win = XPCNativeWrapper.unwrap(window);
|
||||
var nac = document.getAnonymousNodes(this)[0].firstChild;
|
||||
win.is(nac.textContent, "hidden text", "XBL can see NAC");
|
||||
win.playWithNAC(nac);
|
||||
</constructor>
|
||||
</implementation>
|
||||
</binding>
|
||||
</bindings>
|
||||
<script type="application/javascript">
|
||||
<![CDATA[
|
||||
|
||||
/** Test for Bug 914618 **/
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
|
||||
function checkThrows(fn) {
|
||||
try {
|
||||
fn();
|
||||
ok(false, "Should have thrown");
|
||||
} catch (e) {
|
||||
ok(/denied|insecure|/.test(e), "Should have thrown security error");
|
||||
}
|
||||
}
|
||||
|
||||
function playWithNAC(nac) {
|
||||
checkThrows(function() { nac.toString(); });
|
||||
checkThrows(function() { nac.textContent; });
|
||||
var iwin = document.getElementById('ifr').contentWindow;
|
||||
iwin.nac = window.nac = nac;
|
||||
checkThrows(new iwin.Function('nac.toString();'));
|
||||
checkThrows(new iwin.Function('nac.textContent;'));
|
||||
|
||||
SimpleTest.finish();
|
||||
}
|
||||
|
||||
]]>
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=914618">Mozilla Bug 914618</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none">
|
||||
</div>
|
||||
<div id="bindingSink" style="-moz-binding: url(#testBinding);"></div>
|
||||
<iframe id="ifr"></iframe>
|
||||
<pre id="test">
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue