From 572863ba44794d215a0ce237c864fea2297b65da Mon Sep 17 00:00:00 2001 From: "jwalden@mit.edu" Date: Wed, 29 Aug 2007 14:37:54 -0700 Subject: [PATCH] Use ok(a === b) since we're getting null in one of the test failures, actually, followup to bug 199692 commit. --- content/html/document/test/test_bug199692.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/html/document/test/test_bug199692.html b/content/html/document/test/test_bug199692.html index 2eae5d48a19..64be20c87a8 100644 --- a/content/html/document/test/test_bug199692.html +++ b/content/html/document/test/test_bug199692.html @@ -95,7 +95,7 @@ width: 200px !important; // content var c = $('content'); x = c.offsetLeft + c.clientWidth/2, y = c.offsetTop; - todo(doc.pt(x,y).id, c.id, "Point to right of #txt should be #content"); + ok(doc.pt(x,y) === c, "Point to right of #txt should be #content"); // hidden c = $('hidden');