summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/dom/remove-style-element.html
blob: 5619075b17e95be0d8852f28d1a09c198dc03b56 (plain)
1
2
3
4
5
6
7
8
9
10
11
<div id="content"></div>
<script>
if (window.testRunner)
    testRunner.dumpAsText();

var content = document.getElementById("content");
document.getElementById("content").innerHTML = "<style>text</style>";
content.style.display = "none";
content.innerHTML = '';
</script>
<p>SUCCESS (you didn't crash!)</p>