[CSS container Queries] Include container queries in RuleSets
[webkit.git] / LayoutTests / imported / w3c / web-platform-tests / css / css-contain / contain-size-select-elem-001-ref.html
blob095b2f0ba58cda3b53d631a9811c7fbd943a1eab
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>CSS Reftest Reference</title>
6 <link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu">
7 <style>
8 select {
9 color: transparent;
11 .minWidth {
12 min-width: 100px;
14 .width {
15 width: 100px;
17 .floatLWidth {
18 float: left;
19 width: 100px;
21 </style>
22 </head>
23 <body>
24 <select class="floatLWidth">
25 </select>
26 <br style="clear:both;">
28 <select class="minWidth">
29 </select>
30 <br>
32 <select class="width">
33 </select>
34 </body>
35 </html>