From 1a2e8df31126cc968f20415d59a9212d731ddea1 Mon Sep 17 00:00:00 2001 From: "bmlk%gmx.de" Date: Fri, 10 Oct 2003 16:30:38 +0000 Subject: [PATCH] document.write(some object) writes the object type and the object address in debug builds. This creates false positives in layout regression tests. git-svn-id: svn://10.0.0.236/trunk@147845 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/layout/html/tests/table/bugs/bug29157.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/layout/html/tests/table/bugs/bug29157.html b/mozilla/layout/html/tests/table/bugs/bug29157.html index 42da3f55c99..c1c47d39801 100644 --- a/mozilla/layout/html/tests/table/bugs/bug29157.html +++ b/mozilla/layout/html/tests/table/bugs/bug29157.html @@ -14,7 +14,7 @@ var t=document.getElementById("TABLE1"); -document.write(t); +document.write("[object HTMLTableElement]"); t.createCaption();