gecko-dev/servo/tests/html/border_collapse_test.html
Simon Martin f267f6f076 servo: Merge #12576 - Issue #12421: tidy should also check .html files (from simartin:issue_12421); r=jdm
./mach test-tidy should also check .html files, to avoid patches containing badly formatted new test cases go unnoticed

---
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes fix #12421
- [X] There are tests for these changes (./mach test-tidy failed without the changes to .hrml files)

Source-Repo: https://github.com/servo/servo
Source-Revision: 93004ce57999947f51067d680c6fde056741331a
2016-08-09 17:20:50 -05:00

55 lines
644 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table {
border-collapse: collapse;
border: 5px solid yellow;
}
td {
border: 1px solid red;
padding: 16px;
width: 32px;
height: 32px;
}
td.cell5 {
border: 30px solid blue;
}
td.cell6 {
border: 5px solid green;
}
</style>
</head>
<body>
<table>
<tr id="row1">
<td> 1
<td> 2
<td> 3
</tr>
<tr id="row2">
<td> 4
<td class="cell5"> 5
<td class="cell6"> 6
</tr>
<tr id="row3">
<td> 7
<td> 8
<td> 9
</tr>
<tr id="row4">
<td> 10
<td> 11
<td> 12
</tr>
<tr id="row5">
<td> 13
<td> 14
<td> 15
</tr>
</table>
</body>
</html>