summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-grid/bug1306106.html
blob: 7bc6ce7778e5df5c56205067d2ed14e5d5f273ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE HTML>
<html><head>
    <meta charset="utf-8">
    <title>Table grid item bug</title>
</head>
<body>

<pre>You should see "A B" below:</pre>

<div style="display:grid; grid: 50px / 50px 50px">
<div style="display:table">B</div>
<div style="display:table; grid-area:1/1">A</div>
</div>

</body>
</html>