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

Side by Side Diff: LayoutTests/editing/deleting/deleting-line-break-preserves-underline-color-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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 This test for a bug moving a paragraph of underlined text. The text should look the same before and after the deletion. 1 This test for a bug moving a paragraph of underlined text. The text should look the same before and after the deletion.
2 2
3 Before: 3 Before:
4 | <div> 4 | <div>
5 | "This should not be underlined." 5 | "This should not be underlined."
6 | <span> 6 | <span>
7 | style="text-decoration: underline; color: blue;" 7 | style="text-decoration: underline; color: blue;"
8 | <span> 8 | <span>
9 | style="color:red;" 9 | style="color:red;"
10 | "This should be underlined." 10 | "This should be underlined."
11 11
12 After: 12 After:
13 | <div> 13 | <div>
14 | "This should not be underlined.<#selection-caret>" 14 | "This should not be underlined.<#selection-caret>"
15 | <span> 15 | <span>
16 | style="color: red; text-decoration: underline;" 16 | style="color: red; text-decoration-line: underline;"
17 | "This should be underlined." 17 | "This should be underlined."
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698