mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
f26c3eae26
--HG-- extra : rebase_source : a2856a27dc24f505297a52881b799282b09a3d47
37 lines
948 B
HTML
37 lines
948 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=970964
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 970964</title>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
<script type="text/javascript;version=1.7">
|
|
function setRemoteFrame() {
|
|
var iframe = document.getElementById("testFrame");
|
|
iframe.src = "bug970964_inner.html";
|
|
|
|
function messageListener(event) {
|
|
eval(event.data);
|
|
}
|
|
|
|
window.addEventListener("message", messageListener, false);
|
|
}
|
|
|
|
function runTest() {
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
SpecialPowers.pushPrefEnv({
|
|
"set": [
|
|
["dom.w3c_pointer_events.enabled", true]
|
|
]
|
|
}, setRemoteFrame);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="runTest();">
|
|
<iframe id="testFrame" height="500" width="500"></iframe>
|
|
</body>
|
|
|