Diff
Modified: trunk/LayoutTests/ChangeLog (101737 => 101738)
--- trunk/LayoutTests/ChangeLog 2011-12-02 04:11:46 UTC (rev 101737)
+++ trunk/LayoutTests/ChangeLog 2011-12-02 04:12:05 UTC (rev 101738)
@@ -1,3 +1,31 @@
+2011-12-01 Jacob Goldstein <[email protected]>
+
+ Convert some fast/regions pixel tests to reftests
+ https://bugs.webkit.org/show_bug.cgi?id=73581
+
+ Reviewed by David Hyatt.
+
+ * fast/regions/content-flowed-into-regions-dynamically-added-expected.html: Added.
+ * fast/regions/content-flowed-into-regions-dynamically-added-expected.txt: Removed.
+ * fast/regions/content-flowed-into-regions-dynamically-added.html:
+ * fast/regions/content-flowed-into-regions-dynamically-inserted-expected.html: Added.
+ * fast/regions/content-flowed-into-regions-dynamically-removed-expected.html: Added.
+ * fast/regions/content-flowed-into-regions-dynamically-removed-expected.txt: Removed.
+ * fast/regions/content-flowed-into-regions-dynamically-removed.html:
+ * fast/regions/content-flowed-into-regions-expected.html: Added.
+ * fast/regions/content-flowed-into-regions-expected.txt: Removed.
+ * fast/regions/content-flowed-into-regions.html:
+ * platform/efl/fast/regions/content-flowed-into-regions-dynamically-added-expected.png: Removed.
+ * platform/efl/fast/regions/content-flowed-into-regions-dynamically-inserted-expected.png: Removed.
+ * platform/efl/fast/regions/content-flowed-into-regions-dynamically-inserted-expected.txt: Removed.
+ * platform/efl/fast/regions/content-flowed-into-regions-dynamically-removed-expected.png: Removed.
+ * platform/efl/fast/regions/content-flowed-into-regions-expected.png: Removed.
+ * platform/mac/fast/regions/content-flowed-into-regions-dynamically-added-expected.png: Removed.
+ * platform/mac/fast/regions/content-flowed-into-regions-dynamically-inserted-expected.png: Removed.
+ * platform/mac/fast/regions/content-flowed-into-regions-dynamically-inserted-expected.txt: Removed.
+ * platform/mac/fast/regions/content-flowed-into-regions-dynamically-removed-expected.png: Removed.
+ * platform/mac/fast/regions/content-flowed-into-regions-expected.png: Removed.
+
2011-12-01 Vincent Scheib <[email protected]>
[Chromium] Marking increased flakiness in test_expectations
Added: trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-added-expected.html (0 => 101738)
--- trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-added-expected.html (rev 0)
+++ trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-added-expected.html 2011-12-02 04:12:05 UTC (rev 101738)
@@ -0,0 +1,11 @@
+<!doctype html>
+<html>
+ <head>
+ <link rel="stylesheet" href=""
+ </head>
+ <body>
+ <div class="greenBox borderBox"></div>
+ <div class="blueBox borderBox"></div>
+ <div class="orangeBox borderBox"></div>
+ </body>
+</html>
Deleted: trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-added-expected.txt (101737 => 101738)
--- trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-added-expected.txt 2011-12-02 04:11:46 UTC (rev 101737)
+++ trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-added-expected.txt 2011-12-02 04:12:05 UTC (rev 101738)
@@ -1 +0,0 @@
-
Modified: trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-added.html (101737 => 101738)
--- trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-added.html 2011-12-02 04:11:46 UTC (rev 101737)
+++ trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-added.html 2011-12-02 04:12:05 UTC (rev 101738)
@@ -2,7 +2,7 @@
<html>
<!--
Test that the content is properly flowed into dynamically added regions.
- On success you should see that the colored boxes are displayed inside the 3 rectangles with black border.
+ On success you should see that the colored boxes are displayed inside the 3 regions with black borders.
The green box should be displayed in left region.
The blue box should be displayed in middle region.
The orange box should be displayed in right region.
@@ -22,9 +22,6 @@
<script>
var region = document.getElementById("region");
region.className = "regionArticle borderBox";
-
- if (window.layoutTestController)
- layoutTestController.dumpAsText(true);
</script>
</body>
</html>
Added: trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-inserted-expected.html (0 => 101738)
--- trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-inserted-expected.html (rev 0)
+++ trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-inserted-expected.html 2011-12-02 04:12:05 UTC (rev 101738)
@@ -0,0 +1,11 @@
+<!doctype html>
+<html>
+ <head>
+ <link rel="stylesheet" href=""
+ </head>
+ <body>
+ <div class="greenBox borderBox"></div>
+ <div class="blueBox borderBox"></div>
+ <div class="orangeBox borderBox"></div>
+ </body>
+</html>
Added: trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-removed-expected.html (0 => 101738)
--- trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-removed-expected.html (rev 0)
+++ trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-removed-expected.html 2011-12-02 04:12:05 UTC (rev 101738)
@@ -0,0 +1,16 @@
+<!doctype html>
+<html>
+ <head>
+ <link rel="stylesheet" href=""
+ </head>
+ <body>
+ <div class="flowArticle">
+ <div class="greenBox"></div>
+ <div class="blueBox"></div>
+ <div class="orangeBox"></div>
+ </div>
+ <div class="regionArticle borderBox"></div>
+ <div class="regionArticle borderBox"></div>
+ <div class="borderBox"></div>
+ </body>
+</html>
Deleted: trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-removed-expected.txt (101737 => 101738)
--- trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-removed-expected.txt 2011-12-02 04:11:46 UTC (rev 101737)
+++ trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-removed-expected.txt 2011-12-02 04:12:05 UTC (rev 101738)
@@ -1 +0,0 @@
-
Modified: trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-removed.html (101737 => 101738)
--- trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-removed.html 2011-12-02 04:11:46 UTC (rev 101737)
+++ trunk/LayoutTests/fast/regions/content-flowed-into-regions-dynamically-removed.html 2011-12-02 04:12:05 UTC (rev 101738)
@@ -22,9 +22,6 @@
<script>
var region = document.getElementById("region");
region.className = "borderBox";
-
- if (window.layoutTestController)
- layoutTestController.dumpAsText(true);
</script>
</body>
</html>
Added: trunk/LayoutTests/fast/regions/content-flowed-into-regions-expected.html (0 => 101738)
--- trunk/LayoutTests/fast/regions/content-flowed-into-regions-expected.html (rev 0)
+++ trunk/LayoutTests/fast/regions/content-flowed-into-regions-expected.html 2011-12-02 04:12:05 UTC (rev 101738)
@@ -0,0 +1,11 @@
+<!doctype html>
+<html>
+ <head>
+ <link rel="stylesheet" href=""
+ </head>
+ <body>
+ <div class="greenBox borderBox"></div>
+ <div class="blueBox borderBox"></div>
+ <div class="orangeBox borderBox"></div>
+ </body>
+</html>
Deleted: trunk/LayoutTests/fast/regions/content-flowed-into-regions-expected.txt (101737 => 101738)
--- trunk/LayoutTests/fast/regions/content-flowed-into-regions-expected.txt 2011-12-02 04:11:46 UTC (rev 101737)
+++ trunk/LayoutTests/fast/regions/content-flowed-into-regions-expected.txt 2011-12-02 04:12:05 UTC (rev 101738)
@@ -1 +0,0 @@
-
Modified: trunk/LayoutTests/fast/regions/content-flowed-into-regions.html (101737 => 101738)
--- trunk/LayoutTests/fast/regions/content-flowed-into-regions.html 2011-12-02 04:11:46 UTC (rev 101737)
+++ trunk/LayoutTests/fast/regions/content-flowed-into-regions.html 2011-12-02 04:12:05 UTC (rev 101738)
@@ -19,9 +19,5 @@
<div class="regionArticle borderBox"></div>
<div class="regionArticle borderBox"></div>
<div class="regionArticle borderBox"></div>
- <script>
- if (window.layoutTestController)
- layoutTestController.dumpAsText(true);
- </script>
</body>
</html>
Deleted: trunk/LayoutTests/platform/efl/fast/regions/content-flowed-into-regions-dynamically-inserted-expected.txt (101737 => 101738)
--- trunk/LayoutTests/platform/efl/fast/regions/content-flowed-into-regions-dynamically-inserted-expected.txt 2011-12-02 04:11:46 UTC (rev 101737)
+++ trunk/LayoutTests/platform/efl/fast/regions/content-flowed-into-regions-dynamically-inserted-expected.txt 2011-12-02 04:12:05 UTC (rev 101738)
@@ -1,20 +0,0 @@
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x60
- RenderBlock {HTML} at (0,0) size 800x60
- RenderBody {BODY} at (8,8) size 784x0
- RenderRegion {DIV} at (0,0) size 52x52 [border: (1px solid #000000)]
- RenderRegion {DIV} at (52,0) size 52x52 [border: (1px solid #000000)]
- RenderRegion {DIV} at (104,0) size 52x52 [border: (1px solid #000000)]
-Flow Threads
- Thread with flow-name 'article'
- layer at (0,0) size 50x150
- RenderFlowThread at (0,0) size 50x150
- RenderBlock {DIV} at (0,0) size 50x150
- RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#008000]
- RenderBlock {DIV} at (0,50) size 50x50 [bgcolor=#0000FF]
- RenderBlock {DIV} at (0,100) size 50x50 [bgcolor=#FFA500]
- Regions for flow 'article'
- RenderRegion {DIV}
- RenderRegion {DIV} #region
- RenderRegion {DIV}
Deleted: trunk/LayoutTests/platform/mac/fast/regions/content-flowed-into-regions-dynamically-inserted-expected.txt (101737 => 101738)
--- trunk/LayoutTests/platform/mac/fast/regions/content-flowed-into-regions-dynamically-inserted-expected.txt 2011-12-02 04:11:46 UTC (rev 101737)
+++ trunk/LayoutTests/platform/mac/fast/regions/content-flowed-into-regions-dynamically-inserted-expected.txt 2011-12-02 04:12:05 UTC (rev 101738)
@@ -1,20 +0,0 @@
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x60
- RenderBlock {HTML} at (0,0) size 800x60
- RenderBody {BODY} at (8,8) size 784x0
- RenderRegion {DIV} at (0,0) size 52x52 [border: (1px solid #000000)]
- RenderRegion {DIV} at (52,0) size 52x52 [border: (1px solid #000000)]
- RenderRegion {DIV} at (104,0) size 52x52 [border: (1px solid #000000)]
-Flow Threads
- Thread with flow-name 'article'
- layer at (0,0) size 50x150
- RenderFlowThread at (0,0) size 50x150
- RenderBlock {DIV} at (0,0) size 50x150
- RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#008000]
- RenderBlock {DIV} at (0,50) size 50x50 [bgcolor=#0000FF]
- RenderBlock {DIV} at (0,100) size 50x50 [bgcolor=#FFA500]
- Regions for flow 'article'
- RenderRegion {DIV}
- RenderRegion {DIV} #region
- RenderRegion {DIV}