Home | History | Annotate | Download | only in Api

Lines Matching refs:markup

266     \a markup. The string may contain HTML or XML tags, which is parsed and
273 void QWebElement::setOuterXml(const QString &markup)
280 static_cast<HTMLElement*>(m_element)->setOuterHTML(markup, exception);
300 Replaces the contents of this element with \a markup. The string may
308 void QWebElement::setInnerXml(const QString &markup)
315 static_cast<HTMLElement*>(m_element)->setInnerHTML(markup, exception);
962 Appends the result of parsing \a markup as the element's last child.
968 void QWebElement::appendInside(const QString &markup)
977 RefPtr<DocumentFragment> fragment = htmlElement->createContextualFragment(markup);
1008 Prepends the result of parsing \a markup as the element's first child.
1014 void QWebElement::prependInside(const QString &markup)
1023 RefPtr<DocumentFragment> fragment = htmlElement->createContextualFragment(markup);
1057 Inserts the result of parsing \a markup before this element.
1063 void QWebElement::prependOutside(const QString &markup)
1075 RefPtr<DocumentFragment> fragment = htmlElement->createContextualFragment(markup);
1107 Inserts the result of parsing \a markup after this element.
1113 void QWebElement::appendOutside(const QString &markup)
1125 RefPtr<DocumentFragment> fragment = htmlElement->createContextualFragment(markup);
1253 Encloses the contents of this element with the result of parsing \a markup.
1254 This element becomes the child of the deepest descendant within \a markup.
1258 void QWebElement::encloseContentsWith(const QString &markup)
1270 RefPtr<DocumentFragment> fragment = htmlElement->createContextualFragment(markup);
1328 Encloses this element with the result of parsing \a markup. This element
1329 becomes the child of the deepest descendant within \a markup.
1333 void QWebElement::encloseWith(const QString &markup)
1345 RefPtr<DocumentFragment> fragment = htmlElement->createContextualFragment(markup);
1388 Replaces this element with the result of parsing \a markup.
1394 void QWebElement::replace(const QString &markup)
1399 appendOutside(markup);