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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getAll.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/inlinestyle/inlineStylePropertyMap_getAll.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getAll.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getAll.html
index 372cddedac9133e51f127056d6463f4e5591c694..6ceb5967a5ff5d6e10ce21c3703fdc42b737a783 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getAll.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getAll.html
@@ -11,7 +11,7 @@ test(function() {
testElement.styleMap.set('width', new CSSSimpleLength(90, 'px'));
var result = testElement.styleMap.getAll('width');
assert_equals(result.length, 1);
- assert_equals(result[0].cssString, '90px');
+ assert_equals(result[0].cssText, '90px');
}, "getAll() returns a list of values");
test(function() {
@@ -23,9 +23,9 @@ test(function() {
assert_equals(lowerResult.length, 1);
assert_equals(upperResult.length, 1);
assert_equals(mixedResult.length, 1);
- assert_equals(lowerResult[0].cssString, '100px');
- assert_equals(upperResult[0].cssString, '100px');
- assert_equals(mixedResult[0].cssString, '100px');
+ assert_equals(lowerResult[0].cssText, '100px');
+ assert_equals(upperResult[0].cssText, '100px');
+ assert_equals(mixedResult[0].cssText, '100px');
}, "getAll is case-insensitive for the property name");
test(function() {

Powered by Google App Engine
This is Rietveld 408576698