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

Side by Side Diff: LayoutTests/compositing/overflow/build-paint-order-lists-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/build-paint-order-lists.css">
6 <script src="resources/automatically-opt-into-composited-scrolling.js"></scrip t>
7 <script src="resources/build-paint-order-lists.js"></script>
8 <script>
9 // Tests set 0 of paint order permutations, ensuring that in each layout in
10 // the permutation set, the paint orders as returned by
11 // paintOrderListBeforePromote() and paintOrderListAfterPromote() match the
12 // actual stacking orders before and after being promoted to stacking
13 // containers.
14 //
15 // Note that permutation set 0 specifically tests the permutations for which
16 // the 'sibling' is placed at the index 0 of the paint order.
17 if (window.internals) {
18 window.internals.settings.setAcceleratedCompositingForOverflowScrollEnable d(true);
19 window.internals.settings.setCompositorDrivenAcceleratedScrollingEnabled(f alse);
20 }
21
22 function doTest()
23 {
24 buildDom();
25 runPaintOrderPermutationSet(0);
26 }
27
28 window.addEventListener('load', doTest, false);
29 </script>
30 </head>
31
32 <body>
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698