Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / contains-node-crash.html
blobef0c04e93af34a058a72216d71b5fe1b4055acda
1 <!DOCTYPE html>
2 <html style="display: inline-table">
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
7 window.onload = function() {
8 var selection = window.getSelection();
9 selection.selectAllChildren(document);
10 selection.collapseToEnd();
11 var element = document.activeElement;
12 document.open();
13 document.write("Pass. Test didn't crash.");
14 document.close();
15 selection.containsNode(element,true);
17 </script>
18 </html>