mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
317 B
HTML
20 lines
317 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test that cellpadding, cellspacing, border, etc., don't break table sizing.</title>
|
|
<style type="text/css">
|
|
|
|
table, td {
|
|
border: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table><tr><td>This is some text.</td></tr></table>
|
|
</body>
|
|
</html>
|