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

Side by Side Diff: LayoutTests/platform/chromium/compositing/huge-layer-rotated.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 <html>
2 <head>
3 <style type="text/css" media="screen">
4 .large {
5 -webkit-perspective: 100;
6 -webkit-transform-origin: left top;
7 -webkit-transform: rotateY(53deg) rotateZ(10deg);
8 width: 1000px;
9 height: 30000px;
10 background: -webkit-gradient(linear, left top, left bottom, from(#00abeb), to(#fff));
11 }
12 </style>
13 <script type="text/javascript" charset="utf-8">
14 if (window.testRunner)
15 testRunner.dumpAsText(true);
16 </script>
17 </head>
18 <body style="overflow:hidden">
19 <div class="large">
20 </div>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698