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

Unified Diff: third_party/WebKit/LayoutTests/editing/execCommand/outdent/outdent_nested_lists.html

Issue 2010323002: Convert execCommand/outdent-nested-lists-*.html to use w3c test harness (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 2016-05-27T13:22:16 Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/editing/execCommand/outdent/outdent_nested_lists.html
diff --git a/third_party/WebKit/LayoutTests/editing/execCommand/outdent/outdent_nested_lists.html b/third_party/WebKit/LayoutTests/editing/execCommand/outdent/outdent_nested_lists.html
new file mode 100644
index 0000000000000000000000000000000000000000..96628589d47612337618eb59973dca487f1260cc
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/editing/execCommand/outdent/outdent_nested_lists.html
@@ -0,0 +1,32 @@
+<!doctype html>
+<script src="../../../resources/testharness.js"></script>
+<script src="../../../resources/testharnessreport.js"></script>
+<script src="../../assert_selection.js"></script>
+<div id="log"></div>
+<script>
+test(() => {
+ assert_selection(
+ '<ol contenteditable><li>one</li><ol><li>two</li></ol><li>^three|</li><li>four</li></ol>',
yoichio 2016/05/30 02:30:50 |<ol><li>two</li></ol><li>^three|</li>| should be
yosin_UTC9 2016/05/31 01:42:32 Fixed.
+ 'Outdent',
+ '<ol contenteditable><li>one</li><ol><li>two</li></ol><li>^three|</li><li>four</li></ol>',
yoichio 2016/05/30 02:30:50 Could you "indent" these expect and input for read
yosin_UTC9 2016/05/31 01:42:32 Done. It helps me to debug test cases.
+ 'Nested list at two');
+
+ assert_selection(
+ '<ol contenteditable><ol><li>^one|</li></ol><li>two</li><li>three</li><li>four</li></ol>',
+ 'Outdent',
+ '<ol contenteditable><li>^one|</li><li>two</li><li>three</li><li>four</li></ol>',
+ 'Nested list at one');
+
+ assert_selection(
+ '<ol contenteditable><ol><li>one</li><li>^two|</li><li>three</li><li>four</li></ol></ol>',
+ 'Outdent',
+ '<ol contenteditable><ol><li>one</li></ol><li>^two|</li><ol><li>three</li><li>four</li></ol></ol>',
+ 'Nested list at one to four');
+
+ assert_selection(
+ '<ol contenteditable><ol><li>one</li><li>^two</li></ol><ul><li>three</li></ul><ol><li>four|</li></ol></ol>',
+ 'Outdent',
+ '<ol contenteditable><ol><li>one</li></ol><li>^two</li><li>three</li><li>four|</li></ol>',
+ 'Nested list at one to two, three(ul), four');
+});
+</script>

Powered by Google App Engine
This is Rietveld 408576698