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

Side by Side Diff: LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote-4.html

Issue 13954003: Remove mail blockquote special case handling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <style>
4 blockquote {
5 color: blue;
6 border-left: 2px solid blue;
7 margin: 0px;
8 padding: 0 0 0 20px;
9 }
10 </style>
11 </head>
12
13 <body>
14 <p>This test passes if nothing is double-quoted, and "Two" and "Four" aren't quo ted at all.</p>
15 <div contenteditable="true"><blockquote type='cite' id="block">Paste<br>Here</bl ockquote></div>
16
17 <script>
18 var sel = window.getSelection();
19 var block = document.getElementById("block");
20
21 sel.setPosition(block, 3);
22 document.execCommand("InsertHTML", false, "<blockquote type='cite'>One</blockquo te>Two<blockquote type='cite'>Three</blockquote>Four");
23 </script>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698