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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.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/inlinestyle/inlineStylePropertyMap_delete.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html
index 2cc04a3c2291a4be75583b82c8ff002d84e1e24b..b834dbd1ba5173045e5e07c0a6a343ef5bd3fdc9 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html
@@ -17,7 +17,7 @@ test(function() {
}, "delete() removes the value from the property when set in element.style");
test(function() {
- testElement.styleMap.set('width', new CSSSimpleLength(100, 'px'));
+ testElement.styleMap.set('width', new CSSUnitValue(100, 'px'));
assert_equals(testElement.styleMap.get('width').cssText, '100px');
testElement.styleMap.delete('width');

Powered by Google App Engine
This is Rietveld 408576698