Update web-platform-tests to revision ee82278e15570e573d87fb80179ff8231b6db61a

This commit is contained in:
WPT Sync Bot 2018-06-03 21:07:04 -04:00
parent d23bc4f1a4
commit 83e2dc11b0
278 changed files with 13348 additions and 10515 deletions

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Containment Test: Size containment on table-cell</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-size">
<link rel="match" href="reference/contain-size-001-ref.html">
<meta name=assert content="Size containment doesn't apply to table-cell elements.">
<style>
div {
display: table-cell;
contain: size;
overflow: hidden;
}
</style>
<p>This test passes if you can see the word PASS below.</p>
<div>PASS</div>

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Containment Test: Size containment on table-row-group</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-size">
<link rel="match" href="reference/contain-size-001-ref.html">
<meta name=assert content="Size containment doesn't apply to table-row-group elements.">
<style>
div {
display: table-row-group;
contain: size;
overflow: hidden;
}
</style>
<p>This test passes if you can see the word PASS below.</p>
<div>PASS</div>

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Containment Test: Size containment on table-header-group</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-size">
<link rel="match" href="reference/contain-size-001-ref.html">
<meta name=assert content="Size containment doesn't apply to table-header-group elements.">
<style>
div {
display: table-header-group;
contain: size;
overflow: hidden;
}
</style>
<p>This test passes if you can see the word PASS below.</p>
<div>PASS</div>

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Containment Test: Size containment on table-footer-group</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-size">
<link rel="match" href="reference/contain-size-001-ref.html">
<meta name=assert content="Size containment doesn't apply to table-footer-group elements.">
<style>
div {
display: table-footer-group;
contain: size;
overflow: hidden;
}
</style>
<p>This test passes if you can see the word PASS below.</p>
<div>PASS</div>

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Containment Test: Size 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-size">
<link rel="match" href="reference/contain-size-001-ref.html">
<meta name=assert content="Size containment doesn't apply to table-row elements.">
<style>
div {
display: table-row;
contain: size;
overflow: hidden;
}
</style>
<p>This test passes if you can see the word PASS below.</p>
<div>PASS</div>

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Containment Test: Size containment on table-caption</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-size">
<link rel="match" href="reference/contain-paint-014-ref.html">
<meta name=assert content="Size containment does apply to table-caption elements.">
<style>
div {
display: table-caption;
contain: size;
overflow: hidden;
}
</style>
<p>This test passes if you can NOT see the word FAIL below.</p>
<div>FAIL</div>

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Containment Test: Size containment on table</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-size">
<link rel="match" href="reference/contain-paint-014-ref.html">
<meta name=assert content="Size containment does apply to table elements.">
<style>
div {
display: table;
contain: size;
overflow: hidden;
}
</style>
<p>This test passes if you can NOT see the word FAIL below.</p>
<div>FAIL</div>