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

Side by Side Diff: LayoutTests/fast/transforms/transform-update-frame-overflow.html

Issue 328023002: Layout overflow from transforms should update frame scrollbars (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: need to more explicitly prevent scrollbar update Created 6 years, 6 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 <style>
ojan 2014/06/11 03:04:53 Nit: Please used <!DOCTYPE html>. We try to defaul
trchen 2014/06/11 05:04:13 Thanks for catching this!
2 #transformed {
3 width: 100px;
4 height: 100px;
5 background-color: green;
6 transform: translateY(0);
7 }
8 </style>
9 <div id="transformed">
10 </div>
11 <script>
12 document.body.offsetTop;
13
14 var transformed = document.getElementById('transformed');
15 transformed.style.transform = "translateY(1000px)";
16 window.scrollTo(0, 1000);
17 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698