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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/computedstyle/computedStylePropertyMap.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/computedstyle/computedStylePropertyMap.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/computedstyle/computedStylePropertyMap.html b/third_party/WebKit/LayoutTests/typedcssom/computedstyle/computedStylePropertyMap.html
index 6469832b4d7cba8552df91ac6ba6d44374b05ac3..5140e8bf4b26b8062d3dd3780ab723cd8bd0f511 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/computedstyle/computedStylePropertyMap.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/computedstyle/computedStylePropertyMap.html
@@ -28,7 +28,7 @@ test(function() {
if (styleValues.length == 1) {
// TODO(meade): Remove this if statement once all properties are supported.
// TODO(meade): Handle sequence types.
- assert_equals(computedStyleMap.get(property).cssString, computedStyle[property]);
+ assert_equals(computedStyleMap.get(property).cssText, computedStyle[property]);
}
}
}, 'Properties retrieved from ComputedStyleMap reflect the same values as from ComputedStyle');
@@ -37,7 +37,7 @@ test(function() {
testElement.style.border = '1px solid #00ff00';
var styleValue = computedStyleMap.get('border');
assert_equals(styleValue.constructor, CSSStyleValue);
- assert_equals(styleValue.cssString, testElement.style.border);
+ assert_equals(styleValue.cssText, testElement.style.border);
}, 'Unsupported but serializable property returns a base CSSStyleValue.');
test(function() {

Powered by Google App Engine
This is Rietveld 408576698