function prepend_child(Frame $child, $update_node = true)
 {
     while ($child instanceof Frame_Decorator) {
         $child = $child->_frame;
     }
     $this->_frame->prepend_child($child, $update_node);
 }