no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / writing-mode / ua-style-sheet-fieldset-1.html
blob3cc77041d7b200b3a1d0fce651d8a628745576cf
1 <!DOCTYPE html>
2 <meta charset=utf-8>
3 <title>Test for logical properties of fieldset in the UA stylesheet</title>
4 <style>
5 .v-rl { writing-mode: vertical-rl; }
6 .ltr, .rtl, .v-rl { border: 1px solid blue; }
8 fieldset { height: 100px; width: 100px; }
10 .a { block-size: 40%; background: #eee; }
11 .b { block-size: 60%; background: #ddd; }
12 </style>
13 <div class=ltr>
14 <fieldset>
15 <legend>Legend</legend>
16 <div class=a></div>
17 <div class=b></div>
18 </fieldset>
19 </div>
21 <div class=rtl dir=rtl>
22 <fieldset>
23 <legend>Legend</legend>
24 <div class=a></div>
25 <div class=b></div>
26 </fieldset>
27 </div>
29 <div class=v-rl>
30 <fieldset>
31 <legend>Legend</legend>
32 <div class=a></div>
33 <div class=b></div>
34 </fieldset>
35 </div>