Ulrich-Matthias Schäfer

Results 579 comments of Ulrich-Matthias Schäfer

Text can only be positioned properly if it is attached to the dom because it needs the bounding box of the text to e.g. move it by its center and...

Lew lined are created by moving the line down by its font size and a factor. The only reliable way to read the font size us getComputedStyle which does not...

Text movemt requires the bounding box function of the brrowser which is only available if the element is visible. We try to do our best to make the elemet visible...

Animations should be fluid (we sped this up a lot with the release of v3. However what you can try is waiting till all images are loaded before starting to...

Please show me the part of the spec which allows plus signs in path data because that is completely new to me :D

Thanks for diving into this. Will fix it as soon as I find some time

Hm, not really true. transform can handle transform params as well as matrices. It returns TransformData + the a-f of the matrix // EDIT: Its a bug anyway but the...

Sorry for not coming back on this. The first issue is fixed but transform still returns transform data and teh matrix. not only a matrix

The failing test is caused by a change in `nodeOrNew`: ```js export function nodeOrNew (name, node) { return (node && node.ownerDocument && node instanceof node.ownerDocument.defaultView.Node) ? node : create(name) }...