4 https://bugzilla.mozilla.org/show_bug.cgi?id=862092
8 <title>Test for Bug
862092</title>
9 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
10 <link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css"/>
11 <script type=
"application/javascript">
13 /** Test for Bug
862092 **/
15 SimpleTest.waitForExplicitFinish();
17 var frameDoc = document.getElementById(
"f").contentDocument;
18 var a = document.createElement(
"select");
20 a = frameDoc.adoptNode(a);
21 is(a.expando,
"test",
"adoptNode needs to preserve expandos");
27 <body onload=
"runTest();">
28 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=862092">Mozilla Bug
862092</a>
30 <div id=
"content" style=
"display: none">
31 <iframe id=
"f"></iframe>