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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/block/positioning/complex-positioned-movement-inline.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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/block/positioning/complex-positioned-movement-inline-ancestor.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 .red {
4 position: absolute;
5 left:100px;
6 top:0;
7 width: 100px;
8 height: 100px;
9 background-color: red;
10 }
11 .block {
12 position: absolute;
13 left:0;
14 top:0;
15 width: 100px;
16 height: 100px;
17 background-color: green;
18 }
19 .relative-inline {
20 position:relative;
21 display: inline;
22 }
23 </style>
24 <p>crbug.com/517369: There should be no red. </p>
25 <div style="position: relative;">
26 <div class="red"></div>
27 <span class="relative-inline">
28 <div>
29 <span class="relative-inline">
30 <div class="block" id="inner"></div>
31 </span>
32 </div>
33 </span>
34 </div>
35 <script>
36 document.body.offsetLeft;
37 document.getElementById('inner').style.left = '100px';
38 </script>
39
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/block/positioning/complex-positioned-movement-inline-ancestor.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698