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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/deleting/merge_into_empty_block.html

Issue 2451983002: Convert editing/deleting/merge-into-empty-block-[12].html to utilize w3c test harness (Closed)
Patch Set: 2016-10-26T14:01:59 Created 4 years, 1 month 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 | « third_party/WebKit/LayoutTests/editing/deleting/merge-into-empty-block-2-expected.txt ('k') | no next file » | 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 '<div contenteditable><div><br></div><blockquote>|foo</blockquote></div>',
8 'delete',
9 '<div contenteditable><blockquote>|foo</blockquote></div>'),
10 'Hit backspace at beginning of BLOCKQUOTE');
11
12 test(() => assert_selection(
13 '<div contenteditable><div><br></div><ul><li>|foo</li></ul></div>',
14 'delete',
15 '<div contenteditable><ul><li>|foo</li></ul></div>'),
16 'Hit backspace at beginning of LI');
17 </script>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/editing/deleting/merge-into-empty-block-2-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698