blob: 36fe3cc125fb337b28a9eda0c82dbad27d6010f2 [file] [edit]
<!DOCTYPE html>
<html>
<head>
<script>
function runTest()
{
if (window.testRunner)
testRunner.dumpAsText();
getSelection().setBaseAndExtent(span, 0, span, 1);
document.execCommand("delete", false);
document.write("Test passes if no crashes with asan.")
}
</script>
</head>
<body onload="runTest()">
<li contenteditable="">
<basefont>
<progress contenteditable="false">
<span id="span">content</span>
</progress>
</li>
</body>
</html>