[Title] Check node value when called getFocusedRect method
[Issue#] P130426-5253
[Problem] When push the View more tweets in twitter app Webprocess
[Cause] Missing null check routine node value while proceed getFocusedRect method.
[Solution] Adding check routine for node value.
Change-Id: I381685b7a3e3c7595d7e38f5c196ba157535d78b
static IntRect getFocusedRect(HitTestResult hitTestResult, Page* page)
{
Node* node = hitTestResult.innerNode();
+ if (!node)
+ return IntRect();
+
bool isFocusRingDrawable = false;
Node* focusableNode = node;
while (focusableNode) {