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

Side by Side Diff: LayoutTests/editing/execCommand/resources/window-open-insert-list-crash-iframe.html

Issue 176863002: Fix null pointer dereference in CompositeEditCommand::moveParagraphs(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rename test. Created 6 years, 10 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/execCommand/window-open-insert-list-crash.html » ('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 <script>
2 document.addEventListener("DOMSubtreeModified",
3 function () {
4 document.designMode = "on";
5 document.execCommand("SelectAll");
6 window.stop();
7 document.execCommand("InsertOrderedList", false);
8 window.setTimeout(notifyFinish, 0);
9 }, true);
10
11 window.onload = function () {
12 document.open();
13 };
14
15 function notifyFinish()
16 {
17 window.parent.postMessage("FINISH", "*");
18 }
19 </script>
20 <iframe>
21 </iframe><body class="class2">
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/execCommand/window-open-insert-list-crash.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698