Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / delete-image-in-anchor.html
blob32791fc73a682f4e027abeb5b458fed5477e2d0b
1 <html>
2 <body contenteditable="true"><div id="test"><a href="../resources/abe.png"><img style="display:block; margin:0px auto 10px; text-align:center;width: 60px; height: 60px;" src="../resources/abe.png" border="0"></a>
3 <br></div>
4 <ul id="console"></ul>
5 </body>
6 <script>
7 log("BEFORE: " + document.getElementById("test").innerHTML);
8 document.body.focus()
9 if (window.testRunner) {
10 testRunner.dumpAsText();
11 testRunner.execCommand("DeleteForward");
13 log("AFTER: " + document.getElementById("test").innerHTML);
14 function log(str) {
15 var li = document.createElement("li");
16 li.appendChild(document.createTextNode(str));
17 var console = document.getElementById("console");
18 console.appendChild(li);
20 </script>
21 </html>