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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html

Issue 2921223002: [CSS Typed OM] Hook up getting CSSUnitValues from inline StylePropertyMaps (Closed)
Patch Set: Fix missed LayoutTests Created 3 years, 6 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/styleValue-parse-basic.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html b/third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html
index f6819522cf9b1b842dc3a23e6198b36b8529e7f6..97403401f624e604005552597e7beec11eb16760 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html
@@ -9,7 +9,7 @@ test(function() {
assert_not_equals(result, null);
assert_equals(result.constructor.name, CSSUnitValue.name);
assert_equals(result.value, 10);
- assert_equals(result.type, 'px');
+ assert_equals(result.unit, 'px');
}, 'Parsing 10px results in a CSSUnitValue');
test(function() {

Powered by Google App Engine
This is Rietveld 408576698