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

Side by Side Diff: LayoutTests/editing/pasteboard/insert-u-with-text-decoration-none-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 tests inserting an u element with text-decoration property set to none. 1 This tests inserting an u element with text-decoration property set to none.
2 WebKit should not strip just font-size property. Two instances of "hello world" should look identical to each other. 2 WebKit should not strip just font-size property. Two instances of "hello world" should look identical to each other.
3 3
4 Insertion point: 4 Insertion point:
5 | <div> 5 | <div>
6 | contenteditable="" 6 | contenteditable=""
7 | " WebKit" 7 | " WebKit"
8 8
9 Content to insert: 9 Content to insert:
10 | <u> 10 | <u>
11 | style="text-decoration: none;" 11 | style="text-decoration: none;"
12 | "hello " 12 | "hello "
13 | <u> 13 | <u>
14 | style="text-decoration: line-through;" 14 | style="text-decoration: line-through;"
15 | "world" 15 | "world"
16 16
17 After insertion: 17 After insertion:
18 | <div> 18 | <div>
19 | contenteditable="" 19 | contenteditable=""
20 | "hello " 20 | "hello "
21 | <span> 21 | <span>
22 | style="text-decoration: line-through;" 22 | style="text-decoration-line: line-through;"
23 | "world<#selection-caret>" 23 | "world<#selection-caret>"
24 | " WebKit" 24 | " WebKit"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698