зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1483388 [wpt PR 12486] - [css-contain] use overflow:hidden on elements where it actually works, a=testonly
Automatic update from web-platform-testsMerge pull request #12486 from frivoal/contain-12388 [css-contain] use overflow:hidden on elements where it actually works -- wpt-commits: 7985ccfee21f815f20a7e8699009f76cebbcea66 wpt-pr: 12486
This commit is contained in:
Родитель
b443dc4322
Коммит
b5c4e6fd34
|
@ -109944,7 +109944,7 @@
|
|||
"/css/css-contain/contain-size-007.html",
|
||||
[
|
||||
[
|
||||
"/css/reference/pass_if_pass_below.html",
|
||||
"/css/css-contain/reference/pass_if_pass_below_clipped.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
|
@ -109956,7 +109956,7 @@
|
|||
"/css/css-contain/contain-size-008.html",
|
||||
[
|
||||
[
|
||||
"/css/reference/pass_if_pass_below.html",
|
||||
"/css/css-contain/reference/pass_if_pass_below_clipped.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
|
@ -109968,7 +109968,7 @@
|
|||
"/css/css-contain/contain-size-009.html",
|
||||
[
|
||||
[
|
||||
"/css/reference/pass_if_pass_below.html",
|
||||
"/css/css-contain/reference/pass_if_pass_below_clipped.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
|
@ -109980,7 +109980,7 @@
|
|||
"/css/css-contain/contain-size-010.html",
|
||||
[
|
||||
[
|
||||
"/css/reference/pass_if_pass_below.html",
|
||||
"/css/css-contain/reference/pass_if_pass_below_clipped.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
|
@ -519541,19 +519541,19 @@
|
|||
"reftest"
|
||||
],
|
||||
"css/css-contain/contain-size-007.html": [
|
||||
"71e61aff4d13c86c94a8162e18ce9e005351dcee",
|
||||
"4d4bce8e9264f6f4a9d390a7e43d05169dd00192",
|
||||
"reftest"
|
||||
],
|
||||
"css/css-contain/contain-size-008.html": [
|
||||
"fb7b5258a5ad9f44052e9711c9c030fc46cb451d",
|
||||
"63deea8199fc13fd8c81021a0275b5127ed31e77",
|
||||
"reftest"
|
||||
],
|
||||
"css/css-contain/contain-size-009.html": [
|
||||
"4b080c4ad5ee168ebe3680d798f3369dfc916274",
|
||||
"a285d5e2b38e5b4e5aa7cf924f859a9f782aed53",
|
||||
"reftest"
|
||||
],
|
||||
"css/css-contain/contain-size-010.html": [
|
||||
"59fdb8b63fd3dbea5d6e285d0d3445077e815c41",
|
||||
"0061894ce0307c8a66ff39667fb39b7c8836d09b",
|
||||
"reftest"
|
||||
],
|
||||
"css/css-contain/contain-size-011.html": [
|
||||
|
|
|
@ -3,15 +3,19 @@
|
|||
<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/pass_if_pass_below.html">
|
||||
<link rel="match" href="reference/pass_if_pass_below_clipped.html">
|
||||
<meta name=assert content="Size containment doesn't apply to table-row-group elements.">
|
||||
<style>
|
||||
div {
|
||||
display: table-row-group;
|
||||
contain: size;
|
||||
}
|
||||
section {
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
|
||||
<p>Test passes if there is the word "PASS" below.</p>
|
||||
<section>
|
||||
<div>PASS</div>
|
||||
<section>
|
||||
|
|
|
@ -3,15 +3,19 @@
|
|||
<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/pass_if_pass_below.html">
|
||||
<link rel="match" href="reference/pass_if_pass_below_clipped.html">
|
||||
<meta name=assert content="Size containment doesn't apply to table-header-group elements.">
|
||||
<style>
|
||||
div {
|
||||
display: table-header-group;
|
||||
contain: size;
|
||||
}
|
||||
section {
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
|
||||
<p>Test passes if there is the word "PASS" below.</p>
|
||||
<section>
|
||||
<div>PASS</div>
|
||||
</section>
|
||||
|
|
|
@ -3,15 +3,19 @@
|
|||
<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/pass_if_pass_below.html">
|
||||
<link rel="match" href="reference/pass_if_pass_below_clipped.html">
|
||||
<meta name=assert content="Size containment doesn't apply to table-footer-group elements.">
|
||||
<style>
|
||||
div {
|
||||
display: table-footer-group;
|
||||
contain: size;
|
||||
}
|
||||
section {
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
|
||||
<p>Test passes if there is the word "PASS" below.</p>
|
||||
<section>
|
||||
<div>PASS</div>
|
||||
</section>
|
||||
|
|
|
@ -3,15 +3,19 @@
|
|||
<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/pass_if_pass_below.html">
|
||||
<link rel="match" href="reference/pass_if_pass_below_clipped.html">
|
||||
<meta name=assert content="Size containment doesn't apply to table-row elements.">
|
||||
<style>
|
||||
div {
|
||||
display: table-row;
|
||||
contain: size;
|
||||
}
|
||||
section {
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
|
||||
<p>Test passes if there is the word "PASS" below.</p>
|
||||
<section>
|
||||
<div>PASS</div>
|
||||
</section>
|
||||
|
|
Загрузка…
Ссылка в новой задаче