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

Side by Side Diff: LayoutTests/editing/execCommand/indent-nested-blockquotes-crash.html

Issue 251723003: Check the traversal state in CompositeEditCommand::cloneParagraphUnderNewElement (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update test Created 6 years, 7 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
« no previous file with comments | « no previous file | LayoutTests/editing/execCommand/indent-nested-blockquotes-crash-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>
2 <html id="html">
Yuta Kitamura 2014/04/30 08:42:03 Is this ID necessary?
yoichio 2014/04/30 08:56:08 Done.
3 <head id="head">
Yuta Kitamura 2014/04/30 08:42:03 Ditto.
yoichio 2014/04/30 08:56:08 Done.
4 <style>
5 * { display: -webkit-inline-box;}
Yuta Kitamura 2014/04/30 08:42:03 nit: Insert a space after semicolon.
yoichio 2014/04/30 08:56:08 Done.
6 .CLASS11 { float: right;}
Yuta Kitamura 2014/04/30 08:42:03 Ditto.
yoichio 2014/04/30 08:56:08 Done.
7 </style>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
11
12 window.onload = function () {
13 document.designMode = 'on';
14 document.execCommand('SelectAll', false)
15 document.execCommand('Indent', false, false);
16 document.execCommand('Indent', false, false);
17 document.documentElement.innerHTML = 'PASS. Blink didn\'t crash.';
18 };
19 </script>
20 </head>
21 <body>aaa<div class="CLASS11"></div><div>bbb</div></body>
22 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/execCommand/indent-nested-blockquotes-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698