summaryrefslogtreecommitdiffstats
path: root/WebCore/manual-tests/transition-timing-functions.html
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-05-06 11:45:16 +0100
committerSteve Block <steveblock@google.com>2011-05-12 13:44:10 +0100
commitcad810f21b803229eb11403f9209855525a25d57 (patch)
tree29a6fd0279be608e0fe9ffe9841f722f0f4e4269 /WebCore/manual-tests/transition-timing-functions.html
parent121b0cf4517156d0ac5111caf9830c51b69bae8f (diff)
downloadexternal_webkit-cad810f21b803229eb11403f9209855525a25d57.zip
external_webkit-cad810f21b803229eb11403f9209855525a25d57.tar.gz
external_webkit-cad810f21b803229eb11403f9209855525a25d57.tar.bz2
Merge WebKit at r75315: Initial merge by git.
Change-Id: I570314b346ce101c935ed22a626b48c2af266b84
Diffstat (limited to 'WebCore/manual-tests/transition-timing-functions.html')
-rw-r--r--WebCore/manual-tests/transition-timing-functions.html122
1 files changed, 0 insertions, 122 deletions
diff --git a/WebCore/manual-tests/transition-timing-functions.html b/WebCore/manual-tests/transition-timing-functions.html
deleted file mode 100644
index ed1e4d1..0000000
--- a/WebCore/manual-tests/transition-timing-functions.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
- "http://www.w3.org/TR/html4/strict.dtd">
-<html>
- <head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
- <title>Timing Functions for Transitions</title>
- <style type="text/css" media="screen">
-
- body {
- margin: 10px;
- padding: 0;
- }
-
- .container div {
- position: relative;
- width: 250px;
- height: 50px;
- background: #99c;
- -webkit-transition-property: left;
- -webkit-transition-duration: 5s;
- margin-bottom: 10px;
- }
-
- .container:hover .default,
- .container:hover .ease,
- .container:hover .linear,
- .container:hover .ease-in,
- .container:hover .ease-out,
- .container:hover .ease-in-out,
- .container:hover .cubic,
- .container:hover .error {
- left: 400px;
- }
-
- .container .ease {
- -webkit-transition-timing-function: ease;
- }
-
- .container .linear {
- -webkit-transition-timing-function: linear;
- }
-
- .container .ease-in {
- -webkit-transition-timing-function: ease-in;
- }
-
- .container .ease-out {
- -webkit-transition-timing-function: ease-out;
- }
-
- .container .ease-in-out {
- -webkit-transition-timing-function: ease-in-out;
- }
-
- .container .cubic {
- -webkit-transition-timing-function: cubic-bezier(.42, .0, .58, 1.0)
- }
-
- .container .error {
- -webkit-transition-timing-function: bananas;
- }
-
- #endmarker {
- position: absolute;
- width: 10px;
- left: 400px;
- top: 100px;
- height: 500px;
- background-color: red;
- }
-
-
- </style>
- </head>
- <body>
- <div id="endmarker">
- </div>
-
- <h1>Timing functions for transitions</h1>
- <p>On hover, the elements below should transition using the
- described timing functions</p>
-
- <div class="container">
-
- <div class="default">
- Default (no timing function specified, should be the same as Ease)
- </div>
-
- <div class="ease">
- Ease (the default ease function)
- </div>
-
- <div class="linear">
- Linear
- </div>
-
- <div class="ease-in">
- Ease In
- </div>
-
- <div class="ease-out">
- Ease Out
- </div>
-
- <div class="ease-in-out">
- Ease In Out
- </div>
-
- <div class="cubic">
- Cubic bezier specified the same as Ease In Out
- </div>
-
- <div class="error">
- Bogus definition, should become default of Ease
- </div>
-
- </div>
-
-
-
- </body>
-</html> \ No newline at end of file