| Index: LayoutTests/transitions/transition-drt-api.html
|
| diff --git a/LayoutTests/transitions/transition-drt-api.html b/LayoutTests/transitions/transition-drt-api.html
|
| deleted file mode 100644
|
| index 15c30f08999b3553fb944aa3ea4b144c41797117..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/transitions/transition-drt-api.html
|
| +++ /dev/null
|
| @@ -1,56 +0,0 @@
|
| -<!DOCTYPE html>
|
| -
|
| -<html>
|
| -<head>
|
| - <style>
|
| - #target {
|
| - position: relative;
|
| - left: 100px;
|
| - height: 100px;
|
| - width: 100px;
|
| - background-color: blue;
|
| - -webkit-transition-property: left;
|
| - -webkit-transition-duration: 4s;
|
| - -webkit-transition-timing-function: linear;
|
| - }
|
| -
|
| - #target.moved {
|
| - left: 200px;
|
| - }
|
| - </style>
|
| - <script>
|
| - if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| - function endTest() {
|
| - if (window.testRunner) {
|
| - var target = document.getElementById('target');
|
| - var paused = internals.pauseTransitionAtTimeOnElement("left", 1.0, target);
|
| - var result = "";
|
| - if (paused)
|
| - result = "PASS: correctly paused transition";
|
| - else
|
| - result = "FAIL: failed to pause transition";
|
| -
|
| - document.getElementById('results').innerText = result;
|
| - testRunner.notifyDone();
|
| - } else
|
| - document.getElementById('results').innerText = "This test requires DRT";
|
| - }
|
| -
|
| - function startTest() {
|
| - if (window.testRunner)
|
| - testRunner.waitUntilDone();
|
| -
|
| - document.getElementById("target").className = "moved";
|
| - window.setTimeout(endTest, 0);
|
| - }
|
| - </script>
|
| -</head>
|
| -<body onload="startTest()">
|
| - <!-- Test for Interals pauseTransitionAtTimeOnElement() API -->
|
| - <div id="target"></div>
|
| - <div id="results"></div>
|
| -
|
| -</body>
|
| -</html>
|
|
|