haikuwebkit/LayoutTests/editing/execCommand/null-style-crash.html

25 lines
581 B
HTML

<!DOCTYPE html>
<html>
<body>
<table>
<tr>
<td contenteditable="plaintext-only">171</td>
</tr>
</table>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
document.designMode = "on";
document.execCommand("SelectAll");
document.execCommand("CreateLink", true, 'www.google.com');
document.body.innerHTML = "PASS. WebKit didn't crash";
if (window.testRunner)
testRunner.notifyDone();
</script>
</body>
</html>