Enable text fragments across redirects

A text fragment occurs in a URL fragment and begins with ":~:text=...".
It is used to highlight and scroll the provided text into view when the
page is loaded. For user privacy reasons, we restrict scrolling the text
into view unless the navigation occurred via a user gesture. See:
https://github.com/WICG/scroll-to-text-fragment#security-considerations
for more details.

However, it is common (particularly on social and messaging services
where content is user-generated) for links to be served via a redirect.
A typical example (from chat.google.com) works like this:

 1. User receives and clicks a link to https://example.com#:~:text=foo"
 2. chat.google.com opens a new tab using window.open("", "_blank")
 3. chat.google.com calls document.write on the newly opened window to
   write a <meta> tag-based client redirect to
   google.com/url?url=https://example.com... which is the URL
   redirection service with the destination URL as a query param.
 4. google.com/url then calls window.location and writes
   "https://example.com#:~:text=foo" into it
 5. the new tab finally navigates to example.com

The only navigation that had a user gesture attached to it is the
initial empty document navigation in step 2. This means the example.com
page is navigated to without a user gesture and the text fragment is
blocked. A similar pattern is seen on many popular services: Twitter,
Instagram, Facebook Messenger, etc.

This CL solves the above scenario by introducing a "text fragment
token". This token grants its holder permission to invoke a text
fragment. The token can be used during load to invoke the text fragment,
or it can be passed into a navigation to grant permission to the next
page without requiring a user gesture. However, in either case, the
token is consumed so a page cannot both invoke a text fragment and pass
the token.

The token is created in only in DocumentLoader's constructor and while
processing a same-document navigation. For regular navigations, it is
only created if the current navigation was user initiated. For
same-document navigations, it's created only if browser-initiated and
the navigation has a text fragment. This mechanism can be thought of as
a user gesture that applies only to text fragment and whose lifetime
extends across navigations but cannot be copied and is always consumed
on use.

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

The web-platform-tests Project

Taskcluster CI Status documentation manifest Python 3

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.
  • wpt serve-wave - For starting the wpt http server and the WAVE test runner. For more details on how to use the WAVE test runner see the documentation.

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!