Fix position:sticky when inside fixed subtree

In https://crrev.com/4d25b125dae5 I changed the scroll tree parenting
logic so that elements in position:fixed subtrees have the LayoutView's
ScrollNode as the scroll parent. This made sense since scrolling over a
fixed element should cause the document to scroll. However, this is
slightly different from how the transform tree looks. Because scrolling
the document doesn't cause position:fixed eement so translate, these
nodes don't have the LayoutView's ScrollTranslation transform node as an
ancestor.

As a simple example, a scrolling document with a position:fixed <div>
scroller will generate the following scroll and transform trees
(approximately):

      *ScrollTree*                          *TransformTree*

         Root                                    Root
          |                                       |
VisualViewport Translation                 VisualViewport
          |                                  /         \
  LayoutView Translation                    /           \
          |                             Fixed      LayoutView
  Fixed Scroller Translation

The situation above makes sense for what parent-child relationships mean
in each tree: the scroll tree encodes how scrolls chain; scrolling on a
child should bubble up to its parent in this tree. The transform tree
encodes the physical effect of scrolling a node. In the above example,
scrolling from the fixed scroller should bubble up to the LayoutView
(when the scroller is fully scrolled) but scrolling the LayoutView will
not cause movement of the fixed scroller.

The above makes sense but caused sticky code to get confused. A sticky
constraint is attached to the scroll translation node. With the above
situation, this meant that inside a fixed subtree, we'd attach it to the
VisualViewport's scroll translation node. This was unexpected; the
constraints are in "document coordinates", meaning that to translate
them into the viewport space we must apply the scroll offset [1]. The
compositor would use the visual viewport's (typically 0) scroll offset
to adjust these values, leading to incorrect calculations.

This previously worked because the scroll node used in a fixed subtree
would be the visual viewport (before the CL mentioned at the top). In
[2] we check whether the current overflow clip is also our scroller,
prior to the CL this check have failed because "our scroller" was the
visual viewport but our clip was the LayoutView. Now they are both the
LayoutView.

The fix in this CL is to make the check in [2] more stringent; we also
want to make sure that our scroller is the nearest scroller in the
transform tree. That is, if we scroll it, will we cause the current node
to move? If not, we don't need a sticky constraint on the compositor
because user scrolling can't change the sticky's offset relative to its
clip.

[1] https://cs.chromium.org/chromium/src/cc/trees/property_tree.cc?l=321&rcl=628f869d1fda631a85f051ad13b5d278319298fc
[2] https://cs.chromium.org/chromium/src/third_party/blink/renderer/core/paint/paint_property_tree_builder.cc?l=553&rcl=99a5a1266f303ba6ae46174a2b4cbd165ea7e934

