mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 16:28:38 +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
36
layout/base/tests/test_bug968148.html
Normal file
36
layout/base/tests/test_bug968148.html
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=968148
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 968148</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 = "bug968148_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>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue