blob: 6d8343d742f9d260611a2142670d924e2f200af8 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="../../fast/js/resources/js-test-pre.js"></script>
<script id="script1">
document.addEventListener("DOMCharacterDataModified",function(){
document.body.innerHTML = "PASS. WebKit didn't crash.";
gc();
finishJSTest();
},true);
</script>
<script>
window.jsTestIsAsync = true;
if (window.testRunner)
testRunner.waitUntilDone();
var scriptElement = document.getElementById('script1');
scriptElement.parentNode.appendChild(scriptElement.firstChild);
scriptElement.parentNode.removeChild(scriptElement);
document.designMode = "on";
document.execCommand("SelectAll");
document.execCommand("FontSizeDelta", false, 3);
</script>
<script src="../../fast/js/resources/js-test-post.js"></script>
</body>
</html>