no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / css-grid / grid-fragmentation-013-ref.html
blob4db144aff2786b89a2f0868d661fc2ed4dd3c973
1 <!DOCTYPE HTML>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <html lang="en-US" class="reftest-paged"><head>
7 <meta charset="utf-8">
8 <title>Reference: Fragmentation in print context of height:auto grid, item break-inside:avoid</title>
9 <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1144096">
10 <style type="text/css">
11 @page { size:5in 3in; margin:0.5in; }
12 html,body {
13 color:black; background-color:white; font-size:16px; padding:0; margin:0;
16 .grid {
17 display: grid;
18 height: 1in;
19 border: 0.1in solid;
21 .col {
22 height: 0;
23 width: 0.6in;
25 .col > div {
26 height: 1in;
27 position: relative;
28 background: lime;
29 border: 0.05in solid black;
31 </style>
32 </head>
33 <body>
35 <div style="padding-top:1in; background:grey">
36 <div class="grid">
37 <div class="col"><div></div></div>
38 </div>
39 </div>
41 <div style="padding-top:1in; background:grey;">
42 <div class="grid">
43 <div class="col"><div></div></div>
44 </div>
45 </div>
47 </body>
48 </html>