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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.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_delete.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html
index 2ee532760c5b152b5a0dd51ecfe2da24439802ad..2cc04a3c2291a4be75583b82c8ff002d84e1e24b 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html
@@ -9,7 +9,7 @@
// Delete
test(function() {
testElement.style.width = '80px';
- assert_equals(testElement.styleMap.get('width').cssString, '80px');
+ assert_equals(testElement.styleMap.get('width').cssText, '80px');
testElement.styleMap.delete('width');
assert_equals(testElement.styleMap.get('width'), null);
@@ -18,7 +18,7 @@ test(function() {
test(function() {
testElement.styleMap.set('width', new CSSSimpleLength(100, 'px'));
- assert_equals(testElement.styleMap.get('width').cssString, '100px');
+ assert_equals(testElement.styleMap.get('width').cssText, '100px');
testElement.styleMap.delete('width');
assert_equals(testElement.styleMap.get('width'), null);
@@ -27,7 +27,7 @@ test(function() {
test(function() {
testElement.style.width = '90px';
- assert_equals(testElement.styleMap.get('width').cssString, '90px');
+ assert_equals(testElement.styleMap.get('width').cssText, '90px');
testElement.styleMap.delete('WIdtH');
assert_equals(testElement.styleMap.get('width'), null);

Powered by Google App Engine
This is Rietveld 408576698