Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-grid-layout / grid-add-positioned-block-item-after-inline-item.html
blob2e7a26d8acf53ad9073c5a07f8ebcbdd32ceb68a
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #grid {
6 display: grid;
7 grid-auto-flow: stack;
9 embed {
10 position: absolute;
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>