Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/collapsed-border-remove-cell.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<title>Collapsed borders track changes caused by removal of cells</title>
<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>