summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/editing/execCommand/list-wrapping-image-crash.html
blob: 2414d7e8137ee35745d3e7fde83acecb0a4ed5c4 (plain)
1
2
3
4
5
6
7
8
9
10
<body>
<script>
if (window.testRunner)
    testRunner.dumpAsText();
document.designMode = "on";
document.execCommand('selectall');
document.execCommand('insertimage');
document.execCommand('insertorderedlist');
document.body.innerHTML = "PASSED - this test case didn't ASSERT, bug 19066";
</script>