Re: [geometry] Dictionary argument for DOMQuad constructor

I think a better solution might be a single constructor (no overloads) plus static factory methods. So something like

    [Constructor(optional DOMPointInit p1, ...)]
    interface DOMQuad {
        ...
        static fromRect(optional DOMRectInit);
        static fromQuad(optional DOMQuadInit);
    }

Received on Wednesday, 25 March 2015 12:55:34 UTC