Searched defs:nodesFromRect (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DDumpRenderTreeSupportGtk.cpp116 JSValueRef DumpRenderTreeSupportGtk::nodesFromRect(JSContextRef context, JSValueRef value, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) function in class:DumpRenderTreeSupportGtk
128 RefPtr<NodeList> nodes = document->nodesFromRect(x, y, top, right, bottom, left, ignoreClipping);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDumpRenderTreeSupportQt.cpp944 QVariantList DumpRenderTreeSupportQt::nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) function in class:DumpRenderTreeSupportQt
954 RefPtr<NodeList> nodes = doc->nodesFromRect(x, y, top, right, bottom, left, ignoreClipping);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DLayoutTestControllerGtk.cpp127 JSValueRef LayoutTestController::nodesFromRect(JSContextRef context, JSValueRef value, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) function in class:LayoutTestController
129 return DumpRenderTreeSupportGtk::nodesFromRect(context, value, x, y, top, right, bottom, left, ignoreClipping);
/external/webkit/Tools/DumpRenderTree/qt/
H A DLayoutTestControllerQt.cpp859 QVariantList LayoutTestController::nodesFromRect(const QWebElement& document, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) function in class:LayoutTestController
861 return DumpRenderTreeSupportQt::nodesFromRect(document, x, y, top, right, bottom, left, ignoreClipping);
/external/webkit/Tools/DumpRenderTree/win/
H A DLayoutTestControllerWin.cpp182 JSValueRef LayoutTestController::nodesFromRect(JSContextRef context, JSValueRef value, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) function in class:LayoutTestController
/external/webkit/Tools/DumpRenderTree/wx/
H A DLayoutTestControllerWx.cpp516 JSValueRef LayoutTestController::nodesFromRect(JSContextRef context, JSValueRef value, int x, int y, unsigned top, unsigned right, unsigned bottom, unsigned left, bool ignoreClipping) function in class:LayoutTestController
/external/webkit/Source/WebCore/dom/
H A DDocument.cpp1096 // * making it receive a rect as parameter, i.e. nodesFromRect(x, y, w, h);
1098 // i.e. nodesFromRect(x, y, topSize, rightSize, bottomSize, leftSize);
1099 PassRefPtr<NodeList> Document::nodesFromRect(int centerX, int centerY, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping) const function in class:WebCore::Document
1124 // Passing a zero padding will trigger a rect hit test, however for the purposes of nodesFromRect,

Completed in 151 milliseconds