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

Side by Side Diff: LayoutTests/fast/css/counters/remove-anonymous-block-wrapper-crash.html

Issue 1143323011: Notify the counter code about layout object removals BEFORE removing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/fast/css/counters/remove-anonymous-block-wrapper-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 <style>
3 #e0::after {
4 position: absolute;
5 content: counter(c);
6 }
7 </style>
8 <p>Remove a block child, so that its parent block no longer needs to wrap inline children inside an anonymous block.</p>
9 <p>PASS if no crash or assertion failure.</p>
10 <div>
11 <div id="e0" style="display:inline-block;">
12 <div></div>
13 </div>
14 <div id="e1"></div>
15 </div>
16 <script>
17 if (window.testRunner)
18 testRunner.dumpAsText();
19 document.body.offsetTop;
20 e1.style.display = "none";
21 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/counters/remove-anonymous-block-wrapper-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698