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

Side by Side Diff: LayoutTests/compositing/visible-rect/resources/subframe-with-layers.html

Issue 14195011: Removed WONTFIX tests (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
3 <html>
4 <head>
5 <style>
6 body {
7 height: 1500px;
8 width: 1500px;
9 }
10 .box {
11 height: 300px;
12 width: 100px;
13 background-color: blue;
14 -webkit-transform: translateZ(1px);
15 }
16 </style>
17 <script>
18 function scroll()
19 {
20 window.setTimeout(function() {
21 window.scrollTo(10, 100);
22 }, 2000);
23 }
24 window.addEventListener('load', scroll, false);
25 </script>
26 </head>
27 <body>
28 <div class="box">asdf</div>
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698