Since June 2025, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
The set() method of the HighlightRegistry interface adds or updates a Highlight object in the registry with the specified name.
HighlightRegistry is a Map-like object, so this is similar to using Map.set().
set(name, highlight)
nameThe name of the Highlight object to add or update. The name must be a String.
highlightThe Highlight object to add or update. This must be a Highlight interface instance.
The HighlightRegistry object.
const fooHighlight = new Highlight();
CSS.highlights.set("foo", fooHighlight);
Since the set() method returns back the registry, you can chain the method call like below:
const fooHighlight = new Highlight();
const barHighlight = new Highlight();
const bazHighlight = new Highlight();
CSS.highlights
.set("foo", fooHighlight)
.set("bar", barHighlight)
.set("baz", bazHighlight);
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
set |
105 | 105 | 140 | 91 | 17.2 | 105 | 140 | 72 | 17.2 | 20.0 | 105 | 17.2 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HighlightRegistry/set