Update web-platform-tests to revision 58b72393db0bd273bb93268c33666cf893feb985

This commit is contained in:
Josh Matthews 2017-10-31 08:58:31 -04:00
parent 43a4f01647
commit 64e0a52537
12717 changed files with 59835 additions and 59820 deletions

View file

@ -0,0 +1,54 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Regions: animating content flowed into a region</title>
<link rel="author" title="Mihai Balan" href="mailto:mibalan@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css3-regions/#the-flow-into-property">
<link rel="help" href="http://www.w3.org/TR/css3-regions/#flow-from">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-functions">
<link rel="help" href="http://www.w3.org/TR/css3-animations/#animations">
<meta name="assert" content="Test checks that content that has an animated 3D transform renders and animates when flowed in a region.">
<meta name="flags" content="ahem animated">
<!-- TODO Determine if it's OK for this test to be a ref-test or it should only be a manual one. -->
<link rel="match" href="reference/animations-001-ref.html">
<link rel="stylesheet" href="support/animations.css">
<style>
.transformed {
transform: rotateZ(45deg);
}
.flow {
flow-into: f;
color: green;
font-family: Ahem;
font-size: 20px;
line-height: 1em;
}
.region {
flow-from: f;
width: 100px;
height: 100px;
background-color: lightblue;
}
.region p {
background-color: red;
height: 50%;
}
</style>
</head>
<body>
<p>Test passes if you see a green square rotating once on top of a static blue square and no red.</p>
<div class="region">
<p>&nbsp;</p>
</div>
<div class="transformed flow rotate once">
xxxxx<br>
xxxxx<br>
xxxxx<br>
xxxxx<br>
xxxxx<br>
</div>
</body>
</html>

View file

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Reftest Reference</title>
<link rel="author" title="Mihai Balan" href="mailto:mibalan@adobe.com">
<link rel="stylesheet" href="../support/animations.css">
<style>
.transformed {
transform: rotateZ(45deg);
}
.flow {
color: green;
font-family: Ahem;
font-size: 20px;
line-height: 1em;
}
.region {
width: 100px;
height: 100px;
background-color: lightblue;
}
</style>
</head>
<body>
<p>Test passes if you see a rotating green square on top of a static blue square and no red.</p>
<div class="region">
<div class="transformed flow rotate once">
xxxxx<br>
xxxxx<br>
xxxxx<br>
xxxxx<br>
xxxxx<br>
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,80 @@
/* Duration classes */
.once {
animation-duration: 2s;
animation-timing-function: linear;
animation-iteration-count: 1;
}
.infinite {
animation-duration: 2s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
.infinite-reversed {
animation-duration: 2s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
.fast {
animation-duration: 0.5s;
}
/* Animation declarations */
@keyframes pulse {
from {
opacity: 1;
}
to {
opacity: 0.25;
}
}
@keyframes spin {
from {
transform: rotateY(0);
}
to {
transform: rotateY(360deg);
}
}
@keyframes rotate {
from {
transform: rotateZ(45deg);
}
to {
transform: rotateZ(405deg);
}
}
@keyframes slant {
from {
transform: rotate3d(0.23, 1.2, 0.83, 40deg);
}
to {
transform: rotate3d(1, 0.75, 1.3, 240deg);
}
}
/* Animation classes */
.pulse {
animation-name: pulse;
}
.spin {
animation-name: spin;
}
.rotate {
animation-name: rotate;
}
.slant {
animation-name: slant;
}