blob: c8534c63c090dc67f5f9f8a9f480c2c9b592d163 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<script src="../../resources/check-layout.js"></script>
<p>Below there should be a green square with a black border.</p>
<table id="elm" style="background:black;" data-expected-height="106" data-expected-width="106">
<tr>
<td style="height:min-content;">
<div style="width:100px; height:100px; background:green;"></div>
</td>
</tr>
</table>
<p id="result"></p>
<script>
checkLayout("#elm", document.getElementById("result"));
</script>
|