| <html> | |
| <head> | |
| <script> | |
| function ok(b,m) { | |
| return external.ok(b, m); | |
| } | |
| function runTest() { | |
| obj = new Object(); | |
| ok(obj === window.obj, "obj !== window.obj"); | |
| ok(typeof(divid) === "object", "typeof(divid) = " + typeof(divid)); | |
| external.reportSuccess(); | |
| } | |
| </script> | |
| <body onload="runTest();"> | |
| <div id="divid"></div> | |
| </body> | |
| </html> |