WebCore/manual-tests/animate-duration.html
changeset 0 4f2f89ce4247
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebCore/manual-tests/animate-duration.html	Fri Sep 17 09:02:29 2010 +0300
@@ -0,0 +1,65 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+   "http://www.w3.org/TR/html4/loose.dtd">
+
+<html lang="en">
+<head>
+  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+  <title>Overriding Animations</title>
+  <script src="../../shared/javascript/utils.js" type="text/javascript" charset="utf-8"></script>
+  <style type="text/css" media="screen">
+
+  .container {
+     position: relative;
+     width: 400px;
+     height: 120px;
+     border: 1px solid black;
+     margin: 10px;
+   }
+   .box {
+     position: relative;
+     width: 100px;
+     height: 100px;
+     margin: 10px;
+     background-color: blue;
+     z-index: 0;
+     -webkit-animation-name: "slide";
+     -webkit-animation-duration: 1s;
+     -webkit-animation-direction: alternate;
+     -webkit-animation-timing-function: ease-in-out;
+     -webkit-animation-iteration-count: infinite;
+   }  
+
+   .one {
+     -webkit-animation-duration: 0s;
+   }
+
+   .two {
+     -webkit-animation-duration: 0;
+   }
+   
+   @-webkit-keyframes slide {
+     from { -webkit-transform: translateX(0);      }
+     to   { -webkit-transform: translateX(280px);  }
+   }
+
+  </style>
+</head>
+<body>
+  <p>Single anim (should keep animating)</p>
+  <div class="container" onclick="toggleClassName(this, 'highlighted')">
+    <div class="box none">
+    </div>
+  </div>
+  <p>duration: "0s" (should not animate)</p>
+  <div class="container" onclick="toggleClassName(this, 'highlighted')">
+    <div class="box one">
+    </div>
+  </div>
+  <p>duration: "0" (should animate since inherits valid duration)</p>
+  <div class="container" onclick="toggleClassName(this, 'highlighted')">
+    <div class="box two">
+    </div>
+  </div>
+
+</body>
+</html>
\ No newline at end of file