summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-width/spacing-invariance-quirks-pref-ref.html
blob: d680e2f29ab41f55b46acb8e9cfcc866ff30861b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html>
<head>
<title>Test that cellpadding, cellspacing, border, etc., don't break table sizing.</title>
<style type="text/css">

html, body { margin: 0 } /* no collapsing */

table, td {
  border: none;
  margin: 0;
  padding: 0;
  border-spacing: 0;
}

body > table { margin: 28px 29px 34px 35px; }
body { background: white; color: black; }

div { background: olive; color: black; }

</style>
</head>
<body>
<table><tr><td>
  <table><tr><td>
    <div>This is some text.</div>
  </td></tr></table>
</td></tr></table>
</body>
</html>