/external/webkit/Source/WebKit/qt/Api/ |
D | qwebelement.cpp | 141 QWebElement::QWebElement() in QWebElement() function in QWebElement 150 QWebElement::QWebElement(WebCore::Element* domElement) in QWebElement() function in QWebElement 161 QWebElement::QWebElement(WebCore::Node* node) in QWebElement() function in QWebElement 174 QWebElement::QWebElement(const QWebElement &other) in QWebElement() function in QWebElement 185 QWebElement &QWebElement::operator=(const QWebElement &other) in operator =() 202 QWebElement::~QWebElement() in ~QWebElement() 209 bool QWebElement::operator==(const QWebElement& o) const in operator ==() 214 bool QWebElement::operator!=(const QWebElement& o) const in operator !=() 222 bool QWebElement::isNull() const in isNull() 238 QWebElementCollection QWebElement::findAll(const QString &selectorQuery) const in findAll() [all …]
|
D | qwebelement.h | 58 class QWEBKIT_EXPORT QWebElement { 60 QWebElement(); 61 QWebElement(const QWebElement&); 62 QWebElement &operator=(const QWebElement&); 63 ~QWebElement(); 65 bool operator==(const QWebElement& o) const; 66 bool operator!=(const QWebElement& o) const; 71 QWebElement findFirst(const QString &selectorQuery) const; 109 QWebElement parent() const; 110 QWebElement firstChild() const; [all …]
|
D | qwebframe.h | 50 class QWebElement; variable 76 QWebElement enclosingBlockElement() const; 83 QWebElement linkElement() const; 93 QWebElement element() const; 192 QWebElement documentElement() const; 194 QWebElement findFirstElement(const QString &selectorQuery) const;
|
D | qwebframe.cpp | 1364 QWebElement QWebFrame::documentElement() const in documentElement() 1368 return QWebElement(); in documentElement() 1369 return QWebElement(doc->documentElement()); in documentElement() 1398 QWebElement QWebFrame::findFirstElement(const QString &selectorQuery) const in findFirstElement() 1711 linkElement = QWebElement(hitTest.URLElement()); in QWebHitTestResultPrivate() 1721 enclosingBlock = QWebElement(WebCore::enclosingBlock(innerNode.get())); in QWebHitTestResultPrivate() 1805 QWebElement QWebHitTestResult::enclosingBlockElement() const in enclosingBlockElement() 1808 return QWebElement(); in enclosingBlockElement() 1858 QWebElement QWebHitTestResult::linkElement() const in linkElement() 1861 return QWebElement(); in linkElement() [all …]
|
D | qwebframe_p.h | 139 QWebElement enclosingBlock; 145 QWebElement linkElement;
|
D | qwebpage.h | 40 class QWebElement; variable
|
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/webelement/ |
D | main.cpp | 32 QWebElement doc = frame->documentElement(); in traverse() 33 QWebElement body = doc.firstChild(); in traverse() 34 QWebElement firstParagraph = body.firstChild(); in traverse() 35 QWebElement secondParagraph = firstParagraph.nextSibling(); in traverse() 49 QWebElement document = frame->documentElement(); in findButtonAndClick() 59 QWebElement button = document.findFirst("input[type=submit]"); in findButtonAndClick() 68 QWebElement document = frame->documentElement(); in autocomplete1() 71 QWebElement firstTextInput = document.findFirst("input[type=text]"); in autocomplete1() 81 QWebElement document = frame->documentElement(); in autocomplete2() 85 QWebElement firstTextInput = document.findFirst("input[type=text]"); in autocomplete2() [all …]
|
/external/webkit/Source/WebKit/qt/tests/qwebelement/ |
D | tst_qwebelement.cpp | 106 QWebElement body = m_mainFrame->documentElement(); in textHtml() 119 QWebElement body = m_mainFrame->documentElement(); in simpleCollection() 130 QWebElement body = m_mainFrame->documentElement(); in attributes() 159 QWebElement svg = m_mainFrame->findFirstElement("svg"); in attributesNS() 178 QWebElement svg = m_mainFrame->findFirstElement("svg"); in listAttributes() 196 QWebElement body = m_mainFrame->documentElement(); in classes() 199 QWebElement p = m_mainFrame->documentElement().findAll("p").at(0); in classes() 266 QWebElement body = m_mainFrame->documentElement(); in namespaceURI() 269 QWebElement svg = body.findAll("*#foobar").at(0); in namespaceURI() 281 QWebElement body = m_mainFrame->documentElement(); in iteration() [all …]
|
/external/webkit/Source/WebKit/qt/symbian/bwins/ |
D | QtWebKitu.def | 6 …??0QWebElement@@AAE@PAVElement@WebCore@@@Z @ 5 NONAME ; QWebElement::QWebElement(class WebCore::El… 7 …??0QWebElement@@AAE@PAVNode@WebCore@@@Z @ 6 NONAME ; QWebElement::QWebElement(class WebCore::Node … 8 ??0QWebElement@@QAE@ABV0@@Z @ 7 NONAME ; QWebElement::QWebElement(class QWebElement const &) 9 ??0QWebElement@@QAE@XZ @ 8 NONAME ; QWebElement::QWebElement(void) 11 …g@@@Z @ 10 NONAME ; QWebElementCollection::QWebElementCollection(class QWebElement const &, class … 37 ??1QWebElement@@QAE@XZ @ 36 NONAME ; QWebElement::~QWebElement(void) 53 …??4QWebElement@@QAEAAV0@ABV0@@Z @ 52 NONAME ; class QWebElement & QWebElement::operator=(class QWe… 62 …??8QWebElement@@QBE_NABV0@@Z @ 61 NONAME ; bool QWebElement::operator==(class QWebElement const &)… 65 …??9QWebElement@@QBE_NABV0@@Z @ 64 NONAME ; bool QWebElement::operator!=(class QWebElement const &)… 67 …??AQWebElementCollection@@QBE?AVQWebElement@@H@Z @ 66 NONAME ; class QWebElement QWebElementCollec… [all …]
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | DumpRenderTreeSupportQt.h | 49 class QWebElement; variable 154 static QString markerTextForListItem(const QWebElement& listItem); in Q_DECLARE_METATYPE() 155 static QVariantMap computedStyleIncludingVisitedInfo(const QWebElement& element); in Q_DECLARE_METATYPE() 192 …static QVariantList nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigne… in Q_DECLARE_METATYPE() 204 static QVariant shadowRoot(const QWebElement&); in Q_DECLARE_METATYPE()
|
D | DumpRenderTreeSupportQt.cpp | 528 QString DumpRenderTreeSupportQt::markerTextForListItem(const QWebElement& listItem) in markerTextForListItem() 547 QVariantMap DumpRenderTreeSupportQt::computedStyleIncludingVisitedInfo(const QWebElement& element) in computedStyleIncludingVisitedInfo() 944 QVariantList DumpRenderTreeSupportQt::nodesFromRect(const QWebElement& document, int x, int y, unsi… in nodesFromRect() 958 res << QVariant::fromValue(QWebElement(nodes->item(i))); in nodesFromRect() 1067 QVariant DumpRenderTreeSupportQt::shadowRoot(const QWebElement& element) in shadowRoot()
|
/external/webkit/Source/WebKit/qt/tests/qwebhistoryinterface/ |
D | tst_qwebhistoryinterface.cpp | 90 QWebElement anchor = m_view->page()->mainFrame()->findFirstElement("a[id=vlink]"); in visitedLinks() 91 QString linkColor = anchor.styleProperty("color", QWebElement::ComputedStyle); in visitedLinks()
|
/external/webkit/Tools/DumpRenderTree/qt/ |
D | LayoutTestControllerQt.h | 234 …QVariantList nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right… 244 QString markerTextForListItem(const QWebElement& listItem); 245 QVariantMap computedStyleIncludingVisitedInfo(const QWebElement& element) const; 252 QVariant shadowRoot(const QWebElement&);
|
D | LayoutTestControllerQt.cpp | 44 qRegisterMetaType<QWebElement>("QWebElement"); in LayoutTestController() 739 QString LayoutTestController::markerTextForListItem(const QWebElement& listItem) in markerTextForListItem() 744 QVariantMap LayoutTestController::computedStyleIncludingVisitedInfo(const QWebElement& element) con… in computedStyleIncludingVisitedInfo() 783 QVariant LayoutTestController::shadowRoot(const QWebElement& element) in shadowRoot() 859 QVariantList LayoutTestController::nodesFromRect(const QWebElement& document, int x, int y, unsigne… in nodesFromRect()
|
/external/webkit/Source/WebKit/qt/tests/benchmarks/painting/ |
D | tst_painting.cpp | 115 QWebElement bodyElement = m_page->mainFrame()->findFirstElement("body"); in textAreas()
|
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/ |
D | qtwebkit_bridge_snippets.cpp | 58 void doSomethingWithWebElement(const QWebElement&); in wrapInFunction()
|
/external/webkit/Source/WebCore/bridge/qt/ |
D | qt_runtime.cpp | 126 static QWebElement create(Element* element) in create() 128 return QWebElement(element); in create() 131 static Element* get(const QWebElement& element) in get() 765 } else if (hint == (QMetaType::Type) qMetaTypeId<QWebElement>()) { in convertValueToQVariant() 767 …ret = QVariant::fromValue<QWebElement>(QtWebElementRuntime::create((static_cast<JSHTMLElement*>(ob… in convertValueToQVariant() 769 …ret = QVariant::fromValue<QWebElement>(QtWebElementRuntime::create((static_cast<JSDocument*>(objec… in convertValueToQVariant() 771 ret = QVariant::fromValue<QWebElement>(QWebElement()); in convertValueToQVariant() 906 if (type == qMetaTypeId<QWebElement>()) { in convertQVariantToValue() 914 …exec, toJSDOMGlobalObject(document, exec), QtWebElementRuntime::get(variant.value<QWebElement>())); in convertQVariantToValue()
|
D | qt_instance.cpp | 87 qRegisterMetaType<QWebElement>(); in QtInstance()
|
/external/webkit/Source/WebKit/qt/tests/qwebframe/ |
D | tst_qwebframe.cpp | 72 Q_PROPERTY(QWebElement webElementProperty READ webElementProperty WRITE setWebElementProperty) 202 QWebElement webElementProperty() const { in webElementProperty() 206 void setWebElementProperty(const QWebElement& element) { in setWebElementProperty() 471 void myOverloadedSlot(const QWebElement &arg) { in myOverloadedSlot() 473 m_actuals << QVariant::fromValue<QWebElement>(arg); in myOverloadedSlot() 510 QWebElement m_webElement; 521 void doSomethingWithWebElement(const QWebElement& element) in doSomethingWithWebElement() 2522 QWebElement p = frame->documentElement().findAll("p").at(0); in setHtmlWithResource() 2523 QCOMPARE(p.styleProperty("color", QWebElement::CascadedStyle), QLatin1String("red")); in setHtmlWithResource() 2675 …const QWebElement webCombo = view.page()->mainFrame()->documentElement().findFirst(QLatin1String("… in popupFocus() [all …]
|
/external/webkit/Source/WebKit/qt/ |
D | ChangeLog-2011-02-16 | 439 …Problem was that we need to register QWebElement's variant-type to Qt's meta type system at some p… 440 …evious tests inside tst_QWebFrame because it only appears when there's also a QWebElement property. 1910 [Qt] QWebElement::appendInside() doesn't work on head elements 1913 Make QWebElement::appendInside() call 1918 (QWebElement::appendInside): 2067 (QWebElement::prependOutside): Changed to use parentNode. 2068 (QWebElement::appendOutside): Ditto. 2069 (QWebElement::encloseContentsWith): Ditto. 2070 (QWebElement::encloseWith): Ditto. 2624 [Qt] QWebElement: Don't retrieve CSS rules through DOMWindow. [all …]
|
D | ChangeLog | 297 According to the documentation of QWebElement the styleProperty method should 303 (tst_QWebElement::style): Fix the expected color for QWebElement::InlineStyle. 1596 (QWebElement::evaluateJavaScript): 1624 [Qt] Add clipped version of QWebElement::render method. 1629 (QWebElement::render):
|
/external/webkit/Source/WebKit/qt/docs/ |
D | qtwebkit.qdoc | 84 is represented by QWebElement. QWebElement objects are obtained using QWebFrame's
|
D | qtwebkit-bridge.qdoc | 380 \section3 QWebElement 382 …A signal, slot or property that expects or returns a \l{QWebElement} can work seamlessly with Java… 384 a \l{QWebElement}, and receive them back. Example: 395 …Note that \l{QWebElement}s are not thread safe - an object handling them has to live in the UI thr…
|
/external/webkit/Source/WebKit/qt/tests/qwebview/ |
D | tst_qwebview.cpp | 253 …QWebElement inputElement = mainFrame->documentElement().findFirst(QLatin1String("input[type=text]"… in focusInputTypes()
|
/external/webkit/Source/WebKit/qt/declarative/ |
D | qdeclarativewebview.cpp | 1017 QWebElement element = hit.enclosingBlockElement(); in elementAreaAt()
|