| Index: LayoutTests/compositing/visibility/visibility-composited-animation.html
|
| diff --git a/LayoutTests/compositing/visibility/visibility-composited-animation.html b/LayoutTests/compositing/visibility/visibility-composited-animation.html
|
| deleted file mode 100644
|
| index f675bcff3a6fc5a675636b3551ce8fcf29578e16..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/compositing/visibility/visibility-composited-animation.html
|
| +++ /dev/null
|
| @@ -1,45 +0,0 @@
|
| -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN"
|
| - "http://www.w3.org/TR/html4/strict.dtd">
|
| -<html>
|
| - <head>
|
| - <title>Visibility composited animation</title>
|
| - <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
| - <style type="text/css">
|
| - .parentDivStyle {
|
| - width: 100px;
|
| - height: 100px;
|
| - background-color: #0000FF;
|
| -
|
| - -webkit-animation-iteration-count: infinite;
|
| - -webkit-animation-timing-function: linear;
|
| -
|
| - -webkit-animation-name: y-spin;
|
| - -webkit-animation-duration: 5s;
|
| - }
|
| -
|
| - @-webkit-keyframes y-spin {
|
| - 0% { -webkit-transform: rotateY(0deg); }
|
| - 50% { -webkit-transform: rotateY(180deg); }
|
| - 100% { -webkit-transform: rotateY(360deg); }
|
| - }
|
| - </style>
|
| -
|
| - <script type="text/javascript">
|
| - if (window.testRunner) {
|
| - testRunner.dumpAsTextWithPixelResults();
|
| - document.write("<span style='position:absolute; top:-5000px'>This test is only useful as a pixel test.</span>");
|
| - }
|
| - window.addEventListener('load', init, false);
|
| -
|
| - function init ()
|
| - {
|
| - var parentDiv = document.getElementById("parentDiv");
|
| - var childDiv = document.createElement('div');
|
| - parentDiv.appendChild(childDiv);
|
| - }
|
| - </script>
|
| - </head>
|
| - <body>
|
| - <div id="parentDiv" class="parentDivStyle"></div>
|
| - </body>
|
| -</html>
|
|
|