1. LCH and Lab color values

    The `lch()` and `lab()` color functions are based on the CIE LAB color space, representing colors in a way that closely matches human perception and provides access to a wider spectrum of colors than offered by the usual RGB color space.

  2. CSS 2.1 selectors

    Basic CSS selectors including: `*` (universal selector), `>` (child selector), `:first-child`, `:link`, `:visited`, `:active`, `:hover`, `:focus`, `:lang()`, `+` (adjacent sibling selector), `[attr]`, `[attr="val"]`, `[attr~="val"]`, `[attr|="bar"]`, `.foo` (class selector), `#foo` (id selector)

  3. dataset & data-* attributes

    Method of applying and accessing custom data to elements.

  4. css at-rule: `@font-face`: src: `format('*-variations')`

  5. css property: --*: `env()`: safe area inset variable `safe-area-inset-bottom`

  6. css property: --*: `env()`: safe area inset variable `safe-area-inset-left`

  7. css property: --*: `env()`: safe area inset variable `safe-area-inset-right`

  8. css property: --*: `env()`: safe area inset variable `safe-area-inset-top`

  9. css property: --*: `env()`: window controls overlay variable `titlebar-area-height`

  10. css property: --*: `env()`: window controls overlay variable `titlebar-area-width`

  11. css property: --*: `env()`: window controls overlay variable `titlebar-area-x`

  12. css property: --*: `env()`: window controls overlay variable `titlebar-area-y`

  13. css property: --*: `var()`

  14. css property: hyphens: hyphenation dictionary for afrikaans (af, af-*)

  15. css property: hyphens: hyphenation dictionary for bulgarian (bg, bg-*)

  16. css property: hyphens: hyphenation dictionary for catalan (ca, ca-*)

  17. css property: hyphens: hyphenation dictionary for croatian (hr, hr-*)

  18. css property: hyphens: hyphenation dictionary for czech (cs, cs-*)

  19. css property: hyphens: hyphenation dictionary for danish (da, da-*)

  20. css property: hyphens: hyphenation dictionary for dutch (nl, nl-*)

  21. css property: hyphens: hyphenation dictionary for english (en, en-*)

  22. css property: hyphens: hyphenation dictionary for esperanto (eo, eo-*)

  23. css property: hyphens: hyphenation dictionary for estonian (et, et-*)

  24. css property: hyphens: hyphenation dictionary for finnish (fi, fi-*)

  25. css property: hyphens: hyphenation dictionary for french (fr, fr-*)

  26. css property: hyphens: hyphenation dictionary for galician (gl, gl-*)

  27. css property: hyphens: hyphenation dictionary for hungarian (hu, hu-*)

  28. css property: hyphens: hyphenation dictionary for icelandic (is, is-*)

  29. css property: hyphens: hyphenation dictionary for italian (it, it-*)

  30. css property: hyphens: hyphenation dictionary for kurmanji (kmr, kmr-*)

  31. css property: hyphens: hyphenation dictionary for latin (la, la-*)

  32. css property: hyphens: hyphenation dictionary for mongolian (mn, mn-*)

  33. css property: hyphens: hyphenation dictionary for polish (pl, pl-*)

  34. css property: hyphens: hyphenation dictionary for russian (ru, ru-*)

  35. css property: hyphens: hyphenation dictionary for slovenian (sl, sl-*)

  36. css property: hyphens: hyphenation dictionary for spanish (es, es-*)

  37. css property: hyphens: hyphenation dictionary for swedish (sv, sv-*)

  38. css property: hyphens: hyphenation dictionary for turkish (tr, tr-*)

  39. css property: hyphens: hyphenation dictionary for ukrainian (uk, uk-*)

  40. css property: hyphens: hyphenation dictionary for welsh (cy, cy-*)

  41. css selector: universal selector (`*`)

  42. css selector: universal selector (`*`): namespaces (`*|*`)

  43. html attribute: `data-*` attributes

  44. javascript operator: exponentiation (`**`)

  45. javascript operator: exponentiation assignment (`x **= y`)

  46. javascript operator: multiplication (`*`)

  47. javascript operator: multiplication assignment (`x *= y`)

  48. javascript operator: `yield*`

  49. regular_expressions: quantifier: `*`, `+`, `?`, `{n}`, `{n,}`, `{n,m}`

  50. javascript statement: export: `export * as namespace`