[fxtf-drafts] [geometry] Use of SameValueZero in "validate and fixup" doesn't make sense

bzbarsky has just created a new issue for https://github.com/w3c/fxtf-drafts:

== [geometry] Use of SameValueZero in "validate and fixup" doesn't make sense ==
https://drafts.fxtf.org/geometry/#matrix-validate-and-fixup says things like:

> a and m11 are both present and SameValueZero(a, m11) is false.

but `a` and `m11` are both `unrestricted double` IDL members, so this is passing two doubles to a function that expects two ES values.  It should either pass two Number values constructed from `a` and `m11` or it should be using something defined to work on doubles.


Please view or discuss this issue at https://github.com/w3c/fxtf-drafts/issues/232 using your GitHub account

Received on Friday, 20 October 2017 19:56:11 UTC