Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / dump-as-markup-form-text-expected.txt
blob78aa402cca1574ed61ff3ff3d09cccfdcdaf91f3
1 Tests dump-as-markup for input and textarea forms.
2 | <!DOCTYPE html>
3 | <html>
4 |   <head>
5 |     <script>
6 |       src="../../resources/dump-as-markup.js"
7 |     "
10 |   <body>
11 |     <input>
12 |       value="original"
13 |       this.value="replaced"
14 |       <shadow:root>
15 |         <div>
16 |           id="inner-editor"
17 |           "replaced"
18 |     "
20 |     <textarea>
21 |       this.value="replaced"
22 |       "original"
23 |       <shadow:root>
24 |         <div>
25 |           id="inner-editor"
26 |           "replaced"
27 |     "
29 |     <script>
30 |       "
31 Markup.description("Tests dump-as-markup for input and textarea forms.");
33 document.getElementsByTagName("input")[0].value = "replaced";
34 document.getElementsByTagName("textarea")[0].value = "replaced";
36 |     "