Update web-platform-tests to revision c26470dac73f2df9d4822a0d3482f7eb1ebf57d9

This commit is contained in:
Anthony Ramine 2018-01-10 14:28:20 +01:00
parent 7de87c487b
commit 4d3c932c47
648 changed files with 9014 additions and 4821 deletions

View file

@ -0,0 +1,36 @@
<!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>

View file

@ -0,0 +1,34 @@
<!DOCTYPE html>
<title>CSS Test: CSS Tables fixup merge anonymous inline table siblings (cell + row)</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>
.row {
display: table-row;
}
.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="cell">
<div class="filler"></div>
</span>
<span id="rm">Remove me</span>
<span class="row">
<span class="cell">
<div class="filler"></div>
</span>
</span>
</span>
<script>
rm.offsetTop;
rm.remove();
</script>

View file

@ -0,0 +1,31 @@
<!DOCTYPE html>
<title>CSS Test: CSS Tables fixup merge anonymous inline 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;
}
.filler {
width: 50px;
height: 100px;
background-color: green;
}
</style>
<p>Test passes if there is a filled green square.</p>
<div style="width:100px">
<span>
<span class="cell">
<div class="filler"></div>
</span>
<span id="rm">Remove me</span>
<span class="cell">
<div class="filler"></div>
</span>
</span>
</div>
<script>
rm.offsetTop;
rm.remove();
</script>

View file

@ -0,0 +1,23 @@
<!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>