From e2deffc034deb654b8f0b3aba58fe82e8e3130da Mon Sep 17 00:00:00 2001 From: "bzbarsky%mit.edu" Date: Sat, 10 Feb 2007 02:30:16 +0000 Subject: [PATCH] Make the is() do the right thing. git-svn-id: svn://10.0.0.236/trunk@219922 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/content/html/document/test/test_bug172261.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/content/html/document/test/test_bug172261.html b/mozilla/content/html/document/test/test_bug172261.html index 2744445a2b2..66c12cc6bec 100644 --- a/mozilla/content/html/document/test/test_bug172261.html +++ b/mozilla/content/html/document/test/test_bug172261.html @@ -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();