tree: d79b42fcb8791419813f36a9315d7e64a9e8c59c [path history] [tgz]
  1. resources/
  2. cookieListItem_attributes.tentative.https.window.js
  3. cookieStore_delete_arguments.tentative.https.window.js
  4. cookieStore_delete_basic.tentative.https.window.js
  5. cookieStore_delete_insecure.tentative.https.window.js
  6. cookieStore_event_arguments.tenative.https.window.js
  7. cookieStore_event_basic.tentative.https.window.js
  8. cookieStore_event_delete.tenative.https.window.js
  9. cookieStore_event_overwrite.tentative.https.window.js
  10. cookieStore_get_arguments.tentative.https.window.js
  11. cookieStore_get_delete_basic.tentative.https.window.js
  12. cookieStore_get_set_across_frames.tentative.https.html
  13. cookieStore_get_set_across_origins.tentative.sub.https.html
  14. cookieStore_get_set_basic.tentative.https.window.js
  15. cookieStore_getAll_arguments.tentative.https.window.js
  16. cookieStore_getAll_multiple.tentative.https.window.js
  17. cookieStore_getAll_set_basic.tentative.https.window.js
  18. cookieStore_in_detached_frame.tentative.https.html
  19. cookieStore_set_arguments.tentative.https.window.js
  20. cookieStore_special_names.tentative.https.window.js
  21. document_cookie.tentative.https.html
  22. encoding.https.window.js
  23. http_cookie_and_set_cookie_headers.tentative.https.html
  24. httponly_cookies.https.window.js
  25. idlharness.tentative.https.html
  26. idlharness_serviceworker.js
  27. idlharness_serviceworker.tentative.https.html
  28. META.yml
  29. no_name_and_no_value.tentative.https.html
  30. no_name_equals_in_value.tentative.https.html
  31. no_name_multiple_values.tentative.https.html
  32. ordering.tentative.https.html
  33. OWNERS
  34. README.md
  35. serviceworker_cookieStore_arguments.js
  36. serviceworker_cookieStore_arguments.tentative.https.html
  37. serviceworker_cookieStore_basic.js
  38. serviceworker_cookieStore_basic.tentative.https.html
  39. serviceworker_cookieStore_cross_origin.js
  40. serviceworker_cookieStore_cross_origin.tentative.https.sub.html
  41. serviceworker_cookieStore_subscriptions.js
  42. serviceworker_cookieStore_subscriptions.tentative.https.html
  43. serviceworker_cookieStore_subscriptions_basic.js
  44. serviceworker_cookieStore_subscriptions_basic.tentative.https.html
  45. serviceworker_cookieStore_subscriptions_empty.js
  46. serviceworker_cookieStore_subscriptions_empty.tentative.https.html
  47. serviceworker_cookieStore_subscriptions_eventhandler_attribute.js
  48. serviceworker_cookieStore_subscriptions_eventhandler_attribute.tentative.https.html
  49. serviceworker_cookieStore_subscriptions_mismatch.js
  50. serviceworker_cookieStore_subscriptions_mismatch.tentative.https.html
third_party/blink/web_tests/external/wpt/cookie-store/README.md

This directory contains tests for the Async Cookies API.

Note on cookie naming conventions

A simple origin cookie is a cookie named with the __Host- prefix which is always secure-flagged, always implicit-domain, always /-scoped, and hence always unambiguous in the cookie jar serialization and origin-scoped. It can be treated as a simple key/value pair.

"LEGACY" in a cookie name here means it is an old-style unprefixed cookie name, so you can't tell e.g. whether it is Secure-flagged or /-pathed just by looking at it, and its flags, domain and path may vary even in a single cookie jar serialization leading to apparent duplicate entries, ambiguities, and complexity (i.e. it cannot be treated as a simple key/value pair.)

Cookie names used in the tests are intended to be realistic. Traditional session cookie names are typically all-upper-case for broad framework compatibility. The more modern "__Host-" prefix has only one allowed casing. An expected upgrade path from traditional “legacy” cookie names to simple origin cookie names is simply to prefix the traditional name with the "__Host-" prefix.

Many of the used cookie names are non-ASCII to ensure straightforward internationalization is possible at every API surface. These work in many modern browsers, though not yet all of them.