comparison: layout/reftests/mathml/mtable-width.html
layout/reftests/mathml/mtable-width.html
- branch
- TOR_BUG_9701
- changeset 9
- a63d609f5ebe
equal
deleted
inserted
replaced
|
1 <!DOCTYPE html> |
|
2 <html> |
|
3 <head> |
|
4 <title>Check that mtable supports the width attribute</title> |
|
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
|
6 </head> |
|
7 |
|
8 <body> |
|
9 |
|
10 <div> |
|
11 <math> |
|
12 <mtext>|</mtext> |
|
13 <mtable width="8em"> |
|
14 <mtr> |
|
15 <mtd></mtd> |
|
16 </mtr> |
|
17 </mtable> |
|
18 <mtext>|</mtext> |
|
19 </math> |
|
20 </div> |
|
21 <div> |
|
22 <math> |
|
23 <mtext>|</mtext> |
|
24 <mtable width="30px"> |
|
25 <mtr> |
|
26 <mtd></mtd> |
|
27 </mtr> |
|
28 </mtable> |
|
29 <mtext>|</mtext> |
|
30 </math> |
|
31 </div> |
|
32 <div> |
|
33 <math> |
|
34 <mtext>|</mtext> |
|
35 <mtable width="auto"> |
|
36 <mtr> |
|
37 <mtd></mtd> |
|
38 </mtr> |
|
39 </mtable> |
|
40 <mtext>|</mtext> |
|
41 </math> |
|
42 </div> |
|
43 |
|
44 </body> |
|
45 </html> |
|
46 |