Backed out changeset 57d71ba078d7 (bug 1932390) for causing wpt failures @ failures_A...
[gecko.git] / layout / reftests / writing-mode / ua-style-sheet-border-5-ref.html
blob85ec56e2b15644fadffb3753365f313a0f366364
1 <!DOCTYPE html>
2 <meta charset=utf-8>
3 <title>Test for logical margins on tbody elements in the UA style sheet</title>
4 <style>
5 .v-rl { writing-mode: vertical-rl; }
6 .ltr, .rtl, .v-rl { border: 1px solid blue; padding: 16px; }
7 tbody { border: none; }
8 .ltr tbody { border-top: thin solid; border-bottom: thin solid; }
9 .rtl tbody { border-top: thin solid; border-bottom: thin solid; }
10 .v-rl tbody { border-left: thin solid; border-right: thin solid; }
11 </style>
12 <div class=ltr>
13 <table rules=groups>
14 <tbody>
15 <tr><td>A1</td><td>A2</td><td>A3</td></tr>
16 </tbody>
17 <tbody>
18 <tr><td>B1</td><td>B2</td><td>B3</td></tr>
19 </tbody>
20 </table>
21 </div>
22 <div class=rtl dir=rtl>
23 <table rules=groups>
24 <tbody>
25 <tr><td>A1</td><td>A2</td><td>A3</td></tr>
26 </tbody>
27 <tbody>
28 <tr><td>B1</td><td>B2</td><td>B3</td></tr>
29 </tbody>
30 </table>
31 </div>
32 <div class=v-rl>
33 <table rules=groups>
34 <tbody>
35 <tr><td>A1</td><td>A2</td><td>A3</td></tr>
36 </tbody>
37 <tbody>
38 <tr><td>B1</td><td>B2</td><td>B3</td></tr>
39 </tbody>
40 </table>
41 </div>