summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/parser/resources/xhtml-overwrite-frame.xhtml
blob: 75e7c09174bf7894f87a63d5f90d66758c8a14d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<html xmlns="http://www.w3.org/1999/xhtml">
<script>
function overwrite() {
    var testRunner = window.parent.testRunner;
    window.frameElement.outerHTML = "PASS (no crash)";
    if (testRunner)
        testRunner.notifyDone();
}

document.addEventListener("DOMCharacterDataModified", overwrite);
</script>
</html>