reactos/rostests/winetests/mshtml/jstest.html

21 lines
352 B
HTML
Raw Normal View History

<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>