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

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: Resolve conflict Created 3 years, 12 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <pre id="mainThreadScrollingReasons"></pre>
2 <style> 3 <style>
3 body { 4 .composited-background-attachment-fixed {
4 height: 1000px; 5 height: 1000px;
5 background: url('grid.png') fixed; 6 background: url('grid.png') fixed;
7 will-change: transform;
6 } 8 }
7 </style> 9 </style>
10
11 <div class="composited-background-attachment-fixed">
12 </div>
13
14 <script>
15 window.addEventListener('load', function() {
16 document.getElementById("mainThreadScrollingReasons").innerText = window.int ernals.mainThreadScrollingReasons(document);
17 });
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698