Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / deleting / delete-across-editable-content-boundaries-2.html
blob97222ba2d4dcb843199c7fa9a7864d5dd8be55bb
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <p id="description">This tests to see that selected non-editable nodes that are not in both the start and end editable root are preserved during a deletion. You should see two 'Non-editable' pieces on either side of the editable piece below. &lt;radr://problem/5026848&gt;</p>
5 <div id="div" contenteditable="true">
6 <table contenteditable="false">
7 <tr>
8 <td>Non-editable</td>
9 <td contenteditable="true">Editable <span id="start">content</span></td>
10 <td>Non-editable</td>
11 </tr>
12 </table>
13 Editable <span id="end">content</span>
14 </div>
16 <script src="../../resources/dump-as-markup.js"></script>
17 <script>
18 var sel = window.getSelection();
19 var start = document.getElementById("start");
20 var end = document.getElementById("end");
21 sel.setBaseAndExtent(start, 0, end, 0);
22 document.execCommand("Delete");
23 Markup.description(description.textContent);
24 Markup.dump("div");
25 </script>
27 </body>
28 </html>