mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
744 B
HTML
25 lines
744 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function test_func() {
|
|
var bar = new Option();
|
|
top.is(bar.ownerDocument, document,
|
|
"Unexpected document for our new option");
|
|
bar = new Image();
|
|
top.is(bar.ownerDocument, document,
|
|
"Unexpected document for our new image");
|
|
bar = new top.Option();
|
|
top.is(bar.ownerDocument, top.document,
|
|
"Unexpected document for top new option");
|
|
bar = new top.Image();
|
|
top.is(bar.ownerDocument, top.document,
|
|
"Unexpected document for top new image");
|
|
top.isnot(top.document, document, "Documents should be different");
|
|
}
|
|
</script>
|
|
</head>
|
|
<html>
|
|
|
|
|