Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / editable-non-editable-crash.html
blob1ff05da96988e79c065f66fd8391ebaab51ec9da
1 <head>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpEditingCallbacks();
5 </script>
6 <style>
7 table, td {
8 border: 1px solid #aaa;
10 </style></head>
11 <body>
12 <div contenteditable="true"><table style="border: 1px solid #aaa" id="base"><tr><td id="extent" contenteditable="false">This tests for a Mail crasher that happened when a selection was created with one endpoint in non-editable content and the other in editable content.</td></tr></table></div>
14 <script>
15 var s = window.getSelection();
16 var b = document.getElementById("base");
17 var e = document.getElementById("extent");
18 s.setBaseAndExtent(b, 0, e, 0);
19 </script>
20 </body>