summaryrefslogtreecommitdiffstats
path: root/WebCore/manual-tests/animate-left.html
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:41 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:41 -0800
commit648161bb0edfc3d43db63caed5cc5213bc6cb78f (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /WebCore/manual-tests/animate-left.html
parenta65af38181ac7d34544586bdb5cd004de93897ad (diff)
downloadexternal_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.zip
external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.gz
external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.bz2
auto import from //depot/cupcake/@135843
Diffstat (limited to 'WebCore/manual-tests/animate-left.html')
-rw-r--r--WebCore/manual-tests/animate-left.html43
1 files changed, 0 insertions, 43 deletions
diff --git a/WebCore/manual-tests/animate-left.html b/WebCore/manual-tests/animate-left.html
deleted file mode 100644
index 3ced2ec..0000000
--- a/WebCore/manual-tests/animate-left.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<!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>Animation of left property</title>
- <style>
- div {
- position: relative;
- left: 100px;
- height: 200px;
- width: 200px;
- background-color: #9bb;
- -webkit-animation-name: bounce;
- -webkit-animation-duration: 2s;
- -webkit-animation-iteration-count: infinite;
- -webkit-animation-direction: alternate;
- -webkit-animation-timing-function: ease-in-out;
- }
-
- @-webkit-keyframes bounce {
- from {
- left: 100px;
- }
- to {
- left: 300px;
- }
- }
-
- </style>
-</head>
-<body>
- <h1>Animation of 'left' property</h1>
-
- <p>The element below should bounce 200 pixels left and right continuously</p>
-
- <div id="target">
- This element should animate.
- </div>
-
-</body>
-</html> \ No newline at end of file