Index: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/width.html |
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/width.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/width.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..95e0b2a2d43539ffbf520fd77020e429db3729c4 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/width.html |
@@ -0,0 +1,17 @@ |
+<!DOCTYPE html> |
+<script src='../../../resources/testharness.js'></script> |
+<script src='../../../resources/testharnessreport.js'></script> |
+<script src='property-suite.js'></script> |
+<script src='config-templates.js'></script> |
+<script> |
+let config = config_templates.lengthPercentConfig(); |
+config['property'] = 'width'; |
+config['validKeywords'] = [ |
+ // 'available', Not yet supported in Chrome |
+ 'max-content', |
+ 'min-content', |
+ 'fit-content', |
+ 'auto' |
+]; |
+runInlineStylePropertyMapTests(config); |
+</script> |