OLD | NEW |
1 # Copyright (C) 2010 Google Inc. All rights reserved. | 1 # Copyright (C) 2010 Google Inc. All rights reserved. |
2 # | 2 # |
3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
5 # met: | 5 # met: |
6 # | 6 # |
7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 ['--enable-threaded-compositing']), | 346 ['--enable-threaded-compositing']), |
347 VirtualTestSuite('virtual/threaded/transitions', | 347 VirtualTestSuite('virtual/threaded/transitions', |
348 'transitions', | 348 'transitions', |
349 ['--enable-threaded-compositing']), | 349 ['--enable-threaded-compositing']), |
350 VirtualTestSuite('virtual/web-animations-css/animations', | 350 VirtualTestSuite('virtual/web-animations-css/animations', |
351 'animations', | 351 'animations', |
352 ['--enable-web-animations-css']), | 352 ['--enable-web-animations-css']), |
353 VirtualTestSuite('virtual/stable/webexposed', | 353 VirtualTestSuite('virtual/stable/webexposed', |
354 'webexposed', | 354 'webexposed', |
355 ['--stable-release-mode']), | 355 ['--stable-release-mode']), |
| 356 VirtualTestSuite('virtual/android/fullscreen', |
| 357 'fullscreen', |
| 358 ['--force-compositing-mode', '--allow-webui-composi
ting', '--enable-threaded-compositing', |
| 359 '--enable-fixed-position-compositing', '--enable-a
ccelerated-overflow-scroll', '--enable-accelerated-scrollable-frames', |
| 360 '--enable-composited-scrolling-for-frames', '--ena
ble-gesture-tap-highlight', '--enable-pinch', |
| 361 '--enable-overlay-fullscreen-video', '--enable-ove
rlay-scrollbars', '--enable-overscroll-notifications', |
| 362 '--enable-fixed-layout', '--enable-viewport', '--d
isable-canvas-aa', |
| 363 '--disable-composited-antialiasing']), |
356 ] | 364 ] |
357 | 365 |
358 # | 366 # |
359 # PROTECTED METHODS | 367 # PROTECTED METHODS |
360 # | 368 # |
361 # These routines should only be called by other methods in this file | 369 # These routines should only be called by other methods in this file |
362 # or any subclasses. | 370 # or any subclasses. |
363 # | 371 # |
364 | 372 |
365 def _build_path(self, *comps): | 373 def _build_path(self, *comps): |
(...skipping 30 matching lines...) Expand all Loading... |
396 # That's fine because, in this case, we must already be running the | 404 # That's fine because, in this case, we must already be running the |
397 # most up-to-date one. | 405 # most up-to-date one. |
398 except OSError: | 406 except OSError: |
399 pass | 407 pass |
400 return True | 408 return True |
401 | 409 |
402 def _chromium_baseline_path(self, platform): | 410 def _chromium_baseline_path(self, platform): |
403 if platform is None: | 411 if platform is None: |
404 platform = self.name() | 412 platform = self.name() |
405 return self.path_from_webkit_base('LayoutTests', 'platform', platform) | 413 return self.path_from_webkit_base('LayoutTests', 'platform', platform) |
OLD | NEW |