1. EventTarget.addEventListener()

    The modern standard API for adding DOM event handlers. Introduced in the DOM Level 2 Events spec. Also implies support for `removeEventListener`, the [capture phase](https://dom.spec.whatwg.org/#dom-event-capturing_phase) of DOM event dispatch, as well as the `stopPropagation()` and `preventDefault()` event methods.

  2. classList (DOMTokenList)

    Method of easily manipulating classes on elements, using the `DOMTokenList` object.

  3. Crisp edges/pixelated images

    Scales images with an algorithm that preserves edges and contrast, without smoothing colors or introducing blur. This is intended for images such as pixel art. Official values that accomplish this for the `image-rendering` property are `crisp-edges` and `pixelated`.

  4. :focus-visible CSS pseudo-class

    The `:focus-visible` pseudo-class applies while an element matches the `:focus` pseudo-class, and the UA determines via heuristics that the focus should be specially indicated on the element (typically via a “focus ring”).

  5. :is() CSS pseudo-class

    The `:is()` (formerly `:matches()`, formerly `:any()`) pseudo-class checks whether the element at its position in the outer selector matches any of the selectors in its selector list. It's useful syntactic sugar that allows you to avoid writing out all the combinations manually as separate selectors. The effect is similar to nesting in Sass and most other CSS preprocessors.

  6. selector list argument of :not()

    Selectors Level 3 only allowed `:not()` pseudo-class to accept a single simple selector, which the element must not match any of. Thus, `:not(a, .b, [c])` or `:not(a.b[c])` did not work. Selectors Level 4 allows `:not()` to accept a list of selectors. Thus, `:not(a):not(.b):not([c])` can instead be written as `:not(a, .b, [c])` and `:not(a.b[c])` works as intended.

  7. Datalist element

    Method of setting a list of options for a user to select in a text field, while leaving the ability to enter a custom value.

  8. disabled attribute of the fieldset element

    Allows disabling all of the form control descendants of a fieldset via a `disabled` attribute on the fieldset element itself.

  9. CSS Flexible Box Layout Module

    Method of positioning elements in horizontal or vertical stacks. Support includes all properties prefixed with `flex`, as well as `display: flex`, `display: inline-flex`, `align-content`, `align-items`, `align-self`, `justify-content` and `order`.

  10. display: flow-root

    The element generates a block container box, and lays out its contents using flow layout. It always establishes a new block formatting context for its contents. It provides a better solution to the most use cases of the "clearfix" hack.

  11. Page Visibility

    JavaScript API for determining whether a document is visible on the display

  12. Permissions API

    High-level JavaScript API for checking and requesting permissions

  13. Permissions Policy

    A security mechanism that allows developers to explicitly enable or disable various powerful browser features for a given site. Similar to [Document Policy](/document-policy).

  14. Promise.prototype.finally

    When the promise is settled, whether fulfilled or rejected, the specified callback function is executed.

  15. Promises

    A promise represents the eventual result of an asynchronous operation.

  16. text-emphasis styling

    Method of using small symbols next to each glyph to emphasize a run of text, commonly used in East Asian languages. The `text-emphasis` shorthand, and its `text-emphasis-style` and `text-emphasis-color` longhands, can be used to apply marks to the text. The `text-emphasis-position` property, which inherits separately, allows setting the emphasis marks' position with respect to the text.

  17. event api: istrusted

  18. external api: issearchproviderinstalled

  19. fetchevent api: isreload

  20. filesystementry api: isdirectory

  21. filesystementry api: isfile

  22. filesystemhandle api: issameentry

  23. gpuadapter api: isfallbackadapter

  24. htmlelement api: iscontenteditable

  25. htmlimageelement api: ismap

  26. idbindex api: isautolocale

  27. inputevent api: iscomposing

  28. issecurecontext api

  29. issecurecontext api: available in workers

  30. keyboardevent api: iscomposing

  31. node api: isconnected

  32. node api: isdefaultnamespace

  33. node api: isequalnode

  34. node api: issamenode

  35. pointerevent api: isprimary

  36. range api: ispointinrange

  37. scheduling api: isinputpending

  38. screendetailed api: isinternal

  39. screendetailed api: isprimary

  40. screen api: isextended

  41. selection api: iscollapsed

  42. usbdevice api: isochronoustransferin

  43. usbdevice api: isochronoustransferout

  44. useractivation api: isactive

  45. xrview api: isfirstpersonobserver

  46. css property: isolation

  47. css property: width: is animatable

  48. html element: img: ismap

  49. javascript built-in: isfinite

  50. javascript built-in: isnan