Update web-platform-tests to revision 1829a42c93e435937db68c8a842fa9b56dd39dc2

This commit is contained in:
WPT Sync Bot 2018-05-30 21:11:46 -04:00
parent 9f142b9c22
commit 46e1e26950
72 changed files with 1286 additions and 1091 deletions

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Containment Test: Paint containment on table-row</title>
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-contain-1/#containment-paint">
<link rel="match" href="reference/contain-size-001-ref.html">
<meta name=assert content="Paint containment doesn't apply to table-row elements.">
<style>
div {
display: table-row;
contain: paint;
}
span {
position: absolute;
}
</style>
<p>This test passes if you can see the word PASS below.</p>
<div><span>PASS</span></div>