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

Side by Side Diff: LayoutTests/fast/dynamic/static-to-relative-with-absolute-child.html

Issue 254573006: Avoid markDirty when removing out-of-flow line boxes. (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
« no previous file with comments | « no previous file | LayoutTests/fast/dynamic/static-to-relative-with-absolute-child-expected.html » ('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 #inner {
4 position: absolute
5 }
6 </style>
7 <p>You should see the a green 'PASS' below.</p>
8 <span id="outer">&nbsp;<br>PASS<span id="inner"></span></span>
9 <script>
10 window.onload = function() {
11 var style = document.getElementById("outer").style;
12 document.body.offsetTop;
13 style.position = "relative";
14 document.body.offsetTop;
15 style.color = "green";
16 }
17 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dynamic/static-to-relative-with-absolute-child-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698