Title: [141885] trunk/Source/WebCore
Revision
141885
Author
[email protected]
Date
2013-02-05 04:41:17 -0800 (Tue, 05 Feb 2013)

Log Message

[TexMap] Use visible as initial value of backface-visibility-property.
https://bugs.webkit.org/show_bug.cgi?id=108875

Patch by JungJik Lee <[email protected]> on 2013-02-05
Reviewed by Noam Rosenthal.

According to W3C spec, the initial value of backface-visibility-visibility is visible.
However TextureMapperLayer's initial value is false which means hidden.
So this patch is for changing the value to visible(true).

Covered by existing tests.

* platform/graphics/texmap/TextureMapperLayer.h:
(WebCore::TextureMapperLayer::State::State): Change the initial value false to true
to use backface-visibility.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (141884 => 141885)


--- trunk/Source/WebCore/ChangeLog	2013-02-05 12:34:36 UTC (rev 141884)
+++ trunk/Source/WebCore/ChangeLog	2013-02-05 12:41:17 UTC (rev 141885)
@@ -1,3 +1,20 @@
+2013-02-05  JungJik Lee  <[email protected]>
+
+        [TexMap] Use visible as initial value of backface-visibility-property.
+        https://bugs.webkit.org/show_bug.cgi?id=108875
+
+        Reviewed by Noam Rosenthal.
+
+        According to W3C spec, the initial value of backface-visibility-visibility is visible.
+        However TextureMapperLayer's initial value is false which means hidden.
+        So this patch is for changing the value to visible(true).
+
+        Covered by existing tests.
+
+        * platform/graphics/texmap/TextureMapperLayer.h:
+        (WebCore::TextureMapperLayer::State::State): Change the initial value false to true
+        to use backface-visibility.
+
 2013-02-05  Andrey Adaikin  <[email protected]>
 
         Web Inspector: [Canvas] do not store a dropped trace log in backend

Modified: trunk/Source/WebCore/platform/graphics/texmap/TextureMapperLayer.h (141884 => 141885)


--- trunk/Source/WebCore/platform/graphics/texmap/TextureMapperLayer.h	2013-02-05 12:34:36 UTC (rev 141884)
+++ trunk/Source/WebCore/platform/graphics/texmap/TextureMapperLayer.h	2013-02-05 12:41:17 UTC (rev 141885)
@@ -195,7 +195,7 @@
             , drawsContent(false)
             , contentsVisible(true)
             , contentsOpaque(false)
-            , backfaceVisibility(false)
+            , backfaceVisibility(true)
             , visible(true)
             , showDebugBorders(false)
             , showRepaintCounter(false)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to