https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 278bef4fc3194c6a6a5ba46f1215774f301f971f authored by Philip Jägenstedt on 22 March 2018, 14:57:46 UTC
Dummy idlharness.js change to debug #10144
Tip revision: 278bef4
fixup-dynamic-anonymous-inline-table-001.html
<!DOCTYPE html>
<title>CSS Test: CSS Tables fixup merge anonymous inline table siblings (row-group + row-group)</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>
  .group {
    display: table-row-group;
  }
  .cell {
    display: table-cell;
  }
  .filler {
    width: 100px;
    height: 50px;
    background-color: green;
  }
</style>
<p>Test passes if there is a filled green square.</p>
<span>
  <span class="group">
    <span class="cell">
      <div class="filler"></div>
    </span>
  </span>
  <span id="rm">Remove me</span>
  <span class="group">
    <span class="cell">
      <div class="filler"></div>
    </span>
  </span>
</span>
<script>
  rm.offsetTop;
  rm.remove();
</script>
back to top