Title: [127173] trunk/LayoutTests
Revision
127173
Author
[email protected]
Date
2012-08-30 12:58:08 -0700 (Thu, 30 Aug 2012)

Log Message

[CSS Shaders] Update css3/filters/custom/effect-custom-transform-parameters.html to remove anti-aliasing issues
https://bugs.webkit.org/show_bug.cgi?id=95407

Reviewed by Dean Jackson.

The initial test had a white border to prevent anti-aliasing effects, but that doesn't seem to
help on some platforms. Removed the border in this patch.

* css3/filters/custom/effect-custom-transform-parameters-expected.html:
* css3/filters/custom/effect-custom-transform-parameters.html:
* platform/mac-lion/TestExpectations: Un-skipping the test.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (127172 => 127173)


--- trunk/LayoutTests/ChangeLog	2012-08-30 19:52:42 UTC (rev 127172)
+++ trunk/LayoutTests/ChangeLog	2012-08-30 19:58:08 UTC (rev 127173)
@@ -1,3 +1,17 @@
+2012-08-30  Alexandru Chiculita  <[email protected]>
+
+        [CSS Shaders] Update css3/filters/custom/effect-custom-transform-parameters.html to remove anti-aliasing issues
+        https://bugs.webkit.org/show_bug.cgi?id=95407
+
+        Reviewed by Dean Jackson.
+
+        The initial test had a white border to prevent anti-aliasing effects, but that doesn't seem to
+        help on some platforms. Removed the border in this patch.
+
+        * css3/filters/custom/effect-custom-transform-parameters-expected.html:
+        * css3/filters/custom/effect-custom-transform-parameters.html:
+        * platform/mac-lion/TestExpectations: Un-skipping the test.
+
 2012-08-30  Philip Rogers  <[email protected]>
 
         Unreviewed rebaseline after r127101.

Modified: trunk/LayoutTests/css3/filters/custom/effect-custom-transform-parameters-expected.html (127172 => 127173)


--- trunk/LayoutTests/css3/filters/custom/effect-custom-transform-parameters-expected.html	2012-08-30 19:52:42 UTC (rev 127172)
+++ trunk/LayoutTests/css3/filters/custom/effect-custom-transform-parameters-expected.html	2012-08-30 19:58:08 UTC (rev 127173)
@@ -17,16 +17,12 @@
             display: inline-block; 
             border: 1px solid blue; 
             overflow: hidden;
-            width: 152px; 
-            height: 152px;
         }
         .filter {
-            -webkit-transform: perspective(100) translate(10px, 25%);
+            -webkit-transform: perspective(100) translate(10px, 20px);
             background-color: green;
             width: 150px; 
             height: 150px;
-            /* Prevent anti-aliasing artifacts using a small transparent border. */
-            border: 1px solid white;
         }
         </style>
     </head>

Modified: trunk/LayoutTests/css3/filters/custom/effect-custom-transform-parameters.html (127172 => 127173)


--- trunk/LayoutTests/css3/filters/custom/effect-custom-transform-parameters.html	2012-08-30 19:52:42 UTC (rev 127172)
+++ trunk/LayoutTests/css3/filters/custom/effect-custom-transform-parameters.html	2012-08-30 19:58:08 UTC (rev 127173)
@@ -22,19 +22,15 @@
             display: inline-block; 
             border: 1px solid blue;
             overflow: hidden;
-            width: 152px; 
-            height: 152px;
         }
         /* Testing parameters of type transform in vertex-transform-parameter.vs. */
         .filter {
             -webkit-filter: custom(url('../resources/vertex-transform-parameter.vs'), 
-                                    transform translate(10px, 25%)
+                                    transform translate(10px, 20px)
                                   );
             background-color: green;
             width: 150px; 
             height: 150px;
-            /* Prevent anti-aliasing artifacts using a small transparent border. */
-            border: 1px solid white;
         }
         </style>
     </head>

Modified: trunk/LayoutTests/platform/mac-lion/TestExpectations (127172 => 127173)


--- trunk/LayoutTests/platform/mac-lion/TestExpectations	2012-08-30 19:52:42 UTC (rev 127172)
+++ trunk/LayoutTests/platform/mac-lion/TestExpectations	2012-08-30 19:58:08 UTC (rev 127173)
@@ -10,6 +10,3 @@
 BUGWK93560 : fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba4444.html = PASS
 BUGWK93560 : fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba5551.html = PASS
 BUGWK93560 : fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data.html = PASS
-
-# There is a one pixel error on Lion
-BUGWK71401 : css3/filters/custom/effect-custom-transform-parameters.html = IMAGE
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to