Home | History | Annotate | Download | only in dom

Lines Matching defs:we

323     // If the pseudoStyles have changed, we want any StyleChange that is not NoChange
865 // FIXME: Even if we are not visible, we might have a child that is visible.
899 // We haven't been receiving notifications while there were no registered lists, so the cache is invalid now.
1114 // We assume that if newChild is a DocumentFragment, all children are created from the same document
1170 // We
1469 // We allow selections to begin within an element that has -webkit-user-select: none set,
1481 // For these cases we do NOT want to return the shadowParentNode() here
1667 // FIXME: we could also optimize for the the [id="foo"] case
1675 // FIXME: We can speed this up by implementing caching similar to the one use by getElementById
1772 // FIXME: For DocumentType nodes we should check equality on
2057 // If either of start1 or start2 is null, then we are disconnected, since one of the nodes is
2070 // We are comparing two attributes on the same node. Crawl our attribute map
2071 // and see which one we hit first.
2091 // If one node is in the document and the other is not, we must be disconnected.
2092 // If the nodes have different owning documents, they must be disconnected. Note that we avoid
2098 // We need to find a common ancestor container, and then compare the indices of the two immediate children.
2123 // Otherwise we need to see which node occurs first. Crawl backwards from child2 looking for child1.
2343 // So we don't let images be the enclosingLinkNode, even though isLink sometimes returns true
2484 // FIXME: Notify Document that the listener has vanished. We need to keep track of a number of
2504 // event listener in a cache. If we want to be able to call removeEventListener() multiple
2505 // times on different nodes, we have to delay its immediate destruction, which would happen
2686 // We don't dispatch load events to the window. That quirk was originally
2823 // we want to return false if default is prevented (already taken care of)
2824 // or if the element is default-handled by the DOM. Otherwise we let it just
2867 // Like Gecko, we just pass 0 for everything when we make a fake mouse event.
2909 // Since we dispatch up to three events here, we need to make sure we're referenced
2945 // Special case: If it's a double click event, we also send the dblclick event. This is not part
2947 // as a separate event in other DOM-compliant browsers like Firefox, and so we do the same.
2988 RefPtr<WheelEvent> we = WheelEvent::create(e.wheelTicksX(), e.wheelTicksY(),
2992 we->setAbsoluteLocation(IntPoint(pos.x(), pos.y()));
2994 if (!dispatchEvent(we.release()))