repo.or.cz
/
wine
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
msdaps: Add a stub row proxy object.
[wine/hramrach.git]
/
dlls
/
mshtml
/
tests
/
jstest.html
blob
72ef427485a41dc938fececcf50bfe2b4ed8129a
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>