Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / style / remove-underline-after-paragraph-in-bold.html
blob273a1e2c215a0c09b5d07bd1a9209b48f907758f
1 <html>
2 <head>
4 <style>
5 .editing {
6 border: 2px solid red;
7 padding: 12px;
8 font-size: 24px;
10 </style>
11 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
13 <script>
15 function editingTest() {
16 boldCommand();
17 underlineCommand();
18 for (i = 0; i < 6; i++)
19 typeCharacterCommand();
20 typeCharacterCommand(' ');
21 for (i = 0; i < 6; i++)
22 typeCharacterCommand();
23 insertParagraphCommand();
24 underlineCommand();
25 typeCharacterCommand(' ');
26 for (i = 0; i < 6; i++)
27 typeCharacterCommand();
28 typeCharacterCommand(' ');
29 for (i = 0; i < 6; i++)
30 typeCharacterCommand();
33 </script>
35 <title>Editing Test</title>
36 </head>
37 <body>
38 <div contenteditable id="root" class="editing">
39 <span id="test"></span>
40 </div>
42 <script>
43 runDumpAsTextEditingTest();
44 </script>
46 </body>
47 </html>