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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/block/positioning/complex-positioned-movement-inline-expected.html

Issue 1323313004: Don't re-implement containing block logic when marking container chains for layout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .block {
4 position: absolute;
5 left:100px;
6 top:0;
7 width: 100px;
8 height: 100px;
9 background-color: green;
10 }
11 .relative-inline {
12 position:relative;
13 display: inline;
14 }
15 </style>
16 <p>crbug.com/517369: There should be no red. </p>
17 <div style="position: relative;">
18 <span class="relative-inline">
19 <div>
20 <span class="relative-inline">
21 <div class="block" id="inner"></div>
22 </span>
23 </div>
24 </span>
25 </div>
26
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698