Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / style / 5279521.html
blob17a70794407516a87118123eae557f7a8124efb4
1 <div id="div" contenteditable="true"><img src="../resources/abe.png">
2 <div>This tests for a crash when changing the alignment of content that starts with an image not inside its own block container.</div></div>
4 <script>
5 var div = document.getElementById("div");
6 div.focus();
7 document.execCommand("SelectAll");
8 document.execCommand("JustifyRight");
9 </script>