https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 236b2316d3ee4ed8ad02a65bc8a112e848e05884 authored by Kinuko Yasuda on 21 December 2018, 06:37:11 UTC
Add a test for ServiceWorker and AppCache interaction with claim()
Tip revision: 236b231
fixup-dynamic-anonymous-table-001.html
<!DOCTYPE html>
<title>CSS Test: CSS Tables fixup merge anonymous table siblings (cell + cell)</title>
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<link rel="help" href="https://drafts.csswg.org/css-tables/#fixup-algorithm">
<style>
  .cell {
    display: table-cell;
    width: 50px;
    height: 100px;
    background-color: green;
  }
</style>
<p>Test passes if there is a filled green square.</p>
<div>
  <span class="cell"></span>
  <span id="rm">Remove me</span>
  <span class="cell"></span>
</div>
<script>
  rm.offsetTop;
  rm.remove();
</script>
back to top