blob: 95fe73d6ae5a8d0471d5619098e409bf513f62ca [file] [log] [blame]
<style>
body {
writing-mode: vertical-rl;
block-size: 0;
}
div {
column-span: all;
}
:nth-child(2) {
float: left;
}
:read-only {
overflow-y: -webkit-paged-y;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
onload = () => {
document.documentElement.appendChild(document.createElement('span'));
document.documentElement.appendChild(document.createElement('div'));
document.body.appendChild(document.createElement('div'));
document.execCommand('SelectAll');
document.designMode = 'on';
document.execCommand('InsertHorizontalRule');
};
</script>
PASS if no crash or assert.