mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Update web-platform-tests to revision 3bbb55915a04548e70c63b7c143a83e0e9d3c5e7
This commit is contained in:
parent
3340214a29
commit
b55cc798b6
100 changed files with 2036 additions and 3665 deletions
|
@ -18,6 +18,7 @@ div {
|
|||
#test {
|
||||
background: green;
|
||||
|
||||
contain: size;
|
||||
columns: 2 40px;
|
||||
column-gap: 20px;
|
||||
min-height: 100px;
|
||||
|
|
|
@ -14,4 +14,4 @@ div {
|
|||
}
|
||||
</style>
|
||||
<p>This test passes if it has the same output as the reference.</p>
|
||||
<div></div>
|
||||
<div>FAIL</div>
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Containment Test: Size containment scrollbars</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-scrollbars-001-ref.html">
|
||||
<meta name=assert content="This test checks that the size of a flexbox container with 'contain: size' includes the scrollbars too.">
|
||||
<style>
|
||||
div {
|
||||
contain: size;
|
||||
display: inline-flex;
|
||||
border: solid thick;
|
||||
overflow: scroll;
|
||||
}
|
||||
</style>
|
||||
<p>This test passes if it has the same output as the reference.</p>
|
||||
<div>FAIL</div>
|
|
@ -0,0 +1,17 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Containment Test: Size containment scrollbars</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-scrollbars-001-ref.html">
|
||||
<meta name=assert content="This test checks that the size of a grid container with 'contain: size' includes the scrollbars too.">
|
||||
<style>
|
||||
div {
|
||||
contain: size;
|
||||
display: inline-grid;
|
||||
border: solid thick;
|
||||
overflow: scroll;
|
||||
}
|
||||
</style>
|
||||
<p>This test passes if it has the same output as the reference.</p>
|
||||
<div>FAIL</div>
|
Loading…
Add table
Add a link
Reference in a new issue