Use ok(a === b) since we're getting null in one of the test failures, actually, followup to bug 199692 commit.

This commit is contained in:
jwalden@mit.edu 2007-08-29 14:37:54 -07:00
parent 6d0942bae4
commit ef93f59265

View File

@ -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');