Bug 260764

Summary: Remove 'unrestricted' from 'startTime' in DataCue.idl
Product: WebKit Reporter: Ahmad Saleem <ahmad.saleem792>
Component: MediaAssignee: Nobody <webkit-unassigned>
Status: NEW ---    
Severity: Normal CC: annevk, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: Safari Technology Preview   
Hardware: Unspecified   
OS: Unspecified   
See Also: https://github.com/WICG/datacue/issues/34

Description Ahmad Saleem 2023-08-25 23:41:19 PDT
SSIA.

Align with Web-Spec: https://wicg.github.io/datacue/#datacue-interface


In following:

[CallWith=CurrentDocument] constructor(unrestricted double startTime, unrestricted double endTime, any value, optional DOMString type);


Change to below:

[CallWith=CurrentDocument] constructor(double startTime, unrestricted double endTime, any value, optional DOMString type);

_____


Just wanted to raise so we can track it.

Thanks!
Comment 1 Radar WebKit Bug Importer 2023-09-01 23:42:22 PDT
<rdar://problem/114859531>
Comment 2 Anne van Kesteren 2023-09-10 06:29:38 PDT
That specification is very poor though, it doesn't even have a processing model. What does it mean for endTime to be set to NaN for instance?

Maybe we should wait a bit with this until it's more clear or there is a second implementation.