[Webkit-unassigned] [Bug 75512] [EFL] Implement the hit test result's bounding rect

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jan 5 18:49:10 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=75512





--- Comment #6 from Ryuan Choi <ryuan.choi at samsung.com>  2012-01-05 18:49:10 PST ---
(From update of attachment 121381)
View in context: https://bugs.webkit.org/attachment.cgi?id=121381&action=review

> Source/WebKit/efl/ewk/ewk_frame.cpp:696
> +    WebCore::IntRect boundingRect = innerNonSharedNode ? innerNonSharedNode->renderer()->absoluteBoundingBoxRect() : WebCore::IntRect();
> +    hitTest->bounding_box.x = boundingRect.x();
> +    hitTest->bounding_box.y = boundingRect.y();
> +    hitTest->bounding_box.w = boundingRect.width();
> +    hitTest->bounding_box.h = boundingRect.height();

hitTest->bounding_box = innerNonSharedNode ? innerNonSharedNode->renderer()->absoluteBoundingBoxRect() : WebCore::IntRect();

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list