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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/execCommand/indent_at_end_of_paragraph.html

Issue 2267363005: Convert editing/execCommand/4641880-2.html to use w3c test harness (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 2016-08-24T17:39:32 Created 4 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
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 '^This paragraph should be indented.<br>|',
10 'This paragraph should not be indented.<br>',
11 '</div>',
12 ].join(''),
13 'indent',
14 [
15 '<div contenteditable>',
16 '<blockquote style="margin: 0 0 0 40px; border: none; padding: 0 px;">',
17 '^This paragraph should be indented.|',
18 '</blockquote>',
19 'This paragraph should not be indented.<br>',
20 '</div>',
21 ].join('')),
22 'Indent on a selection that ends at the start of a paragraph.');
23 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698