Bug 1919083 - [ci] Enable os-integration variant for more suites, r=jmaher
[gecko.git] / layout / reftests / forms / display-block-baselines-2.html
blob78253fe4c2a3e6eaa702b80d0157e408406a01c9
1 <!DOCTYPE HTML>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <html><head>
7 <meta charset="utf-8">
8 <title>Testcase #2 for bug 1330962</title>
9 <style type="text/css">
10 html,body {
11 color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
13 * { font:16px/1 monospace; }
15 .block { display: block; }
16 .grid { display: grid; }
18 .no-theme {
19 -moz-appearance: none;
20 -webkit-appearance: none;
21 appearance: none;
22 padding: 20px 0;
23 border: none;
24 background: white;
25 color: black;
26 text-align: start;
29 .scroll {
30 overflow-y: scroll;
33 .no-scroll {
34 overflow: visible;
37 </style>
38 </head>
39 <body>
41 <div>
42 <div style="display:inline-block">
44 <input class="block" type="button" value="button">
45 </div>
47 </div>
49 <div>
50 <div style="display:inline-block">
52 <button class="block">button</button>
53 </div>
55 </div>
57 <div>
58 <div style="display:inline-block">
60 <input class="block no-theme" type="button" value="button">
61 </div>
63 </div>
65 <div>
66 <div style="display:inline-block">
68 <button class="block no-theme">button-first<div style="font-size:10px">button-last</div></button>
69 </div>
71 <button class="no-theme">button-first<div style="font-size:10px">button-last</div></button>
72 </div>
74 <div>
75 <div style="display:inline-block">
77 <button class="grid no-theme">button-first<x style="font-size:10px">button-last</x></button>
78 </div>
80 <button class="no-theme" style="display:inline-grid">button-first<x style="font-size:10px">button-last</x></button>
81 </div>
83 <div>
84 <div style="display:inline-block">
86 <input type="checkbox" class="block" checked>
87 </div>
89 </div>
91 <div>
92 <div style="display:inline-block">
94 <input type="radio" class="block" checked>
95 </div>
97 </div>
99 </body>
100 </html>