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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/transforms/transform-update-affects-scroll.html

Issue 2547723002: Merge LayoutTests fast/transforms in transforms (Closed)
Patch Set: Fix a bad path reference. Created 4 years 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
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <style>
3 body {
4 direction: rtl;
5 overflow: hidden;
6 }
7 #transformed {
8 position: absolute;
9 left: 0;
10 top: 0;
11 transform: translate(-50px, 0px);
12 height: 200px;
13 width: 200px;
14 background-color: lightgreen;
15 }
16 </style>
17 <div id="transformed">This box should be exactly in the top-left corner</div>
18 <script>
19 if (window.testRunner)
20 testRunner.waitUntilDone();
21
22 requestAnimationFrame(function() {
23 var transformed = document.getElementById('transformed');
24 transformed.style.transform = 'none';
25 if (window.testRunner)
26 testRunner.notifyDone();
27 });
28 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698