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

Unified Diff: LayoutTests/editing/style/push-down-implicit-styles-around-list-mac-expected.txt

Issue 23111004: Re-land "[css3-text] Implement text-decoration property shorthand" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased after Alexis' function name changes in CSSComputedStyleDeclaration.cpp 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/push-down-implicit-styles-around-list-mac-expected.txt
diff --git a/LayoutTests/editing/style/push-down-implicit-styles-around-list-mac-expected.txt b/LayoutTests/editing/style/push-down-implicit-styles-around-list-mac-expected.txt
index ebe1255b00719130f34dd0d24a667b210887efe2..a771cfce9eecf990ef82c64a985db45153f59573 100644
--- a/LayoutTests/editing/style/push-down-implicit-styles-around-list-mac-expected.txt
+++ b/LayoutTests/editing/style/push-down-implicit-styles-around-list-mac-expected.txt
@@ -12,13 +12,13 @@ PASS italic on first word of <i><ul><li>hello</li><li>world</li></ul></i> yields
PASS italic on last word of <ul><li>hello</li><li style="font-style: italic;">world</li></ul> yields <ul><li>hello</li><li>world</li></ul>
PASS italic on first word of <i><ul><li>hello world</li><li>webkit</li></ul></i> yields <ul><li>hello<i> world</i></li><li style="font-style: italic;">webkit</li></ul>
PASS underline on first word of <u><ul><li><u>a</u></li></ul></u> yields <ul><li>a</li></ul>
-PASS underline on first word of <u><ul><li>hello</li><li>world</li></ul></u> yields <ul><li>hello</li><li style="text-decoration: underline;">world</li></ul>
+PASS underline on first word of <u><ul><li>hello</li><li>world</li></ul></u> yields <ul><li>hello</li><li style="text-decoration-line: underline;">world</li></ul>
PASS underline on last word of <ul><li>hello</li><li style="text-decoration: underline;">world</li></ul> yields <ul><li>hello</li><li>world</li></ul>
-PASS underline on first word of <u><ul><li>hello world</li><li>webkit</li></ul></u> yields <ul><li>hello<u> world</u></li><li style="text-decoration: underline;">webkit</li></ul>
+PASS underline on first word of <u><ul><li>hello world</li><li>webkit</li></ul></u> yields <ul><li>hello<u> world</u></li><li style="text-decoration-line: underline;">webkit</li></ul>
PASS strikethrough on first word of <strike><ul><li><strike>a</strike></li></ul></strike> yields <ul><li>a</li></ul>
-PASS strikethrough on first word of <strike><ul><li>hello</li><li>world</li></ul></strike> yields <ul><li>hello</li><li style="text-decoration: line-through;">world</li></ul>
+PASS strikethrough on first word of <strike><ul><li>hello</li><li>world</li></ul></strike> yields <ul><li>hello</li><li style="text-decoration-line: line-through;">world</li></ul>
PASS strikethrough on last word of <ul><li>hello</li><li style="text-decoration: line-through;">world</li></ul> yields <ul><li>hello</li><li>world</li></ul>
-PASS strikethrough on first word of <strike><ul><li>hello world</li><li>webkit</li></ul></strike> yields <ul><li>hello<strike> world</strike></li><li style="text-decoration: line-through;">webkit</li></ul>
+PASS strikethrough on first word of <strike><ul><li>hello world</li><li>webkit</li></ul></strike> yields <ul><li>hello<strike> world</strike></li><li style="text-decoration-line: line-through;">webkit</li></ul>
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698