Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Unified Diff: LayoutTests/compositing/visibility/visibility-composited-animation.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698