Lines Matching refs:canStartSelection
6434 …y. We now decide when to prevent selection from starting by calling canStartSelection on the node.
6435 …2) Implements canStartSelection which returns false for all elements that used to have -webkit-use…
6437 …tarting within -webkit-user-select:none blocks, but now we only use canStartSelection for that. T…
6442 …all usage of -webkit-user-select: ignore. This is now handled internally with canStartSelection().
6450 …* dom/Node.cpp: (WebCore::Node::canStartSelection): Added. Always allows selection to be started i…
6453 …* html/HTMLAnchorElement.cpp: (WebCore::HTMLAnchorElement::canStartSelection): Added. If its not a…
6456 …* html/HTMLButtonElement.h: (WebCore::HTMLButtonElement::canStartSelection): Added. Disallows sele…
6457 …* html/HTMLImageElement.h: (WebCore::HTMLImageElement::canStartSelection): Added. Disallows select…
6459 …* html/HTMLInputElement.cpp: (WebCore::HTMLInputElement::canStartSelection): Added. Disallows sele…
6461 …* html/HTMLSelectElement.h: (WebCore::HTMLSelectElement::canStartSelection): Added. Disallows sele…
6469 …anMouseDownStartSelect): Now fires the selectStart event, and calls canStartSelection instead of c…
6472 …* page/FocusController.cpp: (WebCore::clearSelectionIfNeeded): Calls canStartSelection instead of …
6492 …Style): Remove adjustment for links. This is now handled in HTMLAnchorElement::canStartSelection.