Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / Range / create-contextual-fragment-from-bodyless-xml-document-range.html
blob28750e2cd6bc27fe42d7ae999af0461cfe6353e7
1 <!DOCTYPE html>
2 <p>Test of createContextualFragment from a Range whose context is an XML document without a body. If the test succeeds you will see the word "PASS" below.</p>
3 <p id="result"></p>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
8 var xmlDocument = document.implementation.createDocument('http://foo.com', 'root');
9 var xmlRoot = xmlDocument.firstElementChild;
10 xmlDocument.removeChild(xmlRoot);
12 var range = xmlDocument.createRange();
14 var thrownException = null;
15 try {
16 var fragment = range.createContextualFragment('<p id="fragment">Inserted fragment</p>');
17 } catch (e) {
18 thrownException = e;
21 var result = document.getElementById('result');
22 result.textContent = (thrownException && thrownException.message === "Failed to execute 'createContextualFragment' on 'Range': The range's container must be an HTML or SVG Element, Document, or DocumentFragment.") ? 'PASS' : 'FAIL';
23 </script>