Home | History | Annotate | Download | only in css

Lines Matching refs:touchAction

1452 static PassRefPtrWillBeRawPtr<CSSValue> touchActionFlagsToCSSValue(TouchAction touchAction)
1455 if (touchAction == TouchActionAuto)
1457 if (touchAction & TouchActionNone) {
1458 ASSERT(touchAction == TouchActionNone);
1461 if (touchAction == (TouchActionPanX | TouchActionPanY | TouchActionPinchZoom)) {
1464 if (touchAction & TouchActionPanX)
1466 if (touchAction & TouchActionPanY)
2245 return touchActionFlagsToCSSValue(style->touchAction());