4 https://bugzilla.mozilla.org/show_bug.cgi?id=1639087
7 <title>Test for magnifier event
</title>
8 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
9 <link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css"/>
10 <meta name=
"viewport" content=
"width=device-width,minimum-scale=1,initial-scale=1">
13 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=1639087">Mozilla Bug
1639087</a>
15 <div id=
"container" style=
"width: 600px; height: 500px;"></div>
18 SimpleTest
.waitForExplicitFinish();
19 SpecialPowers
.pushPrefEnv({
21 ["layout.accessiblecaret.enabled", true],
22 ["layout.accessiblecaret.magnifier.enabled", true]
25 let iframe
= document
.createElement("iframe");
26 iframe
.src
= "accessiblecaret_magnifier.html";
27 iframe
.style
.width
= "100%";
28 iframe
.style
.height
= "100%";
29 document
.getElementById('container').appendChild(iframe
);