blob: b273e1dd46f39ee57b3c7485f9b085486fb6574e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html><body style="-webkit-writing-mode: vertical-rl;">
This test should have two centered tables and two centered divs.
<table align="center" border=1 cellspacing=0 cellpadding=0>
<tr><td>This table is aligned "center"</td></tr>
</table>
<table align="CENTER" border=1 cellspacing=0 cellpadding=0>
<tr><td>This table is aligned "CENTER"</td></tr>
</table>
<div align="center">This div is aligned "center"</div>
<div align="CENTER">This div is aligned "CENTER"</div>
</body></html>
|