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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/inline/add-abspos-before-block-inside-inline.html

Issue 2698243002: Add out-of-flow objects under the inline in a continuation chain, when possible. (Closed)
Patch Set: cleanup Created 3 years, 10 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 | third_party/WebKit/LayoutTests/fast/inline/add-abspos-before-block-inside-inline-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 #container { overflow:hidden; width:40px; height:40px; background:red; }
4 #abspos { position:absolute; display:none; width:40px; height:20px; backgrou nd:green; }
5 #sibling { margin-top:20px; width:40px; height:20px; background:green; }
6 </style>
7 <p>There should be a green square below, and no red.</p>
8 <div id="container">
9 <span>
10 <div id="abspos"></div><div id="sibling"></div>
11 </span>
12 </div>
13 <script>
14 document.body.offsetTop;
15 abspos.style.display = "block";
16 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/inline/add-abspos-before-block-inside-inline-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698