Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / style / remove-underline-in-bold.html
blobfda5f217f4fde73730c97c1f8ca5ca06d5b65f83
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 underlineCommand();
17 boldCommand();
18 for (i = 0; i < 6; i++)
19 typeCharacterCommand();
20 typeCharacterCommand(' ');
21 for (i = 0; i < 6; i++)
22 typeCharacterCommand();
23 typeCharacterCommand(' ');
24 for (i = 0; i < 6; i++)
25 typeCharacterCommand();
26 moveSelectionBackwardByWordCommand();
27 moveSelectionBackwardByWordCommand();
28 extendSelectionForwardByWordCommand();
29 underlineCommand();
32 </script>
34 <title>Editing Test</title>
35 </head>
36 <body>
37 <div contenteditable id="root" class="editing">
38 <span id="test"></span>
39 </div>
41 <script>
42 runDumpAsTextEditingTest();
43 </script>
45 </body>
46 </html>