Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / plugins / renderless-plugin-creation-doesnt-crash-without-frame.html
blob4a004cde02fc2bc45925f4494c8432117957383b
1 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText()
6 var docElement = document.documentElement;
8 function init()
10 embedElement = document.createElement("embed");
12 newDoc = document.implementation.createDocument("http://www.w3.org/2000/svg", null);
13 newDoc.adoptNode(embedElement);
14 embedElement.setAttribute("type", "application/x-webkit-test-netscape");
17 document.addEventListener("DOMContentLoaded", init, false);
19 </script>
21 Test added to address crash: http://crbug.com/360391<p>
23 This test tests to see if renderless plugin creation is possible;
24 previously it would have crashed due to the lack of a frame().