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

Side by Side Diff: LayoutTests/editing/execCommand/insert-list-infinite-loop2.html

Issue 1285103002: [Editing] Make loop condition in insertOrderedList::doApply strict. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update Created 5 years, 4 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 | Source/core/editing/commands/InsertListCommand.cpp » ('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 <script src="../../resources/testharness.js"></script>
yosin_UTC9 2015/08/19 07:10:32 We prefer having <!DOCTYPE html> to use strict mod
yoichio 2015/08/20 06:31:10 Done.
2 <script src="../../resources/testharnessreport.js"></script>
3 <body contenteditable="true">
yosin_UTC9 2015/08/19 07:10:32 Can we move contenteditable="true" to "table"? Or,
yoichio 2015/08/20 06:31:10 Done.
4 <div id="log"></div>
5 <table><tbody><tr><td>
6 <table ><tbody><tr><td >
7 <ol id="ol"><li >wwwzip<br><br></li><li><br></li><li>Run<br>wine</li></ ol>
8 </td></tr></tbody></table>
9 Fixed Width<div style="-webkit-user-select: none;"></div><div style="display : inline-block; border:solid ; "></div>
yosin_UTC9 2015/08/19 07:10:32 nit: we don't need to have spaces around ";".
yoichio 2015/08/20 06:31:10 Done.
10 </td></tr></tbody></table>
11 <script>
12 test(function () {
13 getSelection().selectAllChildren(ol);
14 document.execCommand('insertOrderedList');
15 });
16 </script>
17 </body>
OLDNEW
« no previous file with comments | « no previous file | Source/core/editing/commands/InsertListCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698