Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(263)

Side by Side Diff: LayoutTests/editing/deleting/delete-br-after-image.html

Issue 18799004: Don't insert redundant BR for merging (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 2013-09-05T16:10:37 Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <body>
2 <div id="container">
3 <div contenteditable="true" id="work">
4 <span id="sample"><img width="70" height="70" style="background: #DEF"><br>[clic k here, hold backspace]</span>
5 </div>
6 </div>
7 </div>
8 <script src="../../fast/js/resources/js-test-pre.js"></script>
9 <script>
10 function $(id) { return document.getElementById(id); }
11
12 var range = document.createRange();
13 range.setStartAfter($('work').querySelector('br'));
14 var selection = window.getSelection();
15 selection.removeAllRanges();
16 selection.addRange(range);
17 document.execCommand('Delete');
18 shouldBeEqualToString('$("sample").innerHTML', '<img width="70" height="70" styl e="background: #DEF">[click here, hold backspace]');
19 shouldBeEqualToString('selection.type', 'Caret');
20 shouldBe('selection.anchorNode', '$("sample")');
21 shouldBe('selection.anchorOffset', '1');
22 if (window.testRunner)
23 $('container').outerHTML = '';
24 </script>
25 <script src="../../fast/js/resources/js-test-post.js"></script>
26 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698