Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / nested-direct-image-compositing.html
blob458bfbacb56156a9b56003e13f5f89070ec2ac1e
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Check to disappear the afterimage after changing the style of an img tag.</title>
5 <style type="text/css">
6 div.cell
8 transform: translate3d(0, 0, 0);
11 img
13 position: absolute;
14 transform: translate3d(0, 0, 0);
17 div.magnify img
19 transform: scale(2.0);
21 </style>
22 </head>
23 <body>
26 <div class="cell magnify" id="cell">
27 <img src="resources/simple_image.png">
28 </div>
31 <script type="text/javascript">
32 function updateStack()
34 var cell = document.getElementById("cell");
35 cell.className = "cell";
37 setTimeout(function() {
38 if (window.testRunner) {
39 window.testRunner.notifyDone();
41 }, 10);
44 window.onload = function ()
46 if (window.testRunner) {
47 window.testRunner.dumpAsTextWithPixelResults();
48 window.testRunner.waitUntilDone();
51 setTimeout(function() {
52 updateStack();
53 }, 200);
55 </script>
57 </body>
58 </html>