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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/border-right-width.html

Issue 2583063002: Add common test configs for properties that take lengths (Closed)
Patch Set: Remove extra whitespace Created 3 years, 9 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/border-right-width.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/border-bottom-style.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/border-right-width.html
similarity index 53%
copy from third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/border-bottom-style.html
copy to third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/border-right-width.html
index 6564e7fd3224eb366f2c6e17c1b6cb771fff31ac..51c25fbbb7b4adce9e653a31531d44efaa4e93d3 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/border-bottom-style.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/border-right-width.html
@@ -3,9 +3,9 @@
<script src='../../../resources/testharnessreport.js'></script>
<script src='property-suite.js'></script>
<script src='config-templates.js'></script>
-
<script>
- let config = Object.assign({}, config_templates.borderConfig);
- config['property'] = 'border-bottom-style';
- runInlineStylePropertyMapTests(config);
-</script>
+let config = config_templates.lengthPercentConfig();
+config['property'] = 'border-right-width';
+config['validKeywords'] = ['thin', 'medium', 'thick'];
+runInlineStylePropertyMapTests(config);
+</script>

Powered by Google App Engine
This is Rietveld 408576698