mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 756a676d640e9a772f565964285b2f20f6164fce
This commit is contained in:
parent
a38f28f811
commit
3d5ad91231
3066 changed files with 23973 additions and 26209 deletions
|
@ -0,0 +1,33 @@
|
|||
<!doctype html>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-values-4/#comp-func">
|
||||
<link rel="author" title="Xiaocheng Hu" href="mailto:xiaochengh@chromium.org">
|
||||
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
|
||||
<title>Tests interpolation between CSS comparison functions</title>
|
||||
<style>
|
||||
@keyframes anim {
|
||||
from {
|
||||
width: min(50px, 30%);
|
||||
height: min(75%, 160px);
|
||||
}
|
||||
to {
|
||||
width: max(75%, 100px);
|
||||
height: max(50px, 20%);
|
||||
}
|
||||
}
|
||||
|
||||
.test {
|
||||
background-color: green;
|
||||
animation: anim 2000000s linear;
|
||||
animation-delay: -1000000s;
|
||||
}
|
||||
|
||||
.container {
|
||||
position: absolute;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
</style>
|
||||
<p>Test passes if there is a filled green square.</p>
|
||||
<div class="container">
|
||||
<div class="test"></div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue