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

Side by Side Diff: LayoutTests/editing/deleting/merge-list-items-in-same-list.html

Issue 242733004: canMergeLists() should make sure that the list items do not belong to the same list (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Review comments incorporated Created 6 years, 7 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
« no previous file with comments | « no previous file | LayoutTests/editing/deleting/merge-list-items-in-same-list-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <div>
5 <ul contenteditable><li>one</li><li></li><li id="li">three</li></ul>
6 </div>
7 <script src="../../resources/dump-as-markup.js"></script>
8 <script>
9 var li = document.getElementById('li');
10 var selection = window.getSelection();
11 selection.collapse(li, 0);
12 document.execCommand('Delete');
13 Markup.dump(document.querySelector('div'));
14 </script>
15 </body>
16 </html>
17
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/deleting/merge-list-items-in-same-list-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698