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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/computedstyle/border-top-width.html

Issue 2867883003: [CSS Typed OM] Delete obsolete number and length classes from Typed OM (Closed)
Patch Set: rebase Created 3 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
Index: third_party/WebKit/LayoutTests/typedcssom/computedstyle/border-top-width.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/computedstyle/border-top-width.html b/third_party/WebKit/LayoutTests/typedcssom/computedstyle/border-top-width.html
index c8882f4dee433889b0b8e77793635abe92e68f4e..9e55e1d04d0bc3044f447eeb17bf425eff64fed4 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/computedstyle/border-top-width.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/computedstyle/border-top-width.html
@@ -12,9 +12,9 @@ test(function() {
testElement.style.borderTop = '10px solid #000';
var result = computedStyleMap.get('border-top-width');
- assert_equals(result.constructor.name, CSSSimpleLength.name);
+ assert_equals(result.constructor.name, CSSUnitValue.name);
assert_equals(result.cssText, '10px');
-}, "Getting a 10px border-top-width returns a CSSSimpleLength");
+}, "Getting a 10px border-top-width returns a CSSUnitValue");
test(function() {
testElement.style.borderTop = '20px solid #000';

Powered by Google App Engine
This is Rietveld 408576698