Title: [231805] trunk/LayoutTests
Revision
231805
Author
[email protected]
Date
2018-05-15 09:40:35 -0700 (Tue, 15 May 2018)

Log Message

Add test to verify behavior of -webkit-text-fill-color when inherited.
https://bugs.webkit.org/show_bug.cgi?id=185427

Patch by Aditya Keerthi <[email protected]> on 2018-05-15
Reviewed by Daniel Bates.

* fast/css/webkit-text-fill-color-inherit-expected.html: Added.
* fast/css/webkit-text-fill-color-inherit.html: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (231804 => 231805)


--- trunk/LayoutTests/ChangeLog	2018-05-15 16:29:15 UTC (rev 231804)
+++ trunk/LayoutTests/ChangeLog	2018-05-15 16:40:35 UTC (rev 231805)
@@ -1,3 +1,13 @@
+2018-05-15  Aditya Keerthi  <[email protected]>
+
+        Add test to verify behavior of -webkit-text-fill-color when inherited.
+        https://bugs.webkit.org/show_bug.cgi?id=185427
+
+        Reviewed by Daniel Bates.
+
+        * fast/css/webkit-text-fill-color-inherit-expected.html: Added.
+        * fast/css/webkit-text-fill-color-inherit.html: Added.
+
 2018-05-15  Dirk Schulze  <[email protected]>
 
         Add new SVGDOM SVGFEBLEND constants

Added: trunk/LayoutTests/fast/css/webkit-text-fill-color-inherit-expected.html (0 => 231805)


--- trunk/LayoutTests/fast/css/webkit-text-fill-color-inherit-expected.html	                        (rev 0)
+++ trunk/LayoutTests/fast/css/webkit-text-fill-color-inherit-expected.html	2018-05-15 16:40:35 UTC (rev 231805)
@@ -0,0 +1,7 @@
+<!DOCTYPE html>
+<html>
+<body>
+    <div style="-webkit-text-fill-color: green">Green</div>
+    <div style="-webkit-text-fill-color: green">Green</div>
+</body>
+<html>

Added: trunk/LayoutTests/fast/css/webkit-text-fill-color-inherit.html (0 => 231805)


--- trunk/LayoutTests/fast/css/webkit-text-fill-color-inherit.html	                        (rev 0)
+++ trunk/LayoutTests/fast/css/webkit-text-fill-color-inherit.html	2018-05-15 16:40:35 UTC (rev 231805)
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+<body>
+    <div style="color: green">
+        <div id="undefined-parent" style="color: red; -webkit-text-fill-color: inherit">Green</div>
+    </div>
+    <div style="color: purple; -webkit-text-fill-color: green">
+        <div id="defined-parent" style="color: red; -webkit-text-fill-color: inherit">Green</div>
+    </div>
+</body>
+<html>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to