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
25 lines
780 B
HTML
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>
|
|
|
|
|