msdaps: Add a stub row proxy object.
[wine/hramrach.git] / dlls / mshtml / tests / jstest.html
blob72ef427485a41dc938fececcf50bfe2b4ed8129a
1 <html>
2 <head>
3 <script>
4 function ok(b,m) {
5 return external.ok(b, m);
8 function runTest() {
9 obj = new Object();
10 ok(obj === window.obj, "obj !== window.obj");
12 ok(typeof(divid) === "object", "typeof(divid) = " + typeof(divid));
14 external.reportSuccess();
16 </script>
17 <body onload="runTest();">
18 <div id="divid"></div>
19 </body>
20 </html>