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

Side by Side Diff: LayoutTests/editing/inserting/5418891.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 <style>
2 blockquote {
3 color: blue;
4 border-left: 2px solid blue;
5 padding-left: 5px;
6 margin: 0px;
7 }
8 </style>
9 <p>This tests for a crash when attempting to break a blockquote at the end of it s content. The caret should be in the first of two empty paragraphs between two pieces of quoted content.</p>
10 <div contenteditable="true">
11 <blockquote type="cite"><div id="dv">foo</div></blockquote>
12 <br>
13 <blockquote type="cite"><div>bar</div></blockquote>
14 </div>
15
16 <script>
17 dv = document.getElementById("dv");
18 text = dv.firstChild;
19 s = window.getSelection();
20 s.setPosition(text, 3);
21 document.execCommand("InsertNewlineInQuotedContent");
22 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698