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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-add-positioned-block-item-after-inline-item.html

Issue 450783002: [CSS Grid Layout] Ignore positioned block item added after inline (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing Created 6 years, 3 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/css-grid-layout/grid-add-positioned-block-item-after-inline-item-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 <head>
4 <style>
5 #grid {
6 display: grid;
7 grid-auto-flow: stack;
8 }
9 embed {
10 position: absolute;
11 }
12 </style>
13 <script type="text/javascript">
14 if (window.testRunner)
15 testRunner.dumpAsText();
16 </script>
17 </head>
18 <body>
19 <p>This test checks that adding a positioned block grid item after an inline grid item (which inserts it inside the
20 existing anonymous block wrapping the inline item) does not crash on debug.< /p>
21 <div id="grid">
22 test
23 </div>
24 <script>
25 var grid = document.getElementById("grid");
26 grid.offsetTop;
27 var embed = document.createElement("embed");
28 grid.appendChild(embed);
29 </script>
30 </body>
31 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/grid-add-positioned-block-item-after-inline-item-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698