| background-color: silver; |
| <script type="text/javascript"> |
| if (window.testRunner && window.internals) { |
| internals.settings.setAcceleratedCompositingForFixedPositionEnabled(true); |
| addEventListener("load", function() { |
| var fixed = document.createElement("div"); |
| document.body.appendChild(fixed); |
| document.body.offsetHeight; |
| fixed.className = "fixed"; |
| var synchronousScrollingReasons = internals.synchronousScrollingReasons(); |
| document.getElementById("result").innerText = !synchronousScrollingReasons ? "PASS" : "FAIL: " + synchronousScrollingReasons; |