Title: [90067] trunk/LayoutTests
Revision
90067
Author
[email protected]
Date
2011-06-29 16:54:37 -0700 (Wed, 29 Jun 2011)

Log Message

2011-06-29  Alan Stearns  <[email protected]>

        Reviewed by Tony Chang.

        Modify Skipped files so that future css regions layout tests are
        skipped by default.

        [CSS Regions] Add support for skipped tests
        https://bugs.webkit.org/show_bug.cgi?id=63632

        * fast/regions/flow-content-basic.html: Added.
        * platform/chromium/test_expectations.txt:
        * platform/gtk/Skipped:
        * platform/mac/Skipped:
        * platform/qt/Skipped:
        * platform/win/Skipped:

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (90066 => 90067)


--- trunk/LayoutTests/ChangeLog	2011-06-29 23:52:08 UTC (rev 90066)
+++ trunk/LayoutTests/ChangeLog	2011-06-29 23:54:37 UTC (rev 90067)
@@ -1,3 +1,20 @@
+2011-06-29  Alan Stearns  <[email protected]>
+
+        Reviewed by Tony Chang.
+
+        Modify Skipped files so that future css regions layout tests are
+        skipped by default.
+
+        [CSS Regions] Add support for skipped tests
+        https://bugs.webkit.org/show_bug.cgi?id=63632
+
+        * fast/regions/flow-content-basic.html: Added.
+        * platform/chromium/test_expectations.txt:
+        * platform/gtk/Skipped:
+        * platform/mac/Skipped:
+        * platform/qt/Skipped:
+        * platform/win/Skipped:
+
 2011-06-29  Simon Fraser  <[email protected]>
 
         Reviewed by Beth Dakin.

Added: trunk/LayoutTests/fast/regions/flow-content-basic.html (0 => 90067)


--- trunk/LayoutTests/fast/regions/flow-content-basic.html	                        (rev 0)
+++ trunk/LayoutTests/fast/regions/flow-content-basic.html	2011-06-29 23:54:37 UTC (rev 90067)
@@ -0,0 +1,48 @@
+<!DOCTYPE HTML>
+
+<html>
+<head>
+
+    <!-- This test checks that content can be redirected to a region. It also
+     tries out a validation strategy that recreates the intended display
+     using non-region markup. If top does not match the bottom then the 
+     result should be rejected. -->
+
+    <style type="text/css">
+        #source{
+            -webkit-flow: "main-thread";
+        }
+        
+        .region{
+            content:from(main-thread);
+        }
+        
+        .pass{
+            color: green;
+        }
+        
+        .error{
+            color: red;
+        }
+    </style>
+</head>
+<body>
+    <div id="source" class="pass">
+        <p>flow content</p>
+    </div>
+    <div>
+        The words "flow content" in green should display after this div, 
+        and there should be two copies of this content that match.
+    </div>
+    <div id="region1" class="region">
+        <div class="error">FAIL if this text is displayed.</div>
+    </div>
+    <div>
+        The words "flow content" in green should display after this div, 
+        and there should be two copies of this content that match.
+    </div>
+    <div class="pass">
+        <p>flow content</p>
+    </div>
+</body>
+</html>
\ No newline at end of file

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (90066 => 90067)


--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-06-29 23:52:08 UTC (rev 90066)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-06-29 23:54:37 UTC (rev 90067)
@@ -3930,6 +3930,9 @@
 // New flexbox is not yet enabled.
 BUGWK62048 SKIP : css3/flexbox = PASS
 
+// CSS Regions support not yet enabled.
+BUGWK57312 SKIP : fast/regions = PASS
+
 BUGCR85755 : fast/js/exception-properties.html = TEXT
 
 BUGWK62430 WIN LINUX : fast/dom/HTMLProgressElement/indeterminate-progress-001.html = FAIL

Modified: trunk/LayoutTests/platform/gtk/Skipped (90066 => 90067)


--- trunk/LayoutTests/platform/gtk/Skipped	2011-06-29 23:52:08 UTC (rev 90066)
+++ trunk/LayoutTests/platform/gtk/Skipped	2011-06-29 23:54:37 UTC (rev 90067)
@@ -1536,6 +1536,9 @@
 # New flexbox is not yet enabled. http://webkit.org/b/62048
 css3/flexbox
 
+# CSS Regions support not yet enabled. http://webkit.org/b/57312
+fast/regions
+
 # [GTK] DumpRenderTree doesn't block external requests
 # https://bugs.webkit.org/show_bug.cgi?id=62585
 fast/workers/worker-crash-with-invalid-location.html

Modified: trunk/LayoutTests/platform/mac/Skipped (90066 => 90067)


--- trunk/LayoutTests/platform/mac/Skipped	2011-06-29 23:52:08 UTC (rev 90066)
+++ trunk/LayoutTests/platform/mac/Skipped	2011-06-29 23:54:37 UTC (rev 90067)
@@ -370,6 +370,9 @@
 # New flexbox is not yet enabled. http://webkit.org/b/62048
 css3/flexbox
 
+# CSS Regions support not yet enabled. http://webkit.org/b/57312
+fast/regions
+
 # JSC does not support setIsolatedWorldSecurityOrigin (http://webkit.org/b/61540)
 http/tests/security/isolatedWorld/cross-origin-xhr.html
 

Modified: trunk/LayoutTests/platform/qt/Skipped (90066 => 90067)


--- trunk/LayoutTests/platform/qt/Skipped	2011-06-29 23:52:08 UTC (rev 90066)
+++ trunk/LayoutTests/platform/qt/Skipped	2011-06-29 23:54:37 UTC (rev 90067)
@@ -136,6 +136,9 @@
 # New flexbox is not yet enabled. http://webkit.org/b/62048
 css3/flexbox
 
+# CSS Regions support not yet enabled. http://webkit.org/b/57312
+fast/regions
+
 # USE(V8)
 
 # v8 i18n extension.

Modified: trunk/LayoutTests/platform/win/Skipped (90066 => 90067)


--- trunk/LayoutTests/platform/win/Skipped	2011-06-29 23:52:08 UTC (rev 90066)
+++ trunk/LayoutTests/platform/win/Skipped	2011-06-29 23:54:37 UTC (rev 90067)
@@ -1334,5 +1334,8 @@
 # New flexbox is not yet enabled. http://webkit.org/b/62048
 css3/flexbox
 
+# CSS Regions support not yet enabled. http://webkit.org/b/57312
+fast/regions
+
 # Causes a SyntaxError (http://webkit.org/b/62595).
 fast/workers/worker-crash-with-invalid-location.html
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to