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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/cssNumberValue.html

Issue 1957213002: Typed CSSOM: Rename NumberValue to CSSNumberValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix inline style tests Created 4 years, 7 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 | « no previous file | third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_append.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/typedcssom/cssNumberValue.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/numberValue.html b/third_party/WebKit/LayoutTests/typedcssom/cssNumberValue.html
similarity index 54%
rename from third_party/WebKit/LayoutTests/typedcssom/numberValue.html
rename to third_party/WebKit/LayoutTests/typedcssom/cssNumberValue.html
index 7d6f7e920f98dce30ee9faafec40afc7e1ed2324..c86441146d559863c9362e1b22e64d5db55ae457 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/numberValue.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssNumberValue.html
@@ -4,17 +4,17 @@
<script>
var values = [
- {input: new NumberValue(0), cssString: '0'},
- {input: new NumberValue(1), cssString: '1'},
- {input: new NumberValue(-2), cssString: '-2'},
- {input: new NumberValue(3.4), cssString: '3.4'}
+ {input: new CSSNumberValue(0), cssString: '0'},
+ {input: new CSSNumberValue(1), cssString: '1'},
+ {input: new CSSNumberValue(-2), cssString: '-2'},
+ {input: new CSSNumberValue(3.4), cssString: '3.4'}
];
test(function() {
for (var i = 0; i < values.length; ++i) {
assert_equals(values[i].input.cssString, values[i].cssString);
}
-}, "Test that the css string for NumberValue is correct.");
+}, "Test that the css string for CSSNumberValue is correct.");
</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_append.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698