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

Unified Diff: third_party/WebKit/LayoutTests/editing/inserting/insert_between_block_quote.html

Issue 2280533003: Convert editing/insert-3778059-fix.html to use w3c test harness (Closed)
Patch Set: 2016-08-25T16:00:04 Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/editing/inserting/insert_between_block_quote.html
diff --git a/third_party/WebKit/LayoutTests/editing/inserting/insert-div-019.html b/third_party/WebKit/LayoutTests/editing/inserting/insert_between_block_quote.html
similarity index 58%
copy from third_party/WebKit/LayoutTests/editing/inserting/insert-div-019.html
copy to third_party/WebKit/LayoutTests/editing/inserting/insert_between_block_quote.html
index 99f8a5c82a6650ac9e45dab2792a256df65f4ea3..29cf6115e22ac9065975d891c98c4a08ac1e407f 100644
--- a/third_party/WebKit/LayoutTests/editing/inserting/insert-div-019.html
+++ b/third_party/WebKit/LayoutTests/editing/inserting/insert_between_block_quote.html
@@ -2,23 +2,23 @@
<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(
[
'<div contenteditable>',
- '<p>foo</p>',
+ '<blockquote>foo</blockquote>',
'|<br>',
- '<p>bar</p>',
+ '<blockquote>bar</blockquote>',
'</div>',
].join(''),
- 'insertParagraph',
+ 'insertText baz',
[
'<div contenteditable>',
- '<p>foo</p>',
- '<div><br></div>',
- '|<br>',
- '<p>bar</p>',
+ '<blockquote>foo</blockquote>',
+ 'baz|<br>',
+ '<blockquote>bar</blockquote>',
'</div>',
].join('')),
- 'insert DIV+BR before BR');
+ 'insert text betwen BLOCKQUOTE');
</script>

Powered by Google App Engine
This is Rietveld 408576698