blob: c9161374c9e3ccd79a144b42976ee65177877ed2 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
* {
visibility: visible;
}
*:only-of-type {
visibility: collapse;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
onload = function() {
document.designMode = 'on';
var blockQuote = document.querySelector('blockquote');
getSelection().collapse(blockQuote, 2);
document.execCommand('Outdent');
document.documentElement.textContent = 'PASS if Blink doesn\'t crash.';
};
</script>
</head>
<body>
<blockquote>
<table><tr><td>foo</td></tr></table>
<table><tr><td>bar</td></tr></table>
</blockquote>
</body>
</html>