summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/parser/foreign-content-crash.html
blob: 43d9fddc1c430b094532a4002ee5ff15496414f0 (plain)
1
2
3
4
5
6
7
8
<script>
    var svgElement = document.createElementNS("http://www.w3.org/2000/svg", "svg");
    svgElement.appendChild(document.createElement("div")).insertAdjacentHTML("beforeBegin", "</p>");

    if (window.testRunner)
        testRunner.dumpAsText();
</script>
<p>This test passes if it doesn't crash.</p>