Lines Matching refs:htmlStack

120 …tatic protected function importQuotationStyles(ODTInternalParams $params, cssdocument $htmlStack) {  argument
123 $htmlStack->restoreToRoot ();
139 $htmlStack->open('blockquote');
140 $toMatch = $htmlStack->getCurrentElement();
171 $htmlStack->restoreToRoot ();
213 …unction importOrderedListStyles(ODTInternalParams $params, cssdocument $htmlStack, $listAlign='rig… argument
228 $htmlStack->restoreToRoot ();
232 $htmlStack->open('ol');
233 $toMatch = $htmlStack->getCurrentElement();
244 $htmlStack->open('li');
245 $toMatch = $htmlStack->getCurrentElement();
352 $htmlStack->restoreToRoot ();
355 …ction importUnorderedListStyles(ODTInternalParams $params, cssdocument $htmlStack, $listAlign='rig… argument
370 $htmlStack->restoreToRoot ();
374 $htmlStack->open('ul');
375 $toMatch = $htmlStack->getCurrentElement();
386 $htmlStack->open('li');
387 $toMatch = $htmlStack->getCurrentElement();
499 $htmlStack->restoreToRoot ();
503 static protected function importTableStyles(ODTInternalParams $params, cssdocument $htmlStack) { argument
512 $htmlStack->open($element, $attributes);
513 $toMatch = $htmlStack->getCurrentElement();
604 $htmlStack->restoreToRoot ();
609 static protected function importLinkStyles(ODTInternalParams $params, cssdocument $htmlStack) { argument
619 $htmlStack->open($element, $attributes, $pseudo_class, NULL);
620 $toMatch = $htmlStack->getCurrentElement();
641 $htmlStack->restoreToRoot ();
646 …static protected function importStyle(ODTInternalParams $params, cssdocument $htmlStack, $style_ty… argument
651 $htmlStack->open($element, $attributes);
652 $toMatch = $htmlStack->getCurrentElement();
671 $htmlStack->restoreToRoot ();
706 $htmlStack->restoreToRoot ();
718 $stack = clone $params->htmlStack;
736 $stack = clone $params->htmlStack;
817 …static protected function import_styles_from_css_internal(ODTInternalParams $params, $htmlStack, $… argument
829 $htmlStack->restoreToRoot ();
830 $htmlStack->open('p');
831 $toMatch = $htmlStack->getCurrentElement();
834 $htmlStack->restoreToRoot ();
839 self::importStyle($params, $htmlStack,
845 self::importStyle($params, $htmlStack,
854 self::importTableStyles($params, $htmlStack);
857 self::importLinkStyles($params, $htmlStack);
860 self::importUnorderedListStyles($params, $htmlStack, $listAlign);
861 self::importOrderedListStyles($params, $htmlStack, $listAlign);
866 self::importQuotationStyles($params, $htmlStack);