Title: [172207] trunk/LayoutTests
- Revision
- 172207
- Author
- [email protected]
- Date
- 2014-08-07 05:08:51 -0700 (Thu, 07 Aug 2014)
Log Message
Move multicol tests into fast/regions/multicol.
https://bugs.webkit.org/show_bug.cgi?id=135693
Patch by Iulia Tamas <[email protected]> on 2014-08-07
Reviewed by Andrei Bucur.
File Move Patch. Created the fast/regions/multicol folder. Moved the region tests testing multicol
in the fast/regions/multicol folder.
* fast/regions/multicol/multicol-as-region-prevented-expected.html: Renamed from LayoutTests/fast/regions/multicol-as-region-prevented-expected.html.
* fast/regions/multicol/multicol-as-region-prevented.html: Renamed from LayoutTests/fast/regions/multicol-as-region-prevented.html.
Modified Paths
Added Paths
Removed Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (172206 => 172207)
--- trunk/LayoutTests/ChangeLog 2014-08-07 10:20:03 UTC (rev 172206)
+++ trunk/LayoutTests/ChangeLog 2014-08-07 12:08:51 UTC (rev 172207)
@@ -1,3 +1,16 @@
+2014-08-07 Iulia Tamas <[email protected]>
+
+ Move multicol tests into fast/regions/multicol.
+ https://bugs.webkit.org/show_bug.cgi?id=135693
+
+ Reviewed by Andrei Bucur.
+
+ File Move Patch. Created the fast/regions/multicol folder. Moved the region tests testing multicol
+ in the fast/regions/multicol folder.
+
+ * fast/regions/multicol/multicol-as-region-prevented-expected.html: Renamed from LayoutTests/fast/regions/multicol-as-region-prevented-expected.html.
+ * fast/regions/multicol/multicol-as-region-prevented.html: Renamed from LayoutTests/fast/regions/multicol-as-region-prevented.html.
+
2014-08-06 Mark Lam <[email protected]>
Gardening: adding failed tests to TestExpectations.
Copied: trunk/LayoutTests/fast/regions/multicol/multicol-as-region-prevented-expected.html (from rev 172206, trunk/LayoutTests/fast/regions/multicol-as-region-prevented-expected.html) (0 => 172207)
--- trunk/LayoutTests/fast/regions/multicol/multicol-as-region-prevented-expected.html (rev 0)
+++ trunk/LayoutTests/fast/regions/multicol/multicol-as-region-prevented-expected.html 2014-08-07 12:08:51 UTC (rev 172207)
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ .bgGreen {
+ background-color: green;
+ }
+
+ .box {
+ width: 50px;
+ height: 50px;
+ }
+ </style>
+ </head>
+ <body>
+ <p>Test that a multicolumn element having flow-from specified is not transformed into a region.</p>
+ <p>On success, you should see five green rectangles below and no red.</p>
+ <div class="box bgGreen"></div>
+ <br/>
+ <div class="box bgGreen"></div>
+ <br/>
+ <div class="box bgGreen"></div>
+ <br/>
+ <div class="box bgGreen"></div>
+ <br/>
+ <div class="box bgGreen"></div>
+ </body>
+</html>
Copied: trunk/LayoutTests/fast/regions/multicol/multicol-as-region-prevented.html (from rev 172206, trunk/LayoutTests/fast/regions/multicol-as-region-prevented.html) (0 => 172207)
--- trunk/LayoutTests/fast/regions/multicol/multicol-as-region-prevented.html (rev 0)
+++ trunk/LayoutTests/fast/regions/multicol/multicol-as-region-prevented.html 2014-08-07 12:08:51 UTC (rev 172207)
@@ -0,0 +1,70 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ .bgGreen {
+ background-color: green;
+ }
+
+ .bgRed {
+ background-color: red;
+ }
+
+ .box {
+ width: 50px;
+ height: 50px;
+ }
+
+ .multicol {
+ -webkit-columns: 1;
+ }
+
+ .region {
+ -webkit-flow-from: flow;
+ }
+ </style>
+ </head>
+ <body>
+ <p>Test that a multicolumn element having flow-from specified is not transformed into a region.</p>
+ <p>On success, you should see five green rectangles below and no red.</p>
+ <div class="box multicol region bgRed">
+ <div class="box bgGreen"></div>
+ </div>
+
+ <!-- dynamically add flow-from style to a multicol element -->
+ <br/>
+ <div id="test2" class="box multicol bgRed">
+ <div class="box bgGreen"></div>
+ </div>
+ <script>
+ document.getElementById("test2").className = "box multicol region bgRed";
+ </script>
+
+ <!-- dynamically remove flow-from style from a multicol element -->
+ <br/>
+ <div id="test3" class="box multicol region bgRed">
+ <div class="box bgGreen"></div>
+ </div>
+ <script>
+ document.getElementById("test3").className = "box multicol bgRed";
+ </script>
+
+ <!-- dynamicall add multicol style to a region element -->
+ <br/>
+ <div id="test4" class="box region bgRed">
+ <div class="box bgGreen"></div>
+ </div>
+ <script>
+ document.getElementById("test4").className = "box multicol region bgRed";
+ </script>
+
+ <!-- dynamically remove multicol style from a region element -->
+ <br/>
+ <div id="test5" class="box multicol region bgGreen">
+ <div class="box bgRed"></div>
+ </div>
+ <script>
+ document.getElementById("test5").className = "box region bgGreen";
+ </script>
+ </body>
+</html>
Deleted: trunk/LayoutTests/fast/regions/multicol-as-region-prevented-expected.html (172206 => 172207)
--- trunk/LayoutTests/fast/regions/multicol-as-region-prevented-expected.html 2014-08-07 10:20:03 UTC (rev 172206)
+++ trunk/LayoutTests/fast/regions/multicol-as-region-prevented-expected.html 2014-08-07 12:08:51 UTC (rev 172207)
@@ -1,28 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <style>
- .bgGreen {
- background-color: green;
- }
-
- .box {
- width: 50px;
- height: 50px;
- }
- </style>
- </head>
- <body>
- <p>Test that a multicolumn element having flow-from specified is not transformed into a region.</p>
- <p>On success, you should see five green rectangles below and no red.</p>
- <div class="box bgGreen"></div>
- <br/>
- <div class="box bgGreen"></div>
- <br/>
- <div class="box bgGreen"></div>
- <br/>
- <div class="box bgGreen"></div>
- <br/>
- <div class="box bgGreen"></div>
- </body>
-</html>
Deleted: trunk/LayoutTests/fast/regions/multicol-as-region-prevented.html (172206 => 172207)
--- trunk/LayoutTests/fast/regions/multicol-as-region-prevented.html 2014-08-07 10:20:03 UTC (rev 172206)
+++ trunk/LayoutTests/fast/regions/multicol-as-region-prevented.html 2014-08-07 12:08:51 UTC (rev 172207)
@@ -1,70 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <style>
- .bgGreen {
- background-color: green;
- }
-
- .bgRed {
- background-color: red;
- }
-
- .box {
- width: 50px;
- height: 50px;
- }
-
- .multicol {
- -webkit-columns: 1;
- }
-
- .region {
- -webkit-flow-from: flow;
- }
- </style>
- </head>
- <body>
- <p>Test that a multicolumn element having flow-from specified is not transformed into a region.</p>
- <p>On success, you should see five green rectangles below and no red.</p>
- <div class="box multicol region bgRed">
- <div class="box bgGreen"></div>
- </div>
-
- <!-- dynamically add flow-from style to a multicol element -->
- <br/>
- <div id="test2" class="box multicol bgRed">
- <div class="box bgGreen"></div>
- </div>
- <script>
- document.getElementById("test2").className = "box multicol region bgRed";
- </script>
-
- <!-- dynamically remove flow-from style from a multicol element -->
- <br/>
- <div id="test3" class="box multicol region bgRed">
- <div class="box bgGreen"></div>
- </div>
- <script>
- document.getElementById("test3").className = "box multicol bgRed";
- </script>
-
- <!-- dynamicall add multicol style to a region element -->
- <br/>
- <div id="test4" class="box region bgRed">
- <div class="box bgGreen"></div>
- </div>
- <script>
- document.getElementById("test4").className = "box multicol region bgRed";
- </script>
-
- <!-- dynamically remove multicol style from a region element -->
- <br/>
- <div id="test5" class="box multicol region bgGreen">
- <div class="box bgRed"></div>
- </div>
- <script>
- document.getElementById("test5").className = "box region bgGreen";
- </script>
- </body>
-</html>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes