| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 webTouchEvent.touches[0].position.x = clientPoint.x(); | 319 webTouchEvent.touches[0].position.x = clientPoint.x(); |
| 320 webTouchEvent.touches[0].position.y = clientPoint.y(); | 320 webTouchEvent.touches[0].position.y = clientPoint.y(); |
| 321 webTouchEvent.touches[0].radiusX = 10; | 321 webTouchEvent.touches[0].radiusX = 10; |
| 322 webTouchEvent.touches[0].radiusY = 10; | 322 webTouchEvent.touches[0].radiusY = 10; |
| 323 | 323 |
| 324 webView->handleInputEvent(webTouchEvent); | 324 webView->handleInputEvent(webTouchEvent); |
| 325 runPendingTasks(); | 325 runPendingTasks(); |
| 326 } | 326 } |
| 327 | 327 |
| 328 // crbug.com/411038 | 328 // crbug.com/411038 |
| 329 TEST_F(TouchActionTest, DISABLED_Simple) | 329 TEST_F(TouchActionTest, Simple) |
| 330 { | 330 { |
| 331 runTouchActionTest("touch-action-simple.html"); | 331 runTouchActionTest("touch-action-simple.html"); |
| 332 } | 332 } |
| 333 | 333 |
| 334 TEST_F(TouchActionTest, Overflow) | 334 TEST_F(TouchActionTest, Overflow) |
| 335 { | 335 { |
| 336 runTouchActionTest("touch-action-overflow.html"); | 336 runTouchActionTest("touch-action-overflow.html"); |
| 337 } | 337 } |
| 338 | 338 |
| 339 TEST_F(TouchActionTest, ShadowDOM) | 339 TEST_F(TouchActionTest, ShadowDOM) |
| 340 { | 340 { |
| 341 runShadowDOMTest("touch-action-shadow-dom.html"); | 341 runShadowDOMTest("touch-action-shadow-dom.html"); |
| 342 } | 342 } |
| 343 | 343 |
| 344 TEST_F(TouchActionTest, Pan) | 344 TEST_F(TouchActionTest, Pan) |
| 345 { | 345 { |
| 346 runTouchActionTest("touch-action-pan.html"); | 346 runTouchActionTest("touch-action-pan.html"); |
| 347 } | 347 } |
| 348 | 348 |
| 349 } | 349 } |
| OLD | NEW |