mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
17 lines
319 B
HTML
17 lines
319 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Reference</title>
|
|
<style>
|
|
td {
|
|
color: green;
|
|
border: 2px solid black;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>Test passes if only the word "col" appears in the box below.</p>
|
|
<table>
|
|
<tr>
|
|
<td>col</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|