I read that it is sometimes a good idea to append DOM elements to a Document Fragment first in order to avoid reflow (https://developer.mozilla.org/de/docs/Web/API/Document/createDocumentFragment).
Working with SVG I am wondering whether there is a (performance) difference between appending all SVG elements before appending to the DOM tree to
- a Document Fragment
- a SVG group element (not yet appended to the DOM tree)
Maybe someone has a clue.