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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/computedstyle/pseudo-elements.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/pseudo-elements.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/computedstyle/pseudo-elements.html b/third_party/WebKit/LayoutTests/typedcssom/computedstyle/pseudo-elements.html
index 19c567af3541408dd1ad3a6742c62e383cc06d06..dd8449f01ebdd73c5eb90e2acdcd8a3cf3f6bb98 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/computedstyle/pseudo-elements.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/computedstyle/pseudo-elements.html
@@ -27,7 +27,7 @@ var t1 = async_test('get on Computed StyleMap of pseudo element returns correct
function t1Callback(pseudoComputedStyleMap) {
t1.step(function() {
var pseudoResult = pseudoComputedStyleMap.get('width');
- assert_equals(pseudoResult.constructor.name, CSSSimpleLength.name);
+ assert_equals(pseudoResult.constructor.name, CSSUnitValue.name);
assert_equals(pseudoResult.cssText, '100px');
});
t1.done();

Powered by Google App Engine
This is Rietveld 408576698