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

Unified Diff: LayoutTests/editing/style/script-tests/push-down-implicit-styles-mac.js

Issue 20262002: [css3-text] Implement text-decoration property shorthand (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed expectation for last-minute, newly added tests in revision 155705 Created 7 years, 4 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: LayoutTests/editing/style/script-tests/push-down-implicit-styles-mac.js
diff --git a/LayoutTests/editing/style/script-tests/push-down-implicit-styles-mac.js b/LayoutTests/editing/style/script-tests/push-down-implicit-styles-mac.js
index d9f578a5cdf165a3ce06239144bc90f1eebf6dc8..f6d44edbf21326995eadea4cdeeff68efc546168 100644
--- a/LayoutTests/editing/style/script-tests/push-down-implicit-styles-mac.js
+++ b/LayoutTests/editing/style/script-tests/push-down-implicit-styles-mac.js
@@ -71,7 +71,7 @@ testSingleToggle("underline", selectSecondWord, '<u><strike>hello world</strike>
testSingleToggle("underline", selectSecondWord, '<u>hello <em><code>world webkit</code></em> rocks</u>', '<u>hello</u> <em><code>world<u> webkit</u></code></em><u> rocks</u>');
testSingleToggle("strikeThrough", selectAll, '<s style="color: blue;">hello world</strike>', '<span style="color: blue;">hello world</span>');
-testSingleToggle("strikeThrough", selectFirstWord, '<s style="color: blue;"><div>hello</div> <b>world</b> webkit</strike>', '<span style="color: blue;"><div>hello</div> <b style="text-decoration: line-through;">world</b><strike> webkit</strike></span>');
+testSingleToggle("strikeThrough", selectFirstWord, '<s style="color: blue;"><div>hello</div> <b>world</b> webkit</strike>', '<span style="color: blue;"><div>hello</div> <b style="text-decoration-line: line-through;">world</b><strike> webkit</strike></span>');
document.body.removeChild(testContainer);

Powered by Google App Engine
This is Rietveld 408576698