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

Side by Side Diff: LayoutTests/editing/inserting/insert-html-crash-01.html

Issue 16053005: Avoid removing destination during moving paragrahs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 2013-07-11T15:13:49 Created 7 years, 5 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
« no previous file with comments | « no previous file | LayoutTests/editing/inserting/insert-html-crash-01-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <script src="../../fast/js/resources/js-test-pre.js"></script>
3 <div id="editable" contenteditable="true">
4 Foo
5 <div style="overflow:scroll;">
6 <div style="display:table"></div>
7 </div>
8 </div>
9 <script>
10 var editable = document.getElementById('editable');
11 editable.focus();
12 document.execCommand('SelectAll');
13 document.execCommand('InsertText', false, 'SUCCEEDED');
14 document.execCommand('SelectAll');
15 testPassed('Not crashed');
16 if (window.testRunner)
17 editable.outerHTML = '';
18 </script>
19 <script src="../../fast/js/resources/js-test-post.js"></script>
20 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/inserting/insert-html-crash-01-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698