blob: b39c7eaefacbf413793afc49a9a54983f6ce90d1 [file] [log] [blame] [edit]
<body onload="loadFunction()">
<hr>
<canvas>
</canvas>
<script>
if (window.testRunner)
window.testRunner.dumpAsText();
function loadFunction() {
if (document.counter)
document.counter++;
else
document.counter = 1;
if (document.counter <= 1) {
document.designMode='on';
document.execCommand('selectall');
document.execCommand('RemoveFormat');
document.execCommand('inserthtml', false);
}
}
</script>
</body>