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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/cssAngleValue.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/cssAngleValue.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssAngleValue.html b/third_party/WebKit/LayoutTests/typedcssom/cssAngleValue.html
index f8937a7fa1fa92ea4a29d371078d2181f803d2d9..18e2a88cc7b75f6775e8570230f0e1fc17df021f 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/cssAngleValue.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssAngleValue.html
@@ -50,10 +50,10 @@ test(function() {
}, 'Test turn conversions');
test(function() {
- assert_equals((new CSSAngleValue(100, 'deg')).cssString, '100deg');
- assert_equals((new CSSAngleValue(200, 'rad')).cssString, '200rad');
- assert_equals((new CSSAngleValue(300, 'grad')).cssString, '300grad');
- assert_equals((new CSSAngleValue(400, 'turn')).cssString, '400turn');
-}, 'Test cssString');
+ assert_equals((new CSSAngleValue(100, 'deg')).cssText, '100deg');
+ assert_equals((new CSSAngleValue(200, 'rad')).cssText, '200rad');
+ assert_equals((new CSSAngleValue(300, 'grad')).cssText, '300grad');
+ assert_equals((new CSSAngleValue(400, 'turn')).cssText, '400turn');
+}, 'Test cssText');
</script>

Powered by Google App Engine
This is Rietveld 408576698