Title: [164246] trunk/LayoutTests
Revision
164246
Author
[email protected]
Date
2014-02-17 12:58:15 -0800 (Mon, 17 Feb 2014)

Log Message

Fix layout test added in r164232 to avoid bug 128929
and use rects which don't have minor rendering differences when
drawn into compositing layers.

* compositing/contents-opaque/opaque-with-clip-path-expected.html:
* compositing/contents-opaque/opaque-with-clip-path.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (164245 => 164246)


--- trunk/LayoutTests/ChangeLog	2014-02-17 20:35:05 UTC (rev 164245)
+++ trunk/LayoutTests/ChangeLog	2014-02-17 20:58:15 UTC (rev 164246)
@@ -1,3 +1,12 @@
+2014-02-17  Simon Fraser  <[email protected]>
+
+        Fix layout test added in r164232 to avoid bug 128929
+        and use rects which don't have minor rendering differences when
+        drawn into compositing layers.
+
+        * compositing/contents-opaque/opaque-with-clip-path-expected.html:
+        * compositing/contents-opaque/opaque-with-clip-path.html:
+
 2014-02-17  Radu Stavila  <[email protected]>
 
         [CSS Regions] Make regions unsplittable

Modified: trunk/LayoutTests/compositing/contents-opaque/opaque-with-clip-path-expected.html (164245 => 164246)


--- trunk/LayoutTests/compositing/contents-opaque/opaque-with-clip-path-expected.html	2014-02-17 20:35:05 UTC (rev 164245)
+++ trunk/LayoutTests/compositing/contents-opaque/opaque-with-clip-path-expected.html	2014-02-17 20:58:15 UTC (rev 164246)
@@ -1,15 +1,11 @@
 <style>
 #parent {
+    width: 500px;
 	height: 200px;
 	margin: 20px;
 	background: blue;
 	border: solid red 20px;
-	-webkit-clip-path: circle(50%, 50%, 50%);
-	outline: 1px solid transparent;
+	-webkit-clip-path: rectangle(50px, 0, 80%, 100%) border-box;
 }
-
-.composited {
-  -webkit-transform: translateZ(0);
-}
 </style>
-<div id="parent" class="composited"></div>
\ No newline at end of file
+<div id="parent"></div>

Modified: trunk/LayoutTests/compositing/contents-opaque/opaque-with-clip-path.html (164245 => 164246)


--- trunk/LayoutTests/compositing/contents-opaque/opaque-with-clip-path.html	2014-02-17 20:35:05 UTC (rev 164245)
+++ trunk/LayoutTests/compositing/contents-opaque/opaque-with-clip-path.html	2014-02-17 20:58:15 UTC (rev 164246)
@@ -1,14 +1,15 @@
 <style>
 #parent {
+    width: 500px;
 	height: 200px;
 	margin: 20px;
 	background: blue;
 	border: solid red 20px;
-	-webkit-clip-path: circle(50%, 50%, 50%);
+	-webkit-clip-path: rectangle(50px, 0, 80%, 100%) border-box;
 }
 
 .composited {
   -webkit-transform: translateZ(0);
 }
 </style>
-<div id="parent" class="composited"></div>
\ No newline at end of file
+<div id="parent" class="composited"></div>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to