Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Unified Diff: third_party/WebKit/Source/core/css/CSSProperties.json5

Issue 2714663002: Make background-image and border-*-style accept CSSKeywordValue('none') as an acceptable value (Closed)
Patch Set: Addressing comments Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/config-templates.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/CSSProperties.json5
diff --git a/third_party/WebKit/Source/core/css/CSSProperties.json5 b/third_party/WebKit/Source/core/css/CSSProperties.json5
index 3ae557b0ccd77199099263928442e80448e0d447..d977be7e79ab4a63ce3fd191622fc4212808e6c8 100644
--- a/third_party/WebKit/Source/core/css/CSSProperties.json5
+++ b/third_party/WebKit/Source/core/css/CSSProperties.json5
@@ -563,7 +563,7 @@
name: "background-image",
custom_all: true,
interpolable: true,
- keywords: ["auto"],
+ keywords: ["auto", "none"],
typedom_types: ["Image"],
},
{
@@ -627,6 +627,8 @@
name: "border-bottom-style",
initial: "initialBorderStyle",
type_name: "EBorderStyle",
+ keywords: ["none"],
+ typedom_types: ["Image"],
},
{
name: "border-bottom-width",
@@ -684,6 +686,8 @@
name: "border-left-style",
initial: "initialBorderStyle",
type_name: "EBorderStyle",
+ keywords: ["none"],
+ typedom_types: ["Image"],
},
{
name: "border-left-width",
@@ -701,6 +705,8 @@
name: "border-right-style",
initial: "initialBorderStyle",
type_name: "EBorderStyle",
+ keywords: ["none"],
+ typedom_types: ["Image"],
},
{
name: "border-right-width",
@@ -734,6 +740,8 @@
name: "border-top-style",
initial: "initialBorderStyle",
type_name: "EBorderStyle",
+ keywords: ["none"],
+ typedom_types: ["Image"],
},
{
name: "border-top-width",
@@ -2638,6 +2646,8 @@
{
name: "border-style",
longhands: "border-top-style;border-right-style;border-bottom-style;border-left-style",
+ keywords: ["none"],
+ typedom_types: ["Image"],
},
{
name: "border-top",
« no previous file with comments | « third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/config-templates.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698