Changeset 76267 in webkit
- Timestamp:
- Jan 20, 2011, 11:07:20 AM (14 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r76262 r76267 1 2011-01-20 Kevin Decker <kdecker@apple.com> 2 3 Reviewed by Anders Carlsson. 4 5 <rdar://problem/8880689> need a way to obtain the rendered rectangle for box elements 6 https://bugs.webkit.org/show_bug.cgi?id=52823 7 8 * WebProcess/InjectedBundle/API/c/WKBundleNodeHandle.cpp: 9 (WKBundleNodeHandleGetRenderRect): Added new method that will return a rendered rectangle for box elements 10 * WebProcess/InjectedBundle/API/c/WKBundleNodeHandlePrivate.h: Ditto. 11 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp: Ditto. 12 (WebKit::InjectedBundleNodeHandle::renderRect): Ditto. 13 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h: Ditto. 14 1 15 2011-01-20 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com> 2 16 -
trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleNodeHandle.cpp
r73579 r76267 50 50 } 51 51 52 WKRect WKBundleNodeHandleGetRenderRect(WKBundleNodeHandleRef nodeHandleRef, bool* isReplaced) 53 { 54 return toAPI(toImpl(nodeHandleRef)->renderRect(isReplaced)); 55 } 56 52 57 void WKBundleNodeHandleSetHTMLInputElementValueForUser(WKBundleNodeHandleRef htmlInputElementHandleRef, WKStringRef valueRef) 53 58 { -
trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleNodeHandlePrivate.h
r73579 r76267 41 41 42 42 WK_EXPORT WKRect WKBundleNodeHandleGetElementBounds(WKBundleNodeHandleRef nodeHandle); 43 WK_EXPORT WKRect WKBundleNodeHandleGetRenderRect(WKBundleNodeHandleRef nodeHandle, bool* isReplaced); 44 43 45 44 46 /* HTMLInputElement Specific Operations */ -
trunk/Source/WebKit2/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp
r73579 r76267 105 105 return static_cast<Element*>(m_node.get())->boundsInWindowSpace(); 106 106 } 107 108 IntRect InjectedBundleNodeHandle::renderRect(bool* isReplaced) const 109 { 110 return m_node.get()->renderRect(isReplaced); 111 } 107 112 108 113 void InjectedBundleNodeHandle::setHTMLInputElementValueForUser(const String& value) -
trunk/Source/WebKit2/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h
r75971 r76267 57 57 // Note: These should only be operations that are not exposed to JavaScript. 58 58 WebCore::IntRect elementBounds() const; 59 WebCore::IntRect renderRect(bool*) const; 59 60 void setHTMLInputElementValueForUser(const String&); 60 61 bool isHTMLInputElementAutofilled() const;
Note:
See TracChangeset
for help on using the changeset viewer.