Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / pasteboard / insert-font-with-size-and-css-expected.txt
blob340fc8db4605d909fa3b803683f223c5b87f332a
1 This tests inserting a font element with both font-size CSS property and size attribute.
2 WebKit should not strip just font-size property. Two instances of "hello world" should look identical to each other.
4 Insertion point:
5 | <div>
6 |   contenteditable=""
7 |   style="font-size: 25px;"
8 |   "WebKit"
10 Content to insert:
11 | <font>
12 |   size="7"
13 |   style="font-size: 25px;"
14 |   "hello "
15 | <font>
16 |   color="blue"
17 |   size="7"
18 |   style="font-size: 15px;"
19 |   "world "
21 After insertion:
22 | <div>
23 |   contenteditable=""
24 |   style="font-size: 25px;"
25 |   "hello "
26 |   <font>
27 |     color="blue"
28 |     style="font-size: 15px;"
29 |     "world <#selection-caret>"
30 |   "WebKit"