Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I faced exactly the same problem. In my app wherever i had click events coded using 'touchend' in jquery bind(), this error was coming up and it used to never respond to clicks (taps).. and gave a frozen kind of feel. So I just tried replacing 'touchend' with 'click' in bind(), and it worked! responded to clicks (Taps) and also didn't show that log entry of webcoreglue.. </p> <p>I also found this piece of code in Android's webview code..</p> <pre><code>HTMLElement* WebViewCore::retrieveElement(int x, int y, const QualifiedName&amp; tagName) { HitTestResult hitTestResult = m_mainFrame-&gt;eventHandler() -&gt;hitTestResultAtPoint(IntPoint(x, y), false, false, DontHitTestScrollbars, HitTestRequest::Active | HitTestRequest::ReadOnly, IntSize(1, 1)); if (!hitTestResult.innerNode() || !hitTestResult.innerNode()-&gt;inDocument()) { LOGE("Should not happen: no in document Node found"); return 0; } const ListHashSet&lt;RefPtr&lt;Node&gt; &gt;&amp; list = hitTestResult.rectBasedTestResult(); if (list.isEmpty()) { LOGE("Should not happen: no rect-based-test nodes found"); return 0; } Node* node = hitTestResult.innerNode(); Node* element = node; while (element &amp;&amp; (!element-&gt;isElementNode() || !element-&gt;hasTagName(tagName))) { element = element-&gt;parentNode(); } DBG_NAV_LOGD("node=%p element=%p x=%d y=%d nodeName=%s tagName=%s", node, element, x, y, node-&gt;nodeName().utf8().data(), element ? ((Element*) element)-&gt;tagName().utf8().data() : "&lt;none&gt;"); return static_cast&lt;WebCore::HTMLElement*&gt;(element); }​ </code></pre> <p>and this too..</p> <pre><code>// get the highlight rectangles for the touch point (x, y) with the slop Vector&lt;IntRect&gt; WebViewCore::getTouchHighlightRects(int x, int y, int slop) { Vector&lt;IntRect&gt; rects; m_mousePos = IntPoint(x - m_scrollOffsetX, y - m_scrollOffsetY); HitTestResult hitTestResult = m_mainFrame-&gt;eventHandler()-&gt;hitTestResultAtPoint(IntPoint(x, y), false, false, DontHitTestScrollbars, HitTestRequest::Active | HitTestRequest::ReadOnly, IntSize(slop, slop)); if (!hitTestResult.innerNode() || !hitTestResult.innerNode()-&gt;inDocument()) { LOGE("Should not happen: no in document Node found"); return rects; } const ListHashSet&lt;RefPtr&lt;Node&gt; &gt;&amp; list = hitTestResult.rectBasedTestResult(); if (list.isEmpty()) { LOGE("Should not happen: no rect-based-test nodes found"); return rects; } //Rest of the part is omitted here... </code></pre> <p>Notice that log message there? I am guessing this code is for identifying the x and y axis vectors generated on clicks or taps or swipes.. ​</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload