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

Side by Side Diff: LayoutTests/platform/chromium/compositing/lots-of-img-layers-with-opacity.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 <body style="overflow:hidden">
3 <script>
4 for (var i=0; i<350; ++i) {
5 var img = document.createElement("img");
6 img.style.webkitTransform = "rotate("+(i/2)+"deg) translateZ(0)";
7 img.style.webkitTransformOrigin = "300px 300px";
8 img.style.position = "absolute";
9 img.style.opacity = 0.2;
10 document.body.appendChild(img);
11 img.src = "resources/apple.jpg";
12 }
13 </script>
14 </body>
15
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698