[Bug 19988] add a [LenientFloat] to mean "ignore IDL attribute assignment or method call if a non-finite float is passed"

https://www.w3.org/Bugs/Public/show_bug.cgi?id=19988

--- Comment #1 from Boris Zbarsky <bzbarsky@mit.edu> ---
What I implemented in Gecko is that a type "contains restricted floats" if any
of the following conditions hold:

1)  It is "float" or "double".
2)  It is a nullable type where the underlying type contains restricted floats.
3)  It's a union type where one of the union members contains restricted
floats.
4)  It's a sequence type where the element type contains restricted floats.

and allowed [LenientFloat] on operations that return void and have an argument
hat contains restricted floats or on writable attributes whose type contains
restricted floats.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Received on Monday, 26 November 2012 20:04:25 UTC