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

Side by Side Diff: LayoutTests/editing/execCommand/crash-issue-338542.html

Issue 176863002: Fix null pointer dereference in CompositeEditCommand::moveParagraphs(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/crash-issue-338542-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 <!DOCTYPE html>
tkent 2014/02/24 03:39:37 The name 'crash-issue-338542' isn't helpful. 'win
Yuta Kitamura 2014/02/24 06:00:42 To tell the truth I didn't think of a good name; t
2 <html>
3 <head>
4 <title>Crash issue 338542</title>
5 <script src="../../resources/js-test.js"></script>
6 </head>
7 <body>
8 <script>
9 description('Should not crash if we load a test case from crbug.com/338542.');
10
11 window.jsTestIsAsync = true;
12
13 window.addEventListener('message', didReceiveMessage, false);
14
15 var iframe = document.createElement('iframe');
16 iframe.src = 'resources/crash-issue-338542-iframe.html';
17 document.body.appendChild(iframe);
18
19 function didReceiveMessage(event)
20 {
21 shouldBeEqualToString('event.data', 'FINISH');
22 document.body.removeChild(iframe);
23 testPassed('Did not crash.');
24 window.finishJSTest();
25 }
26 </script>
27 </body>
28 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/execCommand/crash-issue-338542-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698