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

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: Created 6 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
OLDNEW
(Empty)
1 <html id="html">
yosin_UTC9 2014/04/28 01:48:27 nit: Could you add "<!DOCTYPE html>" to make Blink
yoichio 2014/04/30 07:45:17 Done.
2 <head id="head">
3 <style>
4 * { display: -webkit-inline-box;}
5 .CLASS11 { float: right;}
6 </style>
7 <script>
8 if (window.testRunner)
9 testRunner.dumpAsText();
10
11 window.onload = function () {
12 document.designMode = "on";
yosin_UTC9 2014/04/28 01:48:27 nit: Could you use single quote for string literal
yoichio 2014/04/30 07:45:17 Done.
13 document.execCommand("SelectAll", false)
14 document.execCommand('Indent', false, false);
15 document.execCommand('Indent', false, false);
16 document.documentElement.innerHTML = "PASS. Blink didn't crash.";
17 };
18 </script>
19 </head>
20 <body>aaa<div class="CLASS11"></div><div>bbb</div></body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698