mirror of
https://github.com/servo/servo.git
synced 2025-06-24 17:14:33 +01:00
79 lines
No EOL
3.8 KiB
HTML
79 lines
No EOL
3.8 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Tests: CSS Animations. animation-iteration-count is set to a finite value.</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta http-equiv="Content-Style-Type" content="text/css">
|
|
<meta http-equiv="Content-Script-Type" content="text/javascript">
|
|
<link rel="help" href="http://www.w3.org/TR/css3-animations/#animation-name-property">
|
|
<link rel="help" href="http://www.w3.org/TR/css3-animations/#animation-duration-property">
|
|
<link rel="help" href="http://www.w3.org/TR/css3-animations/#animation-iteration-count-property">
|
|
<link rel="author" title="Nokia Inc." href="http://www.nokia.com/">
|
|
<meta name="flags" content="animated">
|
|
<meta name="assert" content="When animation-iteration-count is set to a finite value; animation will play for the specified number of times.">
|
|
<style type="text/css">
|
|
/* */
|
|
@-webkit-keyframes sample {
|
|
from {
|
|
left: 150px;
|
|
}
|
|
to {
|
|
left: 0px;
|
|
}
|
|
}
|
|
|
|
@-moz-keyframes sample {
|
|
from {
|
|
left: 150px;
|
|
}
|
|
to {
|
|
left: 0px;
|
|
}
|
|
}
|
|
|
|
@keyframes sample {
|
|
from {
|
|
left: 150px;
|
|
}
|
|
to {
|
|
left: 0px;
|
|
}
|
|
}
|
|
.abc {
|
|
background-color: blue;
|
|
width: 100px;
|
|
height: 100px;
|
|
padding: 0.2em 1em;
|
|
margin: 6em;
|
|
position: relative;
|
|
|
|
-webkit-animation-name: sample;
|
|
-webkit-animation-duration: 10s;
|
|
-webkit-animation-iteration-count: 2;
|
|
|
|
-moz-animation-name: sample;
|
|
-moz-animation-duration: 10s;
|
|
-moz-animation-iteration-count: 2;
|
|
|
|
animation-name: sample;
|
|
animation-duration: 10s;
|
|
animation-iteration-count: 2;
|
|
}
|
|
/* */
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p id="testdetails">
|
|
<p>
|
|
Assertion: When animation-iteration-count is set to a finite integer value; that value is taken as the number of times that the animation has to repeat from beginning to the end.
|
|
</p>
|
|
<ul>
|
|
<li>PASS if a blue colored Box with text "CSS3 Testing Content" appears below and box starts to animate/move from right to left twice.</li>
|
|
<li>FAIL if the animation is not as expected.</li>
|
|
</ul>
|
|
</p>
|
|
<div class="abc">
|
|
CSS3 Testing Content
|
|
</div>
|
|
</body>
|
|
</html> |