Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / pasteboard / 5245519.html
blob7012701d6b7a4556368ce54ef26f92277b867148
1 <div id="description">This tests for a crash when pasting content that contains Apple-style-spans that don't have renderers.' You should see 'Hello World!'</div>
2 <div id="edit" contenteditable="true"><br></div>
4 <script>
5 edit = document.getElementById("edit");
6 description = document.getElementById("description");
7 edit.focus();
8 document.execCommand("InsertHTML", false, "Hello <span style='display:none;' class='Apple-style-span'></span>World!");
9 if (window.testRunner) {
10 window.testRunner.dumpAsText();
11 document.body.innerText = description.innerText + "\n" + edit.innerHTML;
13 </script>