Element.prependChild

Puts the current element first in our children list. The given element must not have a parent already.

class Element
prependChild
out { assert (e.parentNode is this); assert (e.parentDocument is this.parentDocument); assert (children[0] is e); }
Suggestion Box / Bug Report