Home | History | Annotate | Download | only in page

Lines Matching refs:swallowEvent

425     bool swallowEvent = false;
431 swallowEvent = handleMousePressEventDoubleClick(event);
433 swallowEvent = handleMousePressEventTripleClick(event);
435 swallowEvent = handleMousePressEventSingleClick(event);
440 return swallowEvent;
1230 bool swallowEvent = dispatchMouseEvent(eventNames().mousedownEvent, mev.targetNode(), true, m_clickCount, mouseEvent, true);
1231 m_capturesDragging = !swallowEvent;
1243 if (swallowEvent) {
1269 swallowEvent = true;
1271 swallowEvent = handleMousePressEvent(mev);
1274 return swallowEvent;
1387 bool swallowEvent = false;
1401 swallowEvent |= passMouseMoveEventToSubframe(mev, newSubframe.get(), hoveredNode);
1415 if (swallowEvent)
1418 swallowEvent = dispatchMouseEvent(eventNames().mousemoveEvent, mev.targetNode(), false, 0, mouseEvent, true);
1420 if (!swallowEvent)
1421 swallowEvent = handleMouseDraggedEvent(mev);
1424 return swallowEvent;
1744 bool swallowEvent = false;
1747 swallowEvent = m_nodeUnderMouse->dispatchMouseEvent(mouseEvent, eventType, clickCount);
1749 if (!swallowEvent && eventType == eventNames().mousedownEvent) {
1781 // If focus shift is blocked, we eat the event. Note we should never clear swallowEvent
1786 swallowEvent = true;
1789 swallowEvent = true;
1794 return swallowEvent;
1902 bool swallowEvent;
1921 swallowEvent = dispatchMouseEvent(eventNames().contextmenuEvent, mev.targetNode(), true, 0, event, true);
1923 return swallowEvent;