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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/execCommand/insert-list-and-strikethrough.html

Issue 2532873002: Get rid of wrong assumption in reconcileTextDecorationProperties() (Closed)
Patch Set: 2016-11-28T18:40:32 Created 4 years 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 | third_party/WebKit/Source/core/editing/EditingStyle.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 <!doctype html>
2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script>
4 <script src="../assert_selection.js"></script>
5 <script>
6 test(() => assert_selection(
7 [
8 '<div contenteditable>',
9 '<strike>^Female</strike>',
10 '<dl><strike>DT element</strike></dl>',
11 '<strike><br></strike>',
12 '<hr>|',
13 '</div>'
14 ].join(''),
15 'insertOrderedList',
16 [
17 '<div contenteditable>',
18 '<ol><li><strike>^Female</strike></li></ol>',
19 '<dl>',
20 '<ol>',
21 '<ul><strike>DT element</strike></ul>',
22 '<li><strike><br></strike></li>',
23 '<li><hr>|</li>',
24 '</ol>',
25 '</dl>',
26 '</div>'
27 ].join('')),
28 'insertOrderedList with STRIKE, DL, and HR');
29 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/EditingStyle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698