Make the is() do the right thing.

git-svn-id: svn://10.0.0.236/trunk@219922 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzbarsky%mit.edu
2007-02-10 02:30:16 +00:00
parent 6d67d8b830
commit e2deffc034

View File

@@ -55,7 +55,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=172261
function doTest() {
is($("test").contentDocument.domain, document.domain,
"Domains should match 2");
is($("test").contentDocument.location.href == location.href,
is($("test").contentDocument.location.href, location.href,
"Locations should match");
is(callable, true, "Subframe should be able to call us");
SimpleTest.finish();