QGIS/tests/testdata/test_html.html
Nyall Dawson 20f57c90d9 [composer] Make html tests text-free
Minimises cross platform rendering differences
2014-11-29 11:50:18 +11:00

47 lines
851 B
HTML

<html>
<head>
<style>
body
{
background-color: transparent;
margin: 6px;
padding: 0px;
}
table
{
width: 300px;
border-spacing: 6px;
margin: 0px;
padding: 0px;
}
table tr
{
height: 40px;
}
table td
{
border: 2px solid black;
}
tr.row1
{
background-color: red;
}
tr.row2
{
background-color: yellow;
}
</style>
</head>
<body>
<table>
<tbody>
<tr class="row1"><td></td><td></td></tr>
<tr class="row2"><td></td><td></td></tr>
<tr class="row1"><td></td><td></td></tr>
<tr class="row2"><td></td><td></td></tr>
<tr class="row1"><td></td><td></td></tr>
</tbody>
</table>
</body>
</html>