Mozilla/mozilla/content/base/test/bug298064-subframe.html
bzbarsky%mit.edu 1b3e511f1c Bug 445004. Make the base and document URI of document.written documents be the
base and document URI of the document on whose current context our code is
running. r+sr=jst, r=dcamp

Bug 465752. Fix Equals() to work right on javascript: URIs. r=dcamp, sr=jst.

Both a=ss


git-svn-id: svn://10.0.0.236/trunk@255943 18797224-902f-48f8-a5cc-f745e15eee43
2009-01-28 00:56:09 +00:00

25 lines
780 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<script>
function test_func() {
var bar = new Option();
parent.is(bar.ownerDocument, document,
"Unexpected document for our new option");
bar = new Image();
parent.is(bar.ownerDocument, document,
"Unexpected document for our new image");
bar = new parent.Option();
parent.is(bar.ownerDocument, parent.document,
"Unexpected document for parent new option");
bar = new parent.Image();
parent.is(bar.ownerDocument, parent.document,
"Unexpected document for parent new image");
parent.isnot(parent.document, document, "Documents should be different");
}
</script>
</head>
<html>