HomeSort by relevance Sort by last modified time
    Searched refs:QWebElement (Results 1 - 22 of 22) sorted by null

  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/webelement/
main.cpp 24 #include <qwebelement.h>
30 //! [Traversing with QWebElement]
32 QWebElement doc = frame->documentElement();
33 QWebElement body = doc.firstChild();
34 QWebElement firstParagraph = body.firstChild();
35 QWebElement secondParagraph = firstParagraph.nextSibling();
36 //! [Traversing with QWebElement]
49 QWebElement document = frame->documentElement();
59 QWebElement button = document.findFirst("input[type=submit]");
68 QWebElement document = frame->documentElement()
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebelement.cpp 21 #include "qwebelement.h"
71 \class QWebElement
73 \brief The QWebElement class provides convenient access to DOM elements in
77 A QWebElement object allows easy access to the document model, represented
98 \snippet webkitsnippets/webelement/main.cpp Traversing with QWebElement
117 The underlying content of QWebElement is explicitly shared. Creating a copy
118 of a QWebElement does not create a copy of the content. Instead, both
141 QWebElement::QWebElement()
150 QWebElement::QWebElement(WebCore::Element* domElement
    [all...]
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
    [all...]
qwebframe.h 50 class QWebElement;
76 QWebElement enclosingBlockElement() const;
83 QWebElement linkElement() const;
93 QWebElement element() const;
192 QWebElement documentElement() const;
194 QWebElement findFirstElement(const QString &selectorQuery) const;
qwebframe_p.h 34 #include "qwebelement.h"
139 QWebElement enclosingBlock;
145 QWebElement linkElement;
qwebframe.cpp 87 #include "qwebelement.h"
    [all...]
qwebpage.h 40 class QWebElement;
  /external/webkit/Source/WebKit/qt/tests/qwebelement/
tst_qwebelement.cpp 26 #include <qwebelement.h>
106 QWebElement body = m_mainFrame->documentElement();
119 QWebElement body = m_mainFrame->documentElement();
130 QWebElement body = m_mainFrame->documentElement();
159 QWebElement svg = m_mainFrame->findFirstElement("svg");
178 QWebElement svg = m_mainFrame->findFirstElement("svg");
196 QWebElement body = m_mainFrame->documentElement();
199 QWebElement p = m_mainFrame->documentElement().findAll("p").at(0);
266 QWebElement body = m_mainFrame->documentElement();
269 QWebElement svg = body.findAll("*#foobar").at(0)
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebhistoryinterface/
tst_qwebhistoryinterface.cpp 26 #include <qwebelement.h>
90 QWebElement anchor = m_view->page()->mainFrame()->findFirstElement("a[id=vlink]");
91 QString linkColor = anchor.styleProperty("color", QWebElement::ComputedStyle);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.h 49 class QWebElement;
154 static QString markerTextForListItem(const QWebElement& listItem);
155 static QVariantMap computedStyleIncludingVisitedInfo(const QWebElement& element);
192 static QVariantList nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping);
204 static QVariant shadowRoot(const QWebElement&);
DumpRenderTreeSupportQt.cpp 77 #include "qwebelement.h"
528 QString DumpRenderTreeSupportQt::markerTextForListItem(const QWebElement& listItem)
547 QVariantMap DumpRenderTreeSupportQt::computedStyleIncludingVisitedInfo(const QWebElement& element)
944 QVariantList DumpRenderTreeSupportQt::nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping)
956 // QWebElement will be null if the Node is not an HTML Element
958 res << QVariant::fromValue(QWebElement(nodes->item(i)));
    [all...]
  /external/webkit/Tools/DumpRenderTree/qt/
LayoutTestControllerQt.h 43 #include <qwebelement.h>
234 QVariantList nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping);
244 QString markerTextForListItem(const QWebElement& listItem);
245 QVariantMap computedStyleIncludingVisitedInfo(const QWebElement& element) const;
252 QVariant shadowRoot(const QWebElement&);
LayoutTestControllerQt.cpp 44 qRegisterMetaType<QWebElement>("QWebElement");
739 QString LayoutTestController::markerTextForListItem(const QWebElement& listItem)
744 QVariantMap LayoutTestController::computedStyleIncludingVisitedInfo(const QWebElement& element) const
783 QVariant LayoutTestController::shadowRoot(const QWebElement& element)
859 QVariantList LayoutTestController::nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping)
  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/
qtwebkit_bridge_snippets.cpp 58 void doSomethingWithWebElement(const QWebElement&);
  /external/webkit/Source/WebKit/qt/tests/benchmarks/painting/
tst_painting.cpp 22 #include <qwebelement.h>
115 QWebElement bodyElement = m_page->mainFrame()->findFirstElement("body");
  /external/webkit/Source/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp 24 #include <qwebelement.h>
72 Q_PROPERTY(QWebElement webElementProperty READ webElementProperty WRITE setWebElementProperty)
202 QWebElement webElementProperty() const {
206 void setWebElementProperty(const QWebElement& element) {
471 void myOverloadedSlot(const QWebElement &arg) {
473 m_actuals << QVariant::fromValue<QWebElement>(arg);
510 QWebElement m_webElement;
521 void doSomethingWithWebElement(const QWebElement& element)
    [all...]
  /external/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp 53 #include "qwebelement.h"
122 // this is here as a proxy, so we'd have a class to friend in QWebElement,
123 // as getting/setting a WebCore in QWebElement is private
126 static QWebElement create(Element* element)
128 return QWebElement(element);
131 static Element* get(const QWebElement& element)
765 } else if (hint == (QMetaType::Type) qMetaTypeId<QWebElement>()) {
767 ret = QVariant::fromValue<QWebElement>(QtWebElementRuntime::create((static_cast<JSHTMLElement*>(object))->impl()));
769 ret = QVariant::fromValue<QWebElement>(QtWebElementRuntime::create((static_cast<JSDocument*>(object))->impl()->documentElement()));
771 ret = QVariant::fromValue<QWebElement>(QWebElement())
    [all...]
qt_instance.cpp 38 #include <qwebelement.h>
87 qRegisterMetaType<QWebElement>();
  /external/webkit/Source/WebKit/qt/tests/qwebview/
tst_qwebview.cpp 31 #include <qwebelement.h>
253 QWebElement inputElement = mainFrame->documentElement().findFirst(QLatin1String("input[type=text]"));
  /external/webkit/Source/WebKit/qt/declarative/
qdeclarativewebview.cpp 34 #include "qwebelement.h"
1017 QWebElement element = hit.enclosingBlockElement();
    [all...]
  /external/webkit/Tools/QtTestBrowser/
launcherwindow.cpp 715 foreach (QWebElement e, result)
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebpage/
tst_qwebpage.cpp 40 #include <qwebelement.h>
    [all...]

Completed in 529 milliseconds