Bug 1709347 - Add CanvasRenderingContext2D.reset(). r=lsalzman,webidl,smaug
[gecko.git] / layout / reftests / columns / fieldset-columns-002.html
blob661a90caacc095d73ec1dd1e6f2658a570591f0b
1 <!DOCTYPE HTML>
2 <html>
3 <style>
4 div {
5 position: absolute;
6 width: 10px;
7 height: 10px;
8 top: 0;
9 background: blue;
11 fieldset {
12 width: 300px;
13 height: 200px;
14 border: 1px solid;
15 position: relative;
16 overflow: hidden;
18 </style>
19 <fieldset style="columns: 1;">
20 <!-- The position of <div>s should remain the same regardless of
21 the multicol style on fieldset. -->
22 <legend>Legend<div style="left: 0px;"></div></legend>
23 <div style="left: 10px;"></div>
24 </fieldset>
25 </html>