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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/remove-anonymous-block-crash.html

Issue 2160723006: Ensure invalidation in LayoutBlockChildNode::removeChildNodes() without notifyLayoutObject (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust comment Created 4 years, 5 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 <div style="position: absolute" contenteditable>
3 Text
4 <li id="li">Text</li>
5 <p>
6 </div>
7 <script>
8 if (window.testRunner) {
9 testRunner.dumpAsText();
10 testRunner.waitUntilDone();
11 }
12
13 window.getSelection().collapse(document.getElementById("li"));
14 document.execCommand("InsertUnorderedList");
15
16 setTimeout(function() {
17 document.execCommand("JustifyRight");
18 if (window.testRunner)
19 testRunner.notifyDone();
20 }, 0);
21 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698