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

Side by Side 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, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4 <head>
5 <title>Visibility composited animation</title>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7 <style type="text/css">
8 .parentDivStyle {
9 width: 100px;
10 height: 100px;
11 background-color: #0000FF;
12
13 -webkit-animation-iteration-count: infinite;
14 -webkit-animation-timing-function: linear;
15
16 -webkit-animation-name: y-spin;
17 -webkit-animation-duration: 5s;
18 }
19
20 @-webkit-keyframes y-spin {
21 0% { -webkit-transform: rotateY(0deg); }
22 50% { -webkit-transform: rotateY(180deg); }
23 100% { -webkit-transform: rotateY(360deg); }
24 }
25 </style>
26
27 <script type="text/javascript">
28 if (window.testRunner) {
29 testRunner.dumpAsTextWithPixelResults();
30 document.write("<span style='position:absolute; top:-5000px'>This test i s only useful as a pixel test.</span>");
31 }
32 window.addEventListener('load', init, false);
33
34 function init ()
35 {
36 var parentDiv = document.getElementById("parentDiv");
37 var childDiv = document.createElement('div');
38 parentDiv.appendChild(childDiv);
39 }
40 </script>
41 </head>
42 <body>
43 <div id="parentDiv" class="parentDivStyle"></div>
44 </body>
45 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698