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

Side by Side Diff: LayoutTests/editing/execCommand/break-non-editable-blockquote.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 <blockquote type="cite">
5 <div id="test" contenteditable><blockquote type="cite">hello world</blockquote>< /div>
6 </blockquote>
7 <script src="../../resources/dump-as-markup.js"></script>
8 <script>
9
10 var test = document.getElementById('test');
11 window.getSelection().setPosition(test.firstChild.firstChild, 5);
12 document.execCommand('InsertNewlineInQuotedContent', false, null);
13
14 Markup.description('This test ensures WebKit properly inserts newline in quoted contents, which is enclosed by a non-editable blockquote.');
15 Markup.dump(test);
16
17 </script>
18 </body>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698