blob: bc221090b447219c5ed03bc8f8d2719f997f37da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<!DOCTYPE html>
<html>
<head>
<title>ShadowRoot tests</title>
<link rel="stylesheet" type="text/css"
href="chrome://mochikit/content/tests/SimpleTest/test.css" />
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
</head>
<body>
<a target="_blank"
title="Ensure accessible objects are created for shadow root"
href="https://bugzilla.mozilla.org/show_bug.cgi?id=1026125">
Mozilla Bug 1026125
</a><br/>
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test">
</pre>
<script>
SimpleTest.waitForExplicitFinish();
window.onload = () => {
var iframe = document.createElement("iframe");
iframe.src = "test_shadowroot_subframe.html";
document.body.appendChild(iframe);
};
</script>
</body>
</html>
|