Home | History | Annotate | Download | only in css

Lines Matching refs:TouchAction

1471 static PassRefPtrWillBeRawPtr<CSSValue> touchActionFlagsToCSSValue(TouchAction touchAction)
1474 if (touchAction == TouchActionAuto)
1476 if (touchAction & TouchActionNone) {
1477 ASSERT(touchAction == TouchActionNone);
1480 if (touchAction == (TouchActionPanX | TouchActionPanY | TouchActionPinchZoom)) {
1483 if (touchAction & TouchActionPanX)
1485 if (touchAction & TouchActionPanY)
2274 return touchActionFlagsToCSSValue(style->touchAction());