| 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 ['--enable-threaded-compositing']), | 355 ['--enable-threaded-compositing']), |
| 356 VirtualTestSuite('virtual/web-animations-css/animations', | 356 VirtualTestSuite('virtual/web-animations-css/animations', |
| 357 'animations', | 357 'animations', |
| 358 ['--enable-web-animations-css']), | 358 ['--enable-web-animations-css']), |
| 359 VirtualTestSuite('virtual/stable/webexposed', | 359 VirtualTestSuite('virtual/stable/webexposed', |
| 360 'webexposed', | 360 'webexposed', |
| 361 ['--stable-release-mode']), | 361 ['--stable-release-mode']), |
| 362 VirtualTestSuite('virtual/stable/media', | 362 VirtualTestSuite('virtual/stable/media', |
| 363 'media/stable', | 363 'media/stable', |
| 364 ['--stable-release-mode']), | 364 ['--stable-release-mode']), |
| 365 VirtualTestSuite('virtual/android/fullscreen', |
| 366 'fullscreen', |
| 367 ['--force-compositing-mode', '--allow-webui-composi
ting', '--enable-threaded-compositing', |
| 368 '--enable-fixed-position-compositing', '--enable-a
ccelerated-overflow-scroll', '--enable-accelerated-scrollable-frames', |
| 369 '--enable-composited-scrolling-for-frames', '--ena
ble-gesture-tap-highlight', '--enable-pinch', |
| 370 '--enable-overlay-fullscreen-video', '--enable-ove
rlay-scrollbars', '--enable-overscroll-notifications', |
| 371 '--enable-fixed-layout', '--enable-viewport', '--d
isable-canvas-aa', |
| 372 '--disable-composited-antialiasing']), |
| 365 ] | 373 ] |
| 366 | 374 |
| 367 # | 375 # |
| 368 # PROTECTED METHODS | 376 # PROTECTED METHODS |
| 369 # | 377 # |
| 370 # These routines should only be called by other methods in this file | 378 # These routines should only be called by other methods in this file |
| 371 # or any subclasses. | 379 # or any subclasses. |
| 372 # | 380 # |
| 373 | 381 |
| 374 def _build_path(self, *comps): | 382 def _build_path(self, *comps): |
| (...skipping 30 matching lines...) Expand all Loading... |
| 405 # That's fine because, in this case, we must already be running the | 413 # That's fine because, in this case, we must already be running the |
| 406 # most up-to-date one. | 414 # most up-to-date one. |
| 407 except OSError: | 415 except OSError: |
| 408 pass | 416 pass |
| 409 return True | 417 return True |
| 410 | 418 |
| 411 def _chromium_baseline_path(self, platform): | 419 def _chromium_baseline_path(self, platform): |
| 412 if platform is None: | 420 if platform is None: |
| 413 platform = self.name() | 421 platform = self.name() |
| 414 return self.path_from_webkit_base('LayoutTests', 'platform', platform) | 422 return self.path_from_webkit_base('LayoutTests', 'platform', platform) |
| OLD | NEW |