Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / remove-format-in-table-cell.html
blobffdf47f39c44537ba2b74a0591878d8d9c6d2e16
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <script src="../../resources/dump-as-markup.js"></script>
5 <div id="test" contenteditable><table><tr><td><b>hello</b></td></tr><tr><td>world</td></tr></table></div>
6 <script>
8 Markup.description('This tests that RemoveFormat does not add extra span tags when executed inside a table cell.');
9 window.getSelection().selectAllChildren(document.getElementsByTagName('b')[0]);
10 document.execCommand('RemoveFormat', false, null);
11 Markup.dump('test');
13 </script>
14 </body>
15 </html>