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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/layer-creation/resources/background-attachment-fixed.html

Issue 2531603003: Only scroll on main if the targeted frames need to scroll on main (Closed)
Patch Set: Bug fix 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <pre id="mainThreadScrollingReasons"></pre>
2 <style> 3 <style>
3 body { 4 body {
4 height: 1000px; 5 height: 1000px;
5 background: url('grid.png') fixed; 6 background: url('grid.png') fixed;
6 } 7 }
7 </style> 8 </style>
9
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText(true);
13 window.addEventListener('load', function() {
14 document.getElementById("mainThreadScrollingReasons").innerText = window.int ernals.mainThreadScrollingReasons(document);
15 });
16 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698