mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
42 lines
732 B
HTML
42 lines
732 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
<meta name="GENERATOR" content="Mozilla/4.72 [en] (Win98; I) [Netscape]">
|
|
<title>ROWSPAN = "0" Test Case</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
BAD:<br><br>
|
|
<center>
|
|
<table BORDER = "5" COLS=1 WIDTH="100%" >
|
|
<tr>
|
|
<td ROWSPAN = "0">One</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Two</td>
|
|
</tr>
|
|
</table>
|
|
</center>
|
|
|
|
<br>
|
|
<br>
|
|
|
|
GOOD:<br><br>
|
|
<center>
|
|
<table BORDER = "5"COLS=1 WIDTH="100%" >
|
|
<tr>
|
|
<td>One</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Two</td>
|
|
</tr>
|
|
</table>
|
|
</center>
|
|
|
|
</body>
|
|
</html>
|