Bug 1874684 - Part 17: Fix uninitialised variable warnings from clang-tidy. r=allstarschh
[gecko.git] / layout / reftests / pagination / inline-block-slice-6c.html
blob425e25936f97a034841d69848845aa04c4a1b4c5
1 <!DOCTYPE html>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <html class="reftest-paged">
7 <head>
8 <style>
9 @page {
10 size: 5in 3in;
11 margin: 0.5in;
13 @font-face {
14 font-family: Ahem;
15 src: url(../fonts/Ahem.ttf);
18 html,body {
19 color:black; background-color:white; font:20px/1 Ahem; padding:0; margin:0;
21 html { block-size: 40vw; writing-mode: vertical-rl; }
23 .ib {
24 display: inline-block;
25 inline-size: 50vh;
26 block-size: 210vw;
27 vertical-align: top;
28 border: 5px solid black;
29 border-block-start-color: blue;
30 border-inline-start-color: lime;
33 .after {
34 display: block;
35 inline-size: 60vh;
36 block-size: 10vw;
37 border: 5px dashed grey;
38 background-color: grey;
40 </style>
41 </head>
42 <body>
43 X<div class="ib"></div>p
44 <div class="after"></div>
45 </body>
46 </html>