Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(555)

Side by Side Diff: Source/web/tests/TouchActionTest.cpp

Issue 1162083003: Re-enable TouchAction Simple test. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use fixed line height Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | Source/web/tests/data/touch-action-tests.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | Source/web/tests/data/touch-action-tests.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698