| 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')]
|
| +};
|
|
|