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

Unified Diff: LayoutTests/editing/pasteboard/paste-at-end-of-node-followed-by-inline-element.html

Issue 217003006: Remove carriage returns from LayoutTests (01) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix caret-and-focus-ring Created 6 years, 9 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: LayoutTests/editing/pasteboard/paste-at-end-of-node-followed-by-inline-element.html
diff --git a/LayoutTests/editing/pasteboard/paste-at-end-of-node-followed-by-inline-element.html b/LayoutTests/editing/pasteboard/paste-at-end-of-node-followed-by-inline-element.html
index 1a63cec768ddc8e6d7307919ba18ae711fad1d3b..2ae374e344b6a13c958d6fddbdc99d94aad181f7 100644
--- a/LayoutTests/editing/pasteboard/paste-at-end-of-node-followed-by-inline-element.html
+++ b/LayoutTests/editing/pasteboard/paste-at-end-of-node-followed-by-inline-element.html
@@ -1,20 +1,20 @@
-<!DOCTYPE html>
-<html>
-<body>
-<p id="description">This tests inserting a text in the middle of a text node. You should see "1 Two 3" below.</p>
-<pre id="test" contentEditable="true" style="border:1px solid black">
-<b>1 <i>2 3</i></b>
-</pre>
-<script src="../../resources/dump-as-markup.js"></script>
-<script>
-getSelection().selectAllChildren(document.querySelector('i'));
-var text = document.querySelector('i').firstChild;
-getSelection().setBaseAndExtent(text, 0, text, 1);
-document.execCommand('InsertHtml', false, 'Two');
-
-Markup.description(document.getElementById('description').textContent);
-Markup.dump('test');
-
-</script>
-</body>
-</html>
+<!DOCTYPE html>
+<html>
+<body>
+<p id="description">This tests inserting a text in the middle of a text node. You should see "1 Two 3" below.</p>
+<pre id="test" contentEditable="true" style="border:1px solid black">
+<b>1 <i>2 3</i></b>
+</pre>
+<script src="../../resources/dump-as-markup.js"></script>
+<script>
+getSelection().selectAllChildren(document.querySelector('i'));
+var text = document.querySelector('i').firstChild;
+getSelection().setBaseAndExtent(text, 0, text, 1);
+document.execCommand('InsertHtml', false, 'Two');
+
+Markup.description(document.getElementById('description').textContent);
+Markup.dump('test');
+
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698