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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/computedstyle/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/width.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/computedstyle/width.html b/third_party/WebKit/LayoutTests/typedcssom/computedstyle/width.html
index a9a7561dacb4e94c08c665fe6131b74d48f833da..9d6a087fce5337982ad7aecbd3b4ca6f35adaa10 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/computedstyle/width.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/computedstyle/width.html
@@ -11,11 +11,11 @@
testElement.style.width = '10px';
-var t1 = async_test("Getting a 10px width results in a CSSSimpleLength");
+var t1 = async_test("Getting a 10px width results in a CSSUnitValue");
function t1Callback(computedStyleMap) {
t1.step(function() {
var result = computedStyleMap.get('width');
- assert_equals(result.constructor.name, CSSSimpleLength.name);
+ assert_equals(result.constructor.name, CSSUnitValue.name);
assert_equals(result.cssText, '10px');
});
t1.done();

Powered by Google App Engine
This is Rietveld 408576698