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

Side by Side Diff: LayoutTests/editing/execCommand/indent-table-cell-crash.html

Issue 306473003: Don't over split DOM tree in CompositeEditCommand::splitTreeToNode (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2014-05-27T01:56:21 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <head>
3 <style>
4 hr { display: table-cell; }
5 </style>
6 <script>
7 if (window.testRunner)
8 testRunner.dumpAsText();
9
10 onload = function() {
11 document.designMode = 'on';
Yuta Kitamura 2014/05/27 07:41:27 nit: Please use 4-space indent.
yosin_UTC9 2014/05/27 09:30:06 Done.
12 document.execCommand('SelectAll');
13 document.execCommand('Indent');
14 document.body.textContent = 'PASS if Blink doesn\'t crash.';
15 };
16 </script>
17 </head>
18 <body>
19 before<hr><hr>after
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698