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.
Ambient Light Sensor
Defines a concrete sensor interface to monitor the ambient light level or illuminance of the device’s environment.
Client Hints: DPR, Width, Viewport-Width
DPR, Width, and Viewport-Width hints enable proactive content negotiation between client and server, enabling automated delivery of optimized assets - e.g. auto-negotiating image DPR resolution.
Synchronous Clipboard API
API to provide copy, cut and paste events as well as provide access to the OS clipboard.
CSS :any-link selector
The `:any-link` CSS pseudo-class matches all elements that match `:link` or `:visited`
CSS first-line pseudo-element
Allows styling specifically for the first line of text using the `::first-line` pseudo-element. Note that only a limited set of properties can be applied.
CSS line-clamp
CSS property that will contain text to a given amount of lines when used in combination with `display: -webkit-box`. It will end with ellipsis when `text-overflow: ellipsis` is included.
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.
selector list argument of :nth-child and :nth-last-child CSS pseudo-classes
The newest versions of `:nth-child()` and `:nth-last-child()` accept an optional `of S` clause which filters the children to only those which match the selector list `S`. For example, `:nth-child(1 of .foo)` selects the first child among the children that have the `foo` class (ignoring any non-`foo` children which precede that child). Similar to `:nth-of-type`, but for arbitrary selectors instead of only type selectors.
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.
HTTP Live Streaming (HLS)
HTTP-based media streaming communications protocol
Reversed attribute of ordered lists
This attribute makes an ordered list number its items in descending order (large to small), instead of ascending order (small to large; the default). The order that the list items are displayed in is not affected.
"once" event listener option
Causes an event listener to be automatically removed after it gets invoked, so that it only gets invoked once. Similar to jQuery's `$.one()` feature.
Passive event listeners
Event listeners created with the `passive: true` option cannot cancel (`preventDefault()`) the events they receive. Primarily intended to be used with touch events and `wheel` events. Since they cannot prevent scrolls, passive event listeners allow the browser to perform optimizations that result in smoother scrolling.
Link type "noreferrer"
Links with `rel="noreferrer"` set do not send the request's "referrer" header. This prevents the destination site from seeing what URL the user came from.
ES6 Template Literals (Template Strings)
Template literals are string literals allowing embedded expressions using backtick characters (`). You can use multi-line strings and string interpolation features with them. Formerly known as template strings.
text-decoration styling
Method of defining the type, style and color of lines in the text-decoration property. These can be defined as shorthand (e.g. `text-decoration: line-through dashed blue`) or as single properties (e.g. `text-decoration-color: blue`)
counter api: liststyle
document api: links
linearaccelerationsensor api
path2d api: lineto
vrpose api: linearacceleration
vrpose api: linearvelocity
vttcue api: line
xrpose api: linearvelocity
html element: li
html element: link
javascript built-in: intl: listformat: format
javascript built-in: intl: listformat: formattoparts
javascript built-in: intl: listformat: `listformat()` constructor
javascript built-in: intl: listformat: resolvedoptions
javascript built-in: intl: listformat: supportedlocalesof
javascript built-in: string: link
grammar: array literals (`[1, 2, 3]`)
grammar: boolean literals (`true`/`false`)
grammar: null literal (`null`)
grammar: regular expression literals (`/ab+c/g`)
grammar: string literals (`'hello world'`)
svg element: line
50 results found.