Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / indent-images-3.html
blobc1de9f08bb85eb30230d27ac9f3dd2e7b665aa38
1 <!DOCTYPE html>
2 <html>
3 <body><span contenteditable><img><img></span>
4 <script src="../../resources/dump-as-markup.js"></script>
5 <script>
7 if (window.testRunner)
8 testRunner.dumpAsText();
10 while (script = document.querySelector('script'))
11 script.parentNode.removeChild(script);
13 getSelection().collapse(document.getElementsByTagName('span')[0], 2);
14 document.execCommand('indent');
16 Markup.description('This test indents insides a document with exactly two image elements.\n'
17 + 'Indentation should succeed even if the root editable element is inline.');
18 Markup.dump(document.body);
20 </script>
21 </body>
22 </html>