| Index: LayoutTests/compositing/overflow/build-paint-order-list-where-opt-in-decisions-can-affect-each-other.html
|
| diff --git a/LayoutTests/compositing/overflow/build-paint-order-list-where-opt-in-decisions-can-affect-each-other.html b/LayoutTests/compositing/overflow/build-paint-order-list-where-opt-in-decisions-can-affect-each-other.html
|
| index c352b803e7258c0517e2b0bd8ba42e82f2cc073a..c7e31e1807127c418e816b5d573e39530edb05ba 100644
|
| --- a/LayoutTests/compositing/overflow/build-paint-order-list-where-opt-in-decisions-can-affect-each-other.html
|
| +++ b/LayoutTests/compositing/overflow/build-paint-order-list-where-opt-in-decisions-can-affect-each-other.html
|
| @@ -118,21 +118,21 @@
|
| document.body.offsetTop;
|
|
|
| window.internals.setNeedsCompositedScrolling(parentscrollinglayer,
|
| - window.internals.CompositedScrollingAlwaysOff);
|
| + window.internals.COMPOSITED_SCROLLING_ALWAYS_OFF);
|
| parentscrollinglayer.style.webkitTransform = '';
|
|
|
| var oldStackingOrder = getStackingOrder();
|
| var oldPaintOrder = getPaintOrder(childscrollinglayer);
|
|
|
| window.internals.setNeedsCompositedScrolling(parentscrollinglayer,
|
| - window.internals.CompositedScrollingAlwaysOn);
|
| + window.internals.COMPOSITED_SCROLLING_ALWAYS_ON);
|
| parentscrollinglayer.style.webkitTransform = 'translateZ(0px)';
|
|
|
| var newStackingOrder = getStackingOrder();
|
| var newPaintOrder = getPaintOrder(childscrollinglayer);
|
|
|
| window.internals.setNeedsCompositedScrolling(parentscrollinglayer,
|
| - window.internals.DoNotForceCompositedScrolling);
|
| + window.internals.DO_NOT_FORCE_COMPOSITED_SCROLLING);
|
|
|
| // The getPaintOrder() function should return a pair of paint orders.
|
| // One before promotion and one after. This pair of lists should remain
|
|
|