mirror of
https://github.com/servo/servo.git
synced 2025-06-28 11:03:39 +01:00
27 lines
692 B
HTML
27 lines
692 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<title>Collapsed borders track changes caused by removal of cells</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-tables/#border-collapsing">
|
|
<link rel="match" href="collapsed-border-remove-cell-ref.html">
|
|
<script src="/common/reftest-wait.js"></script>
|
|
<script src="/common/rendering-utils.js"></script>
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
td {
|
|
width: 100px;
|
|
height: 100px;
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|
|
<table>
|
|
<tr><td></td><td></td></tr>
|
|
<tr><td></td><td id="target"></tr>
|
|
</table>
|
|
<script>
|
|
waitForAtLeastOneFrame().then(() => {
|
|
target.remove();
|
|
takeScreenshot();
|
|
});
|
|
</script>
|