Title: [204766] releases/WebKitGTK/webkit-2.12
Revision
204766
Author
carlo...@webkit.org
Date
2016-08-22 23:51:24 -0700 (Mon, 22 Aug 2016)

Log Message

Merge r201666 - Incorrect rendering on boostmobile FAQ page
https://bugs.webkit.org/show_bug.cgi?id=158303
<rdar://problem/26603462>

Reviewed by Chris Dumez.

Initial value for background-color is 'transparent'. see https://drafts.csswg.org/css-backgrounds-3/#background-color

Source/WebCore:

Test: fast/selectors/non-visited-link-backround-color.html

* css/CSSPropertyNames.in:

LayoutTests:

* fast/selectors/non-visited-link-backround-color-expected.html: Added.
* fast/selectors/non-visited-link-backround-color.html: Added.

Modified Paths

Added Paths

Diff

Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/ChangeLog (204765 => 204766)


--- releases/WebKitGTK/webkit-2.12/LayoutTests/ChangeLog	2016-08-23 06:44:02 UTC (rev 204765)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/ChangeLog	2016-08-23 06:51:24 UTC (rev 204766)
@@ -1,3 +1,16 @@
+2016-06-03  Zalan Bujtas  <za...@apple.com>
+
+        Incorrect rendering on boostmobile FAQ page
+        https://bugs.webkit.org/show_bug.cgi?id=158303
+        <rdar://problem/26603462>
+
+        Reviewed by Chris Dumez.
+
+        Initial value for background-color is 'transparent'. see https://drafts.csswg.org/css-backgrounds-3/#background-color
+
+        * fast/selectors/non-visited-link-backround-color-expected.html: Added.
+        * fast/selectors/non-visited-link-backround-color.html: Added.
+
 2016-05-25  Zalan Bujtas  <za...@apple.com>
 
         Setting overflow:hidden does not always repaint clipped content.

Added: releases/WebKitGTK/webkit-2.12/LayoutTests/fast/selectors/non-visited-link-backround-color-expected.html (0 => 204766)


--- releases/WebKitGTK/webkit-2.12/LayoutTests/fast/selectors/non-visited-link-backround-color-expected.html	                        (rev 0)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/fast/selectors/non-visited-link-backround-color-expected.html	2016-08-23 06:51:24 UTC (rev 204766)
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>This tests that we set the proper background color on the not-yet-visited link.</title>
+<style>
+  div {
+    width: 100px;
+    height: 100px;
+    background: green;
+  }
+</style>
+</head>
+<body>
+<div></div> 
+</body>
+</html>

Added: releases/WebKitGTK/webkit-2.12/LayoutTests/fast/selectors/non-visited-link-backround-color.html (0 => 204766)


--- releases/WebKitGTK/webkit-2.12/LayoutTests/fast/selectors/non-visited-link-backround-color.html	                        (rev 0)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/fast/selectors/non-visited-link-backround-color.html	2016-08-23 06:51:24 UTC (rev 204766)
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>This tests that we set the proper background color on the not-yet-visited link.</title>
+<style>
+  a {
+    display: block;
+    width: 100px;
+    height: 100px;
+    background: border-box;
+  }
+
+  a:link {
+    background: green;
+ }
+</style>
+</head>
+<body>
+<a href="" 
+</body>
+</html>

Modified: releases/WebKitGTK/webkit-2.12/Source/WebCore/ChangeLog (204765 => 204766)


--- releases/WebKitGTK/webkit-2.12/Source/WebCore/ChangeLog	2016-08-23 06:44:02 UTC (rev 204765)
+++ releases/WebKitGTK/webkit-2.12/Source/WebCore/ChangeLog	2016-08-23 06:51:24 UTC (rev 204766)
@@ -1,3 +1,17 @@
+2016-06-03  Zalan Bujtas  <za...@apple.com>
+
+        Incorrect rendering on boostmobile FAQ page
+        https://bugs.webkit.org/show_bug.cgi?id=158303
+        <rdar://problem/26603462>
+
+        Reviewed by Chris Dumez.
+
+        Initial value for background-color is 'transparent'. see https://drafts.csswg.org/css-backgrounds-3/#background-color
+
+        Test: fast/selectors/non-visited-link-backround-color.html
+
+        * css/CSSPropertyNames.in:
+
 2016-05-25  Zalan Bujtas  <za...@apple.com>
 
         Setting overflow:hidden does not always repaint clipped content.

Modified: releases/WebKitGTK/webkit-2.12/Source/WebCore/css/CSSPropertyNames.in (204765 => 204766)


--- releases/WebKitGTK/webkit-2.12/Source/WebCore/css/CSSPropertyNames.in	2016-08-23 06:44:02 UTC (rev 204765)
+++ releases/WebKitGTK/webkit-2.12/Source/WebCore/css/CSSPropertyNames.in	2016-08-23 06:51:24 UTC (rev 204766)
@@ -145,7 +145,7 @@
 background-attachment [FillLayerProperty, NameForMethods=Attachment]
 background-blend-mode [FillLayerProperty, NameForMethods=BlendMode]
 background-clip [FillLayerProperty, NameForMethods=Clip]
-background-color [VisitedLinkColorSupport, Initial=invalidColor, NoDefaultColor]
+background-color [VisitedLinkColorSupport, NoDefaultColor]
 background-image [FillLayerProperty, NameForMethods=Image]
 background-origin [FillLayerProperty, NameForMethods=Origin]
 background-position [Longhands=background-position-x|background-position-y]
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to