wined3d: Handle stateblock capture for default lights created while recording.
[wine] / dlls / mshtml / tests / jstest.html
1 <html>
2 <head>
3 <script>
4 function ok(b,m) {
5     return external.ok(b, m);
6 }
7
8 function runTest() {
9     obj = new Object();
10     ok(obj === window.obj, "obj !== window.obj");
11
12     ok(typeof(divid) === "object", "typeof(divid) = " + typeof(divid));
13
14     external.reportSuccess();
15 }
16 </script>
17 <body onload="runTest();">
18 <div id="divid"></div>
19 </body>
20 </html>