GenericInlineBox(); } function &create() { $box =& new NullBox; $css_state = new CSSState(CSS::get()); $css_state->pushState(); $box->readCSS($css_state); return $box; } function show(&$viewport) { return true; } function reflow_static(&$parent, &$context) { if (!$parent) { $this->put_left(0); $this->put_top(0); return; }; // Move current "box" to parent current coordinates. It is REQUIRED, // as some other routines uses box coordinates. $this->put_left($parent->get_left()); $this->put_top($parent->get_top()); } function is_null() { return true; } } ?>