blob: 8d43a054a14994291dc737c0cdfc912b6f06e3b7 [file] [log] [blame]
<!doctype html>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<script src="../../assert_selection.js"></script>
<div id="log"></div>
<script>
test(() => {
assert_selection(
[
'|<legend style="all: initial">foo</legend>',
'<details style="display: inline"></details>',
'<textarea></textarea>',
].join(''),
selection => {
selection.document.execCommand('selectAll');
selection.document.designMode = 'on';
},
[
'<legend style="all: initial">^foo|</legend>',
'<details style="display: inline"></details>',
'<textarea></textarea>',
].join(''));
}, 'selectAll on DETAILS should not crash');
</script>