Bug: 1019142
Change-Id: I781943ff43514905d399803c780c6081d7d47e8f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2097542
Reviewed-by: Robert Flack <flackr@chromium.org>
Commit-Queue: David Bokan <bokan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#750264}
5 files changed
tree: 9fb26ee5d1fe26bf120c60b9c010ff9c3d2a405d
  1. .github/
  2. .well-known/
  3. 2dcontext/
  4. accelerometer/
  5. accname/
  6. acid/
  7. ambient-light/
  8. animation-worklet/
  9. annotation-model/
  10. annotation-protocol/
  11. annotation-vocab/
  12. apng/
  13. appmanifest/
  14. audio-output/
  15. background-fetch/
  16. BackgroundSync/
  17. badging/
  18. battery-status/
  19. beacon/
  20. bluetooth/
  21. clear-site-data/
  22. client-hints/
  23. clipboard-apis/
  24. common/
  25. compat/
  26. compression/
  27. conformance-checkers/
  28. console/
  29. contacts/
  30. content-dpr/
  31. content-security-policy/
  32. cookie-store/
  33. cookies/
  34. core-aam/
  35. cors/
  36. credential-management/
  37. css/
  38. custom-elements/
  39. device-memory/
  40. docs/
  41. document-policy/
  42. dom/
  43. domparsing/
  44. domxpath/
  45. dpub-aam/
  46. dpub-aria/
  47. editing/
  48. element-timing/
  49. encoding/
  50. encoding-detection/
  51. encrypted-media/
  52. entries-api/
  53. event-timing/
  54. eventsource/
  55. feature-policy/
  56. fetch/
  57. FileAPI/
  58. fonts/
  59. forced-colors-mode/
  60. fullscreen/
  61. gamepad/
  62. generic-sensor/
  63. geolocation-API/
  64. geolocation-sensor/
  65. graphics-aam/
  66. gyroscope/
  67. hr-time/
  68. html/
  69. html-longdesc/
  70. html-media-capture/
  71. idle-detection/
  72. imagebitmap-renderingcontext/
  73. images/
  74. import-maps/
  75. IndexedDB/
  76. inert/
  77. infrastructure/
  78. input-device-capabilities/
  79. input-events/
  80. installedapp/
  81. interfaces/
  82. intersection-observer/
  83. js/
  84. js-self-profiling/
  85. keyboard-lock/
  86. keyboard-map/
  87. largest-contentful-paint/
  88. layout-instability/
  89. lifecycle/
  90. loading/
  91. longtask-timing/
  92. magnetometer/
  93. mathml/
  94. measure-memory/
  95. media/
  96. media-capabilities/
  97. media-playback-quality/
  98. media-source/
  99. mediacapture-depth/
  100. mediacapture-fromelement/
  101. mediacapture-image/
  102. mediacapture-record/
  103. mediacapture-streams/
  104. mediasession/
  105. mimesniff/
  106. mixed-content/
  107. mst-content-hint/
  108. native-file-system/
  109. navigation-timing/
  110. netinfo/
  111. network-error-logging/
  112. notifications/
  113. offscreen-canvas/
  114. old-tests/
  115. orientation-event/
  116. orientation-sensor/
  117. origin-policy/
  118. page-visibility/
  119. paint-timing/
  120. payment-handler/
  121. payment-method-basic-card/
  122. payment-method-id/
  123. payment-request/
  124. performance-timeline/
  125. PeriodicBackgroundSync/
  126. permissions/
  127. permissions-request/
  128. permissions-revoke/
  129. picture-in-picture/
  130. pointerevents/
  131. pointerlock/
  132. portals/
  133. preload/
  134. presentation-api/
  135. printing/
  136. priority-hints/
  137. proximity/
  138. push-api/
  139. quirks/
  140. referrer-policy/
  141. remote-playback/
  142. reporting/
  143. requestidlecallback/
  144. resize-observer/
  145. resource-timing/
  146. resources/
  147. screen-capture/
  148. screen-orientation/
  149. screen_enumeration/
  150. scroll-animations/
  151. scroll-to-text-fragment/
  152. secure-contexts/
  153. selection/
  154. serial/
  155. server-timing/
  156. service-workers/
  157. shadow-dom/
  158. shape-detection/
  159. signed-exchange/
  160. sms/
  161. speech-api/
  162. storage/
  163. storage-access-api/
  164. streams/
  165. subresource-integrity/
  166. svg/
  167. svg-aam/
  168. timing-entrytypes-registry/
  169. tools/
  170. touch-events/
  171. trust-tokens/
  172. trusted-types/
  173. uievents/
  174. upgrade-insecure-requests/
  175. url/
  176. user-timing/
  177. vibration/
  178. video-raf/
  179. visual-viewport/
  180. wai-aria/
  181. wake-lock/
  182. wasm/
  183. web-animations/
  184. web-bundle/
  185. web-locks/
  186. web-nfc/
  187. web-share/
  188. webaudio/
  189. webauthn/
  190. WebCryptoAPI/
  191. webdriver/
  192. webgl/
  193. webgpu/
  194. WebIDL/
  195. webmessaging/
  196. webmidi/
  197. webrtc/
  198. webrtc-extensions/
  199. webrtc-identity/
  200. webrtc-quic/
  201. webrtc-stats/
  202. webrtc-svc/
  203. websockets/
  204. webstorage/
  205. webusb/
  206. webvr/
  207. webvtt/
  208. webxr/
  209. workers/
  210. worklets/
  211. x-frame-options/
  212. xhr/
  213. xslt/
  214. .azure-pipelines.yml
  215. .codecov.yml
  216. .gitattributes
  217. .gitignore
  218. .mailmap
  219. .pyup.yml
  220. .taskcluster.yml
  221. CODEOWNERS
  222. CONTRIBUTING.md
  223. LICENSE.md
  224. lint.whitelist
  225. README.md
  226. testharness_runner.html
  227. update-built-tests.sh
  228. wpt
  229. wpt.py
README.md

The web-platform-tests Project

Taskcluster CI Status

The web-platform-tests Project is a cross-browser test suite for the Web-platform stack. Writing tests in a way that allows them to be run in all browsers gives browser projects confidence that they are shipping software that is compatible with other implementations, and that later implementations will be compatible with their implementations. This in turn gives Web authors/developers confidence that they can actually rely on the Web platform to deliver on the promise of working across browsers and devices without needing extra layers of abstraction to paper over the gaps left by specification editors and implementors.

The most important sources of information and activity are:

  • github.com/web-platform-tests/wpt: the canonical location of the project's source code revision history and the discussion forum for changes to the code
  • web-platform-tests.org: the documentation website; details how to set up the project, how to write tests, how to give and receive peer review, how to serve as an administrator, and more
  • wpt.live: a public deployment of the test suite, allowing anyone to run the tests by visiting from an Internet-enabled browser of their choice
  • wpt.fyi: an archive of test results collected from an array of web browsers on a regular basis
  • Real-time chat room: the IRC chat room named #testing on irc.w3.org; includes participants located around the world, but busiest during the European working day; all discussion is archived here
  • Mailing list: a public and low-traffic discussion list
  • RFCs: a repo for requesting comments on substantial changes that would impact other stakeholders or users; people who work on WPT infra are encouraged to watch the repo.

If you'd like clarification about anything, don't hesitate to ask in the chat room or on the mailing list.

Setting Up the Repo

Clone or otherwise get https://github.com/web-platform-tests/wpt.

Note: because of the frequent creation and deletion of branches in this repo, it is recommended to “prune” stale branches when fetching updates, i.e. use git pull --prune (or git fetch -p && git merge).

Running the Tests

See the documentation website and in particular the system setup for running tests locally.

Command Line Tools

The wpt command provides a frontend to a variety of tools for working with and running web-platform-tests. Some of the most useful commands are:

  • wpt serve - For starting the wpt http server
  • wpt run - For running tests in a browser
  • wpt lint - For running the lint against all tests
  • wpt manifest - For updating or generating a MANIFEST.json test manifest
  • wpt install - For installing the latest release of a browser or webdriver server on the local machine.

Windows Notes

On Windows wpt commands must be prefixed with python or the path to the python binary (if python is not in your %PATH%).

python wpt [command]

Alternatively, you may also use Bash on Ubuntu on Windows in the Windows 10 Anniversary Update build, then access your windows partition from there to launch wpt commands.

Please make sure git and your text editor do not automatically convert line endings, as it will cause lint errors. For git, please set git config core.autocrlf false in your working tree.

Publication

The master branch is automatically synced to http://w3c-test.org/.

Pull requests are automatically mirrored except those that modify sensitive resources (such as .py). The latter require someone with merge access to comment with “LGTM” or “w3c-test:mirror” to indicate the pull request has been checked.

Branches

In the vast majority of cases the only upstream branch that you should need to care about is master. If you see other branches in the repository, you can generally safely ignore them.

Contributing

Save the Web, Write Some Tests!

Absolutely everyone is welcome to contribute to test development. No test is too small or too simple, especially if it corresponds to something for which you've noted an interoperability bug in a browser.

The way to contribute is just as usual:

  • Fork this repository (and make sure you're still relatively in sync with it if you forked a while ago).
  • Create a branch for your changes: git checkout -b topic.
  • Make your changes.
  • Run ./wpt lint as described above.
  • Commit locally and push that to your repo.
  • Create a pull request based on the above.

Issues with web-platform-tests

If you spot an issue with a test and are not comfortable providing a pull request per above to fix it, please file a new issue. Thank you!