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 1549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1560 VirtualTestSuite('threaded', | 1560 VirtualTestSuite('threaded', |
1561 'animations', | 1561 'animations', |
1562 ['--enable-threaded-compositing']), | 1562 ['--enable-threaded-compositing']), |
1563 VirtualTestSuite('threaded', | 1563 VirtualTestSuite('threaded', |
1564 'transitions', | 1564 'transitions', |
1565 ['--enable-threaded-compositing']), | 1565 ['--enable-threaded-compositing']), |
1566 VirtualTestSuite('stable', | 1566 VirtualTestSuite('stable', |
1567 'webexposed', | 1567 'webexposed', |
1568 ['--stable-release-mode']), | 1568 ['--stable-release-mode']), |
1569 VirtualTestSuite('stable', | 1569 VirtualTestSuite('stable', |
| 1570 'animations-unprefixed', |
| 1571 ['--stable-release-mode']), |
| 1572 VirtualTestSuite('stable', |
1570 'media/stable', | 1573 'media/stable', |
1571 ['--stable-release-mode']), | 1574 ['--stable-release-mode']), |
1572 VirtualTestSuite('android', | 1575 VirtualTestSuite('android', |
1573 'fullscreen', | 1576 'fullscreen', |
1574 ['--force-compositing-mode', '--enable-threaded-com
positing', | 1577 ['--force-compositing-mode', '--enable-threaded-com
positing', |
1575 '--enable-fixed-position-compositing', '--enable-a
ccelerated-overflow-scroll', '--enable-accelerated-scrollable-frames', | 1578 '--enable-fixed-position-compositing', '--enable-a
ccelerated-overflow-scroll', '--enable-accelerated-scrollable-frames', |
1576 '--enable-composited-scrolling-for-frames', '--ena
ble-gesture-tap-highlight', '--enable-pinch', | 1579 '--enable-composited-scrolling-for-frames', '--ena
ble-gesture-tap-highlight', '--enable-pinch', |
1577 '--enable-overlay-fullscreen-video', '--enable-ove
rlay-scrollbars', '--enable-overscroll-notifications', | 1580 '--enable-overlay-fullscreen-video', '--enable-ove
rlay-scrollbars', '--enable-overscroll-notifications', |
1578 '--enable-fixed-layout', '--enable-viewport', '--d
isable-canvas-aa', | 1581 '--enable-fixed-layout', '--enable-viewport', '--d
isable-canvas-aa', |
1579 '--disable-composited-antialiasing', '--enable-acc
elerated-fixed-root-background']), | 1582 '--disable-composited-antialiasing', '--enable-acc
elerated-fixed-root-background']), |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1758 if name.find('/') != -1: | 1761 if name.find('/') != -1: |
1759 _log.error("Virtual test suites names cannot contain /'s: %s" %
name) | 1762 _log.error("Virtual test suites names cannot contain /'s: %s" %
name) |
1760 return | 1763 return |
1761 self.name = 'virtual/' + name + '/' + base | 1764 self.name = 'virtual/' + name + '/' + base |
1762 self.base = base | 1765 self.base = base |
1763 self.args = args | 1766 self.args = args |
1764 self.tests = tests or set() | 1767 self.tests = tests or set() |
1765 | 1768 |
1766 def __repr__(self): | 1769 def __repr__(self): |
1767 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self.
args) | 1770 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self.
args) |
OLD | NEW |