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

Side by Side Diff: LayoutTests/compositing/overflow/automatically-opt-into-composited-scrolling-part-1.html

Issue 244193002: Enable universal accelerated overflow scroll (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update test expectations for crashing test. Created 6 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 <link rel="stylesheet" href="resources/automatically-opt-into-composited-scrol ling.css">
6 <script src="resources/automatically-opt-into-composited-scrolling.js"></scrip t>
7 <script>
8 // Tests set 0 of opt-in permutations, ensuring that each layout in the
9 // permutation set causes 'container' to be promoted to a stacking container
10 // if possible, and making sure that the stacking and paint orders are never
11 // broken due to this promote.
12 //
13 // Note that permutation set 0 specifically tests the permutations for which
14 // the 'sibling' is placed at the index 0 of the paint order.
15 if (window.internals) {
16 window.internals.settings.setAcceleratedCompositingForOverflowScrollEnable d(true);
17 window.internals.settings.setCompositorDrivenAcceleratedScrollingEnabled(f alse);
18 }
19
20 function doTest()
21 {
22 buildDom();
23 runOptInPermutationSet(0);
24 }
25
26 window.addEventListener('load', doTest, false);
27 </script>
28 </head>
29
30 <body>
31 </body>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698