Bug 2016876 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

The interface looks like:
```
[Exposed=Window]
interface ViewTimeline : ScrollTimeline {
  ...
  readonly attribute Element subject;
  readonly attribute CSSNumericValue startOffset;
  readonly attribute CSSNumericValue endOffset;
};
```
However, `CSSNumericValue` depend on CSS Typed OM, so for now we could just use `double` to present the percentage for now.
We will do the constructor in another bug.
The interface looks like:
```
[Exposed=Window]
interface ViewTimeline : ScrollTimeline {
  ...
  readonly attribute Element subject;
  readonly attribute CSSNumericValue startOffset;
  readonly attribute CSSNumericValue endOffset;
};
```
However, `CSSNumericValue` depend on CSS Typed OM, so for now we could just use `double` to present the percentage.
We will do the constructor in another bug.

Back to Bug 2016876 Comment 0