Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / delete-empty-container.html
blob4fa0ee5ed910f42b2271c651584d5e03b16c3ded
1 <html>
2 <body onload="test()"></body>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
7 function test()
9 document.open();
10 document.designMode = "on";
11 var selection = window.getSelection();
12 selection.addRange(document.createRange());
13 document.execCommand("Delete");
14 document.close();
15 document.body.appendChild(document.createTextNode('Deleting an empty selection should have no effect.'));
17 </script>
18 </html>