aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-animations-1_dev/html/animation-iteration-count-003.htm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/css-tests/css-animations-1_dev/html/animation-iteration-count-003.htm')
-rw-r--r--tests/wpt/css-tests/css-animations-1_dev/html/animation-iteration-count-003.htm94
1 files changed, 0 insertions, 94 deletions
diff --git a/tests/wpt/css-tests/css-animations-1_dev/html/animation-iteration-count-003.htm b/tests/wpt/css-tests/css-animations-1_dev/html/animation-iteration-count-003.htm
deleted file mode 100644
index 4c14c585344..00000000000
--- a/tests/wpt/css-tests/css-animations-1_dev/html/animation-iteration-count-003.htm
+++ /dev/null
@@ -1,94 +0,0 @@
-<!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 set to negative 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 negative count, value should be computed to 0 (zero) and results in NO animation.">
- <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: absolute;
- left: 0px;
-
- -webkit-animation-name: sample;
- -webkit-animation-iteration-count: -1;
- -webkit-animation-duration: 10s;
-
- -moz-animation-name: sample;
- -moz-animation-iteration-count: -1;
- -moz-animation-duration: 10s;
-
- animation-name: sample;
- animation-iteration-count: -1;
- animation-duration: 10s;
- }
- .def {
- position: absolute;
- background-color: red;
- width: 100px;
- height: 100px;
- padding: 0.2em 1em;
- margin: 6em;
- left: 0px;
- z-index: -1;
- }
- /* */
- </style>
- </head>
- <body>
- <p id="testdetails">
- <p>
- Assertion: When animation-iteration-count is set to negative count, value should be computed to 0 (zero) and results in NO animation.
- </p>
- <ul>
- <li>PASS if a blue colored Box with text "CSS3 Testing Content" appears below and NO movement/animation is seen. Also, RED color should NOT be seen anywhere on this page.</li>
- <li>FAIL if the box animates to left OR if RED color is seen anywhere on this page.</li>
- </ul>
- </p>
- <div class="abc">
- CSS3 Testing Content
- </div>
- <div class="def">
- Reference
- </div>
- </body>
-</html> \ No newline at end of file