Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / 035.html
blobc0ad72b005f5c569ab1352978edab5d8636b87f5
1 <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3 <html><body>
5 This test should have two centered tables and two centered divs.
7 <table align="center" border=1 cellspacing=0 cellpadding=0>
8 <tr><td>This table is aligned "center"</td></tr>
9 </table>
11 <table align="CENTER" border=1 cellspacing=0 cellpadding=0>
12 <tr><td>This table is aligned "CENTER"</td></tr>
13 </table>
15 <div align="center">This div is aligned "center"</div>
16 <div align="CENTER">This div is aligned "CENTER"</div>
18 </body></html>