Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / indent-with-uneditable-crash.html
blob40e22d093ccbf650f6fbc10ccc0e38dbea71ac17
1 <div contenteditable=true><span contenteditable=false></span><b></b>ABC<span id="sample"></span></div>
2 <script>
3 var sample = document.getElementById('sample');
4 window.getSelection().collapse(sample, sample.childNodes.length);
5 document.execCommand("Indent");
6 document.body.textContent = 'PASS; NOT CRASHED';
7 if (window.testRunner)
8 testRunner.dumpAsText();
9 </script>