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

Side by Side Diff: LayoutTests/editing/execCommand/crash-object-cloning.html

Issue 698113005: The ASSERT in appendNode() should not fire when OBJECTS are cloned. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make test async Created 6 years 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/crash-object-cloning-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>
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpAsText();
6 window.jsTestAsync = true;
7 testRunner.waitUntilDone();
8 }
9
10 window.onload = function() {
11 document.execCommand("SelectAll");
12 document.execCommand("Indent");
13 if (window.testRunner)
14 setTimeout(function() { testRunner.notifyDone(); }, 0);
yosin_UTC9 2014/12/03 01:10:32 Why do we need to call |notifyDone()| in |setTimeo
15 }
16 </script>
17 <body contenteditable>
18 <object>
19 This test passes if it doesn't crash
20 </object>
21 </body>
22 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/execCommand/crash-object-cloning-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698