|
1 <!DOCTYPE HTML> |
|
2 <html> |
|
3 <!-- |
|
4 https://bugzilla.mozilla.org/show_bug.cgi?id=340571 |
|
5 --> |
|
6 <head> |
|
7 <title>Test for Bug 340571</title> |
|
8 <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
|
9 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> |
|
10 </head> |
|
11 <body> |
|
12 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=340571">Mozilla Bug 340571</a> |
|
13 <p id="display"></p> |
|
14 <div><select id="sel"></select></div> |
|
15 <script type="application/javascript"> |
|
16 ok(!document.getBoxObjectFor, "Detecting getBoxObjectFor"); |
|
17 try { |
|
18 document.getBoxObjectFor(document.body); |
|
19 ok(false, "getBoxObjectFor succeeded"); |
|
20 } catch (e) { |
|
21 ok(true, "getBoxObjectFor succeeded"); |
|
22 } |
|
23 |
|
24 var sel = document.getElementById("sel"); |
|
25 ok(!sel.boxObject, "Getting boxObject"); |
|
26 </script> |
|
27 </body> |
|
28 </html> |