Skip to content

Latest commit

 

History

History
125 lines (85 loc) · 9.44 KB

explainer.md

File metadata and controls

125 lines (85 loc) · 9.44 KB

Highlight API Explained

Overview

The Highlight API extends the concept of CSS Highlight Pseudo-elements by providing a way for web developers to style the text of arbitrary Range objects, rather than being limited to the user-agent defined ::selection, ::inactive-selection, ::spelling-error, and ::grammar-error. This is useful in a variety of scenarios, including editing frameworks that wish to implement their own selection, find-on-page over virtualized documents, multiple selection to represent online collaboration, and spellchecking frameworks.

Current browsers do not provide this functionality which forces web developers and framework authors to modify the underlying structure of the DOM tree in order to achieve the rendering they desire. This can quickly become complicated in cases where the desired highlight/selection spans elements across multiple subtrees, and requires DOM updates to the view in order to adjust highlights as they change. The Highlight API provides a programmatic way of adding and removing highlights that do not affect the underlying DOM structure, but instead applies styles based on Range objects.

Example usage

The following code uses the ::highlight pseudo-element to apply a yellow background and blue foreground color to the text One two. It does so by adding a Range into the HighlightsMap (a new concept introduced by this proposal).

<style>
:root::highlight(example-highlight) {
    background-color: yellow;
    color:blue;
}
</style>
<body><span>One </span><span>two </span><span>three...</span>
<script>
    let highlightRange = new Range();
    highlightRange.setStart(document.body, 0);
    highlightRange.setEnd(document.body, 2);

    CSS.highlights.append("example-highlight", highlightRange);
</script>

The next example achieves the same result by using the style property on the Range object. Adding a CSSStyleDeclaration named style is a new concept introduced by this proposal. The style property allows for programmatic manipulation of the style separate from the declarative model of the ::highlight pseudo-element.

<body><span>One </span><span>two </span><span>three...</span>
<script>
    let highlightRange = new Range();
    highlightRange.setStart(document.body, 0);
    highlightRange.setEnd(document.body, 2);
    highlightRange.style.backgroundColor = "yellow";
    highlightRange.style.color = "blue";

    CSS.highlights.append("inline-highlight", highlightRange);
</script>

CSS.highlights is a HighlightsMap. The HighlightsMap is a maplike object with a few affordances for mapping a name to an ordered sequence of Range objects, including a variadic set(), an append() method, and an insert() method. The order is important because multiple ranges can apply over the same content and order disambiguates which styles should applied as explained in the Application of CSS properties section.

CSS.highlights.set("foo", range2, range3);
CSS.highlights.append("foo", range4);
CSS.highlights.insert("foo", 0, range1);
console.log(CSS.highlights.get("foo")); // Logs [range1, range2, range3, range4]

Application of CSS properties

The HighlightsMap is structured as a map so that there is a logical grouping of highlights. This allows web developers and frameworks to have highlights grouped in such a way that they are more easily composed (e.g. one framework can do spellcheck highlighting, while another can manage find-on-page, with yet another performing highlighting for selection).

During the CSS cascade, the ::highlight pseudo will cascade style properties into a map referenced by the matching originating element, indexed by the identifier name. Any Range that exists in the highlight map under that identifier will be styled based on these computed maps of the originating elements that are covered by the Range (which can be a single element). Additionally, the Range object's 'inline' style (i.e. properties set directly on the .style member) will be applied on top of the cascaded values for the given highlight identifier. The values of the Range objects' style are not stored as part of the cascade, but instead are used when determining which properties to paint to portion of an inline box.

In terms of painting, the ::highlight pseudo is treated as a highlight pseudo-element, as described in CSS Pseudo Elements Level 4. Only a specific subset of style properties will apply and are limited to those that affect text.

Following the code example above, if we have the following snippet of HTML:

<p>Some |text|</p>

where 'text' is covered by a Range (as denoted by the | characters) in the HighlightsMap under the 'example-highlight' identifier. In this case, during painting, the inline box containing Some text will detect that there is a Range that spans part of the box. Due to this, painting text will reference the Range and its association in the HighlightsMap in order to determine what styles to use. For this example the Range belongs to the 'example-highlight' identifier, which applies background-color:yellow and color:blue, based on the map that was cascaded onto the <p> element. If the Range had an inline style of color:black, this will be applied and overwrite the cascaded blue color for 'example-highlight'. The text 'Some ' will be painted as it normally would.

There can be multiple such ranges for a given inline box and Ranges added to the map can overlap — in these cases, the associated text will be split into a set of offsets, such that each member of the set has a unique collection of ranges covering it. The style properties are then computed for each member in the set by applying the styles of the applicable Ranges in ascending priority order (based on the priority property on Range), where the last write of a given property wins. In the event that Ranges overlap and have the same priority, the timestamp of when the Range was added to the map is used.

It is also possible to add entries in the HighlightsMap, without there being a corresponding ::highlight() pseudo element for the associated document. In this case an there are no cascaded properties to apply when painting inline boxes — only the inline properties directly set on the Range objects will apply (and if there are none, there will be no impact on painting).

Example with overlapping Ranges

Take the following html snippet:

<style>
p::highlight(foo) {
    color:blue;
    background-color:yellow;
}
p::highlight(bar) {
    background-color:orange;
}

</style>
<p>|Som|e t|ext|</p>
   1   2   1   2
<script>
CSS.higlights.append("foo", range1);
CSS.higlights.append("bar", range2);
</script>

Where (1) shows that range1 covers "Some t" and (2) denotes range2 covers "e text".

Because there are no priorities set (i.e. there is a tie between range1 and range2, the ranges' styles are applied in timestamp order. The rendered results will have "Som" with blue text on yellow background, "e t" with blue text on orange background, and "ext" with the default color on orange background.

overlap example1

Setting range1.priority = 1; would cause range1 to apply on top of range2, which results in "Some t" being blue on yellow, and "ext" being default color on orange.

overlap example2

Invalidation

Ranges are live ranges - DOM changes within one of the Range objects will result in the new contents being highlighted. Changes to the boundary points of Ranges in the HighlightsMap will result in the user-agent invalidating the view and repainting the changed highlights appropriately. If there are DOM/CSS changes that result in a different cascaded highlight map for a given element, and there exists one or more Range objects in the highlights map for the cascaded identifiers, the layout representation of that element should be notified that the painting of the element might have changed. Ranges that are positioned inside of documents that are not in the view are ignored. The HighlightsMap is per-document — therefore, Ranges that are positioned inside of a different document than the HighlightsMap it is a part of are ignored for rendering.

Removal of highlights

Because Range objects are live ranges, they must be modified when web developers wish their contents to no longer be highlighted. This can be achieved by removing the Range from the map, by passing it to the delete() method (note that delete() is overloaded so that passing a string will remove an entire group).

Open questions

Consider refactoring the naming (RangeDecorationMap and ::range-decoration(foo)?) if consensus determines that 'highlight' is too specific.

Should the .style property be added to AbstractRange and have styling apply to StaticRanges as well? What are the implications of this?

Should we allow empty Ranges to be rendered like a caret, or are they not rendered at all?

How should inline 'inherit' values be treated? The cascaded values are resolved per usual, but a range can span multiple elements which could all have different 'computed' values for 'inherit'.

Can a Range participate in multiple groups? If so how do we order the cascaded properties for each group?