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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform.html

Issue 2104713002: [Typed OM] Fix missing renames that broke the build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update other renames Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-rotation.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform.html
index e68d410f0f4ce4d7a914f3650c143df3e1ca3ce8..58d05b488eb78f89188c960125c47016e2d7041d 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform.html
@@ -16,10 +16,10 @@ test(function() {
}, "Setting transform works on a regular element.");
test(function() {
- var transform = new TransformValue([new CSSRotation(30)]);
+ var transform = new CSSTransformValue([new CSSRotation(30)]);
testElement.styleMap.set('transform', transform);
- assert_equals(testElement.styleMap.get('transform').cssString, 'rotate(30deg)');
+ assert_equals(testElement.styleMap.get('transform').cssText, 'rotate(30deg)');
}, "Getting transform works on a regular element.");
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-rotation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698