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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/cssPerspective.html

Issue 2097093002: [Typed OM] Rename cssString methods to cssText (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rename-transformvalue
Patch Set: Update usage in csspaint logging for tests 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
Index: third_party/WebKit/LayoutTests/typedcssom/cssPerspective.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssPerspective.html b/third_party/WebKit/LayoutTests/typedcssom/cssPerspective.html
index c1fa8e19b60e6736dd0175d0d60e33e02b04e406..227c78abd5d524b16de925f009abec9eb90d2094 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/cssPerspective.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssPerspective.html
@@ -20,9 +20,9 @@ test(function() {
var perspectiveTransformSimple = new CSSPerspective(simpleLength);
var perspectiveTransformCalc = new CSSPerspective(calcLength);
- assert_equals(perspectiveTransformSimple.cssString, 'perspective(10px)');
- assert_equals(perspectiveTransformCalc.cssString,'perspective(calc(3.2em + 10px))');
-}, "cssString should return a string of form perspective(<CSSLengthValue.cssString()>)");
+ assert_equals(perspectiveTransformSimple.cssText, 'perspective(10px)');
+ assert_equals(perspectiveTransformCalc.cssText,'perspective(calc(3.2em + 10px))');
+}, "cssText should return a string of form perspective(<CSSLengthValue.cssString()>)");
</script>

Powered by Google App Engine
This is Rietveld 408576698