Title: [187344] trunk
Revision
187344
Author
[email protected]
Date
2015-07-24 09:07:30 -0700 (Fri, 24 Jul 2015)

Log Message

CSS "content" property is missing in getComputedStyles
https://bugs.webkit.org/show_bug.cgi?id=147255

Patch by Joseph Pecoraro <[email protected]> on 2015-07-24
Reviewed by Simon Fraser.

Source/WebCore:

* css/CSSComputedStyleDeclaration.cpp:

LayoutTests:

* fast/css/getComputedStyle/computed-style-expected.txt:
* fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
* fast/css/getComputedStyle/resources/property-names.js:
* svg/css/getComputedStyle-basic-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (187343 => 187344)


--- trunk/LayoutTests/ChangeLog	2015-07-24 14:49:18 UTC (rev 187343)
+++ trunk/LayoutTests/ChangeLog	2015-07-24 16:07:30 UTC (rev 187344)
@@ -1,3 +1,15 @@
+2015-07-24  Joseph Pecoraro  <[email protected]>
+
+        CSS "content" property is missing in getComputedStyles
+        https://bugs.webkit.org/show_bug.cgi?id=147255
+
+        Reviewed by Simon Fraser.
+
+        * fast/css/getComputedStyle/computed-style-expected.txt:
+        * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
+        * fast/css/getComputedStyle/resources/property-names.js:
+        * svg/css/getComputedStyle-basic-expected.txt:
+
 2015-07-24  Csaba Osztrogonác  <[email protected]>
 
         [EFL] many fast tests are flaky

Modified: trunk/LayoutTests/fast/css/getComputedStyle/computed-style-expected.txt (187343 => 187344)


--- trunk/LayoutTests/fast/css/getComputedStyle/computed-style-expected.txt	2015-07-24 14:49:18 UTC (rev 187343)
+++ trunk/LayoutTests/fast/css/getComputedStyle/computed-style-expected.txt	2015-07-24 16:07:30 UTC (rev 187344)
@@ -37,6 +37,7 @@
 clear: none;
 clip: auto;
 color: rgb(0, 0, 0);
+content: ;
 cursor: auto;
 direction: ltr;
 display: block;

Modified: trunk/LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt (187343 => 187344)


--- trunk/LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt	2015-07-24 14:49:18 UTC (rev 187343)
+++ trunk/LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt	2015-07-24 16:07:30 UTC (rev 187344)
@@ -36,6 +36,7 @@
 clear: none
 clip: auto
 color: rgb(0, 0, 0)
+content: 
 cursor: auto
 direction: ltr
 display: block

Modified: trunk/LayoutTests/fast/css/getComputedStyle/resources/property-names.js (187343 => 187344)


--- trunk/LayoutTests/fast/css/getComputedStyle/resources/property-names.js	2015-07-24 14:49:18 UTC (rev 187343)
+++ trunk/LayoutTests/fast/css/getComputedStyle/resources/property-names.js	2015-07-24 16:07:30 UTC (rev 187344)
@@ -168,6 +168,7 @@
     "color-interpolation": true,
     "color-interpolation-filters": true,
     "color-rendering": true,
+    "content": true,
     "cursor": true,
     "direction": true,
     "display": true,

Modified: trunk/LayoutTests/svg/css/getComputedStyle-basic-expected.txt (187343 => 187344)


--- trunk/LayoutTests/svg/css/getComputedStyle-basic-expected.txt	2015-07-24 14:49:18 UTC (rev 187343)
+++ trunk/LayoutTests/svg/css/getComputedStyle-basic-expected.txt	2015-07-24 16:07:30 UTC (rev 187344)
@@ -72,6 +72,8 @@
 rect: style.getPropertyCSSValue(clip) : [object CSSPrimitiveValue]
 rect: style.getPropertyValue(color) : rgb(0, 0, 0)
 rect: style.getPropertyCSSValue(color) : [object CSSPrimitiveValue]
+rect: style.getPropertyValue(content) : 
+rect: style.getPropertyCSSValue(content) : [object CSSValueList]
 rect: style.getPropertyValue(cursor) : auto
 rect: style.getPropertyCSSValue(cursor) : [object CSSPrimitiveValue]
 rect: style.getPropertyValue(direction) : ltr
@@ -594,6 +596,8 @@
 g: style.getPropertyCSSValue(clip) : [object CSSPrimitiveValue]
 g: style.getPropertyValue(color) : rgb(0, 0, 0)
 g: style.getPropertyCSSValue(color) : [object CSSPrimitiveValue]
+g: style.getPropertyValue(content) : 
+g: style.getPropertyCSSValue(content) : [object CSSValueList]
 g: style.getPropertyValue(cursor) : auto
 g: style.getPropertyCSSValue(cursor) : [object CSSPrimitiveValue]
 g: style.getPropertyValue(direction) : ltr

Modified: trunk/Source/WebCore/ChangeLog (187343 => 187344)


--- trunk/Source/WebCore/ChangeLog	2015-07-24 14:49:18 UTC (rev 187343)
+++ trunk/Source/WebCore/ChangeLog	2015-07-24 16:07:30 UTC (rev 187344)
@@ -1,3 +1,12 @@
+2015-07-24  Joseph Pecoraro  <[email protected]>
+
+        CSS "content" property is missing in getComputedStyles
+        https://bugs.webkit.org/show_bug.cgi?id=147255
+
+        Reviewed by Simon Fraser.
+
+        * css/CSSComputedStyleDeclaration.cpp:
+
 2015-07-24  Carlos Garcia Campos  <[email protected]>
 
         [GStreamer] Crashes during plugin installation

Modified: trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp (187343 => 187344)


--- trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp	2015-07-24 14:49:18 UTC (rev 187343)
+++ trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp	2015-07-24 16:07:30 UTC (rev 187344)
@@ -144,6 +144,7 @@
     CSSPropertyClear,
     CSSPropertyClip,
     CSSPropertyColor,
+    CSSPropertyContent,
     CSSPropertyCursor,
     CSSPropertyDirection,
     CSSPropertyDisplay,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to