[svgwg] Issue: SVGTransform's setMatrix method should take a DOMMatrixInit marked as Agenda+

dirkschulze has just labeled an issue for https://github.com/w3c/svgwg as "Agenda+":

== SVGTransform's setMatrix method should take a DOMMatrixInit ==
https://svgwg.org/svg2-draft/coords.html#InterfaceSVGTransform

```
void setMatrix(DOMMatrixReadOnly matrix);
```

This should be

```
void setMatrix(optional DOMMatrixInit matrix);
```

The prose can then invoke https://drafts.fxtf.org/geometry/#create-a-dommatrix-from-the-dictionary if you want an actual `DOMMatrix` to work with, but working with a dictionary works as well. In the latter case, https://drafts.fxtf.org/geometry/#matrix-validate-and-fixup should be invoked on the dictionary first.

See https://github.com/w3c/svgwg/issues/326

Received on Thursday, 8 November 2018 09:34:42 UTC