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

Side by Side Diff: LayoutTests/platform/chromium/compositing/img-layer-grow.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <script src="../../../compositing/resources/mock_scrollbars.js"></script>
5 <script type="text/javascript" charset="utf-8">
6
7 if (window.testRunner) {
8 testRunner.waitUntilDone();
9 testRunner.dumpAsText(true); // This is only useful as a pixel test.
10 }
11
12 function doTest()
13 {
14 div = document.getElementById("div");
15 if (window.testRunner)
16 testRunner.display();
17 window.setTimeout(function() {
18 div.style.height = "1600px";
19 if (window.testRunner)
20 testRunner.notifyDone();
21 }, 0);
22 }
23
24 window.addEventListener('load', doTest, false);
25 </script>
26
27 </head>
28 <body>
29 <div id="div">
30 <img id="image" src="../../../compositing/resources/apple.jpg" style="-webki t-transform: translateZ(0);">
31 </div>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698