| Index: Source/web/WebRuntimeFeatures.cpp
|
| diff --git a/Source/web/WebRuntimeFeatures.cpp b/Source/web/WebRuntimeFeatures.cpp
|
| index f95762cb0975aca8ca4782ddc3cfc4e0d6a3b71b..273ae318f64dec20eb89c9fd3ceb391c3c986aae 100644
|
| --- a/Source/web/WebRuntimeFeatures.cpp
|
| +++ b/Source/web/WebRuntimeFeatures.cpp
|
| @@ -344,6 +344,16 @@ bool WebRuntimeFeatures::isTouchEnabled()
|
| return RuntimeEnabledFeatures::touchEnabled();
|
| }
|
|
|
| +void WebRuntimeFeatures::enablePointerEventsMaxTouchPoints(bool enable)
|
| +{
|
| + RuntimeEnabledFeatures::setPointerEventsMaxTouchPointsEnabled(enable);
|
| +}
|
| +
|
| +bool WebRuntimeFeatures::isPointerEventsMaxTouchPointsEnabled()
|
| +{
|
| + return RuntimeEnabledFeatures::pointerEventsMaxTouchPointsEnabled();
|
| +}
|
| +
|
| void WebRuntimeFeatures::enableWebAnimationsCSS()
|
| {
|
| RuntimeEnabledFeatures::setWebAnimationsEnabled(true);
|
|
|