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

Side by Side Diff: LayoutTests/editing/pasteboard/paste-after-inline-style-element.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 <!DOCTYPE html>
2 <html>
3 <body>
4 <div id="test" contenteditable><blockquote type="cite"><b>line 1 <br></b>&nbsp;< /blockquote></div>
5 <script src="../../resources/dump-as-markup.js"></script>
6 <script>
7
8 Markup.description('This test ensures WebKit does not crash when pasting content immediately after an inline style element.\n'
9 + 'This test exhibits a bug. The inserted content should be on a separate line b ut it is not.');
10
11 window.getSelection().setPosition(document.getElementById('test').firstChild, 1) ;
12 document.execCommand('InsertHTML', false, '<blockquote type="cite">line 2</block quote>');
13
14 Markup.dump('test');
15
16 </script>
17 </body>
18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698