Home | History | Annotate | Download | only in Api

Lines Matching refs:markup

293     \a markup. The string may contain HTML or XML tags, which is parsed and
300 void QWebElement::setOuterXml(const QString &markup)
307 static_cast<HTMLElement*>(m_element)->setOuterHTML(markup, exception);
316 \note The format of the markup returned will obey the namespace of the
332 Replaces the contents of this element with \a markup. The string may
340 void QWebElement::setInnerXml(const QString &markup)
347 static_cast<HTMLElement*>(m_element)->setInnerHTML(markup, exception);
355 \note The format of the markup returned will obey the namespace of the
1010 Appends the result of parsing \a markup as the element's last child.
1016 void QWebElement::appendInside(const QString &markup)
1025 RefPtr<DocumentFragment> fragment = htmlElement->Element::deprecatedCreateContextualFragment(markup);
1056 Prepends the result of parsing \a markup as the element's first child.
1062 void QWebElement::prependInside(const QString &markup)
1071 RefPtr<DocumentFragment> fragment = htmlElement->deprecatedCreateContextualFragment(markup);
1105 Inserts the result of parsing \a markup before this element.
1111 void QWebElement::prependOutside(const QString &markup)
1123 RefPtr<DocumentFragment> fragment = htmlElement->deprecatedCreateContextualFragment(markup);
1155 Inserts the result of parsing \a markup after this element.
1161 void QWebElement::appendOutside(const QString &markup)
1173 RefPtr<DocumentFragment> fragment = htmlElement->deprecatedCreateContextualFragment(markup);
1303 Encloses the contents of this element with the result of parsing \a markup.
1304 This element becomes the child of the deepest descendant within \a markup.
1308 void QWebElement::encloseContentsWith(const QString &markup)
1320 RefPtr<DocumentFragment> fragment = htmlElement->deprecatedCreateContextualFragment(markup);
1378 Encloses this element with the result of parsing \a markup. This element
1379 becomes the child of the deepest descendant within \a markup.
1383 void QWebElement::encloseWith(const QString &markup)
1395 RefPtr<DocumentFragment> fragment = htmlElement->deprecatedCreateContextualFragment(markup);
1438 Replaces this element with the result of parsing \a markup.
1444 void QWebElement::replace(const QString &markup)
1449 appendOutside(markup);