mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 06:05:44 +00:00
f267f6f076
./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
55 lines
644 B
HTML
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>
|
|
|