Diff
Modified: trunk/LayoutTests/ChangeLog (97455 => 97456)
--- trunk/LayoutTests/ChangeLog 2011-10-14 09:42:55 UTC (rev 97455)
+++ trunk/LayoutTests/ChangeLog 2011-10-14 09:55:07 UTC (rev 97456)
@@ -1,3 +1,20 @@
+2011-10-14 Adam Barth <aba...@webkit.org>
+
+ tables/mozilla/bugs/bug9024.html has never worked
+ https://bugs.webkit.org/show_bug.cgi?id=67744
+
+ Reviewed by Eric Seidel.
+
+ Previously, this script had just errored out. This patch removes the
+ scripts, which lets us share the same baseline across all the ports.
+
+ * platform/chromium-win/tables/mozilla/bugs/bug9024-expected.txt: Removed.
+ * platform/gtk/tables/mozilla/bugs/bug9024-expected.txt: Removed.
+ * platform/mac/tables/mozilla/bugs/bug9024-expected.txt: Removed.
+ * platform/qt/tables/mozilla/bugs/bug9024-expected.txt: Removed.
+ * tables/mozilla/bugs/bug9024-expected.txt: Added.
+ * tables/mozilla/bugs/bug9024.html:
+
2011-10-14 Kent Tamura <tk...@chromium.org>
[Chromium] Test expectation update.
Deleted: trunk/LayoutTests/platform/chromium-win/tables/mozilla/bugs/bug9024-expected.txt (97455 => 97456)
--- trunk/LayoutTests/platform/chromium-win/tables/mozilla/bugs/bug9024-expected.txt 2011-10-14 09:42:55 UTC (rev 97455)
+++ trunk/LayoutTests/platform/chromium-win/tables/mozilla/bugs/bug9024-expected.txt 2011-10-14 09:55:07 UTC (rev 97456)
@@ -1,8 +0,0 @@
-CONSOLE MESSAGE: line 18: Uncaught ReferenceError: dump is not defined
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderTable {TABLE} at (0,0) size 0x1 [border: none]
- RenderTableSection {TBODY} at (0,0) size 0x0
Deleted: trunk/LayoutTests/platform/gtk/tables/mozilla/bugs/bug9024-expected.txt (97455 => 97456)
--- trunk/LayoutTests/platform/gtk/tables/mozilla/bugs/bug9024-expected.txt 2011-10-14 09:42:55 UTC (rev 97455)
+++ trunk/LayoutTests/platform/gtk/tables/mozilla/bugs/bug9024-expected.txt 2011-10-14 09:55:07 UTC (rev 97456)
@@ -1,8 +0,0 @@
-CONSOLE MESSAGE: line 18: ReferenceError: Can't find variable: dump
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderTable {TABLE} at (0,0) size 0x1 [border: none]
- RenderTableSection {TBODY} at (0,0) size 0x0
Deleted: trunk/LayoutTests/platform/mac/tables/mozilla/bugs/bug9024-expected.txt (97455 => 97456)
--- trunk/LayoutTests/platform/mac/tables/mozilla/bugs/bug9024-expected.txt 2011-10-14 09:42:55 UTC (rev 97455)
+++ trunk/LayoutTests/platform/mac/tables/mozilla/bugs/bug9024-expected.txt 2011-10-14 09:55:07 UTC (rev 97456)
@@ -1,8 +0,0 @@
-CONSOLE MESSAGE: line 18: ReferenceError: Can't find variable: dump
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderTable {TABLE} at (0,0) size 0x1 [border: none]
- RenderTableSection {TBODY} at (0,0) size 0x0
Deleted: trunk/LayoutTests/platform/qt/tables/mozilla/bugs/bug9024-expected.txt (97455 => 97456)
--- trunk/LayoutTests/platform/qt/tables/mozilla/bugs/bug9024-expected.txt 2011-10-14 09:42:55 UTC (rev 97455)
+++ trunk/LayoutTests/platform/qt/tables/mozilla/bugs/bug9024-expected.txt 2011-10-14 09:55:07 UTC (rev 97456)
@@ -1,8 +0,0 @@
-CONSOLE MESSAGE: line 18: ReferenceError: Can't find variable: dump
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderTable {TABLE} at (0,0) size 0x1 [border: none]
- RenderTableSection {TBODY} at (0,0) size 0x0
Copied: trunk/LayoutTests/tables/mozilla/bugs/bug9024-expected.txt (from rev 97455, trunk/LayoutTests/platform/qt/tables/mozilla/bugs/bug9024-expected.txt) (0 => 97456)
--- trunk/LayoutTests/tables/mozilla/bugs/bug9024-expected.txt (rev 0)
+++ trunk/LayoutTests/tables/mozilla/bugs/bug9024-expected.txt 2011-10-14 09:55:07 UTC (rev 97456)
@@ -0,0 +1,7 @@
+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x600
+ RenderBlock {HTML} at (0,0) size 800x600
+ RenderBody {BODY} at (8,8) size 784x584
+ RenderTable {TABLE} at (0,0) size 0x1 [border: none]
+ RenderTableSection {TBODY} at (0,0) size 0x0
Modified: trunk/LayoutTests/tables/mozilla/bugs/bug9024.html (97455 => 97456)
--- trunk/LayoutTests/tables/mozilla/bugs/bug9024.html 2011-10-14 09:42:55 UTC (rev 97455)
+++ trunk/LayoutTests/tables/mozilla/bugs/bug9024.html 2011-10-14 09:55:07 UTC (rev 97456)
@@ -11,15 +11,6 @@
</table>
<script type="text/_javascript_">
-
-
-var mytable = document.getElementById("mytable");
-
-dump("before\n");
-var newrow = mytable.insertRow(0);
-dump("after\n");
-
-
</script>
</body>