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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/config-templates.js

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
Index: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/config-templates.js
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/config-templates.js b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/config-templates.js
new file mode 100644
index 0000000000000000000000000000000000000000..e4d37c3a7ee5009eb51d361f04dcc825cfb635d7
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/config-templates.js
@@ -0,0 +1,26 @@
+/**
+ * Generates config objects that are common between multiple properties for use
+ * in property-suite.js
+ */
+let config_templates = {};
+
+config_templates.borderConfig = {
+ validKeywords: [
+ 'none',
+ //TODO: Implement the keywords listed below.
+ // 'hidden',
+ // 'dotted',
+ // 'dashed',
+ // 'solid',
+ // 'double',
+ // 'groove',
+ // 'ridge',
+ // 'inset',
+ // 'outset',
+ // 'inherit'
+ ],
+ validObjects: [
+ ],
+ supportsMultiple: false,
+ invalidObjects: [new CSSSimpleLength(4, 'px')]
+};

Powered by Google App Engine
This is Rietveld 408576698