mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
Update web-platform-tests to revision bc60e6f82132cfc9a5b688c566c7772024b3c15c
This commit is contained in:
parent
449881f566
commit
29156ca9e2
223 changed files with 7517 additions and 2093 deletions
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<title>CSS Overflow Test: Propagation of body overflow to viewport</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-overflow/#overflow-propagation">
|
||||
<link rel="help" href="https://github.com/w3c/csswg-drafts/pull/4148">
|
||||
<link rel="match" href="reference/overflow-body-propagation-ref.html">
|
||||
<style>
|
||||
body {
|
||||
overflow: scroll;
|
||||
margin-top: 100px;
|
||||
}
|
||||
</style>
|
||||
<body>The viewport should have scrollbars, not the body.</body>
|
|
@ -0,0 +1,6 @@
|
|||
<!doctype html>
|
||||
<title>CSS Overflow Test: Do not propagate overflow of display:none body to viewport</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-overflow-3/#overflow-propagation">
|
||||
<link rel="help" href="https://github.com/w3c/csswg-drafts/pull/4148">
|
||||
<link rel="match" href="/css/reference/blank.html">
|
||||
<body style="display:none; overflow:scroll"></body>
|
|
@ -0,0 +1,6 @@
|
|||
<!doctype html>
|
||||
<title>CSS Overflow Test: Do not propagate overflow of display:contents body to viewport</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-overflow-3/#overflow-propagation">
|
||||
<link rel="help" href="https://github.com/w3c/csswg-drafts/pull/4148">
|
||||
<link rel="match" href="/css/reference/blank.html">
|
||||
<body style="display:contents; overflow:scroll"></body>
|
|
@ -0,0 +1,14 @@
|
|||
<!doctype html>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-overflow/#overflow-propagation">
|
||||
<link rel="help" href="https://github.com/w3c/csswg-drafts/pull/4148">
|
||||
<link rel="match" href="reference/overflow-body-no-propagation-ref.html">
|
||||
<style>
|
||||
html {
|
||||
overflow: hidden;
|
||||
}
|
||||
body {
|
||||
overflow: scroll;
|
||||
margin-top: 100px;
|
||||
}
|
||||
</style>
|
||||
<body>The body should have scrollbars, not the viewport.</body>
|
|
@ -0,0 +1,5 @@
|
|||
<!doctype html>
|
||||
<html style="overflow:auto">
|
||||
<title>CSS Overflow Test Reference</title>
|
||||
<body style="margin-top:100px;overflow:scroll">The body should have scrollbars, not the viewport.</body>
|
||||
</html>
|
|
@ -0,0 +1,5 @@
|
|||
<!doctype html>
|
||||
<html style="overflow:scroll">
|
||||
<title>CSS Overflow Test Reference</title>
|
||||
<body style="margin-top:100px">The viewport should have scrollbars, not the body.</body>
|
||||
</html>
|
|
@ -3,7 +3,7 @@
|
|||
<title>CSS Overflow: -webkit-line-clamp with an empty line</title>
|
||||
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-overflow-3/#webkit-line-clamp">
|
||||
<link rel="match" href="about:blank">
|
||||
<link rel="match" href="/css/reference/blank.html">
|
||||
<style>
|
||||
.clamp {
|
||||
display: -webkit-box;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue