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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-positioned-items-implicit-grid.html

Issue 769683004: [CSS Grid Layout] Fix crash in positioned items placed on implicit grid (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added comment Created 6 years 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/css-grid-layout/grid-positioned-items-implicit-grid-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 <html>
3 <link href="resources/grid.css" rel="stylesheet">
4 <style>
5
6 .grid {
7 width: 200px;
8 height: 200px;
9 border: 5px solid black;
10 margin: 30px;
11 padding: 15px;
12 /* Ensures that the grid container is the containing block of the absolutely positioned grid children. */
13 position: relative;
14 }
15
16 .grid-columns-rows {
17 grid-template-columns: 100px;
18 grid-template-rows: 50px;
19 }
20
21 .absolute {
22 position: absolute;
23 }
24
25 </style>
26 <script src="../../resources/check-layout.js"></script>
27 <body onload="checkLayout('.grid')">
28
29 <p>This test checks the behavior of the absolutely positioned grid items placed on the implicit grid.</p>
30
31 <div class="grid">
32 <div class="sizedToGridArea absolute secondRowSecondColumn"
33 data-offset-x="15" data-offset-y="15" data-expected-width="215" data-exp ected-height="215">
34 </div>
35 <div class="sizedToGridArea absolute endSecondRowEndSecondColumn"
36 data-offset-x="15" data-offset-y="15" data-expected-width="15" data-expe cted-height="15">
37 </div>
38 <div class="sizedToGridArea absolute onlySecondRowOnlySecondColumn"
39 data-offset-x="15" data-offset-y="15" data-expected-width="0" data-expec ted-height="0">
40 </div>
41 </div>
42
43 <div class="grid grid-columns-rows">
44 <div class="sizedToGridArea absolute secondRowSecondColumn"
45 data-offset-x="115" data-offset-y="65" data-expected-width="115" data-ex pected-height="165">
46 </div>
47 <div class="sizedToGridArea absolute endSecondRowEndSecondColumn"
48 data-offset-x="15" data-offset-y="15" data-expected-width="115" data-exp ected-height="65">
49 </div>
50 <div class="sizedToGridArea absolute onlySecondRowOnlySecondColumn"
51 data-offset-x="115" data-offset-y="65" data-expected-width="0" data-expe cted-height="0">
52 </div>
53 </div>
54
55 </body>
56 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/grid-positioned-items-implicit-grid-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698