| Index: Source/web/tests/TouchActionTest.cpp
|
| diff --git a/Source/web/tests/TouchActionTest.cpp b/Source/web/tests/TouchActionTest.cpp
|
| index e54bd047b9d6b4540500da353b05d588ee39d0b0..48c87cadc88179f42c3ecce0286fd480e18ac939 100644
|
| --- a/Source/web/tests/TouchActionTest.cpp
|
| +++ b/Source/web/tests/TouchActionTest.cpp
|
| @@ -272,6 +272,8 @@ void TouchActionTest::runTestOnTree(WebCore::ContainerNode* root, WebView* webVi
|
| EXPECT_EQ(WebTouchActionPanY, client.lastTouchAction()) << failureContextPos;
|
| } else if (expectedAction == "pan-x-y") {
|
| EXPECT_EQ((WebTouchActionPanX | WebTouchActionPanY), client.lastTouchAction()) << failureContextPos;
|
| + } else if (expectedAction == "manipulation") {
|
| + EXPECT_EQ((WebTouchActionPanX | WebTouchActionPanY | WebTouchActionZoom), client.lastTouchAction()) << failureContextPos;
|
| } else {
|
| FAIL() << "Unrecognized expected-action \"" << expectedAction.ascii().data()
|
| << "\" " << failureContextPos;
|
|
|