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 1587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1598 'fullscreen', | 1598 'fullscreen', |
1599 ['--force-compositing-mode', '--enable-threaded-com
positing', | 1599 ['--force-compositing-mode', '--enable-threaded-com
positing', |
1600 '--enable-fixed-position-compositing', '--enable-a
ccelerated-overflow-scroll', '--enable-accelerated-scrollable-frames', | 1600 '--enable-fixed-position-compositing', '--enable-a
ccelerated-overflow-scroll', '--enable-accelerated-scrollable-frames', |
1601 '--enable-composited-scrolling-for-frames', '--ena
ble-gesture-tap-highlight', '--enable-pinch', | 1601 '--enable-composited-scrolling-for-frames', '--ena
ble-gesture-tap-highlight', '--enable-pinch', |
1602 '--enable-overlay-fullscreen-video', '--enable-ove
rlay-scrollbars', '--enable-overscroll-notifications', | 1602 '--enable-overlay-fullscreen-video', '--enable-ove
rlay-scrollbars', '--enable-overscroll-notifications', |
1603 '--enable-fixed-layout', '--enable-viewport', '--d
isable-canvas-aa', | 1603 '--enable-fixed-layout', '--enable-viewport', '--d
isable-canvas-aa', |
1604 '--disable-composited-antialiasing', '--enable-acc
elerated-fixed-root-background']), | 1604 '--disable-composited-antialiasing', '--enable-acc
elerated-fixed-root-background']), |
1605 VirtualTestSuite('implsidepainting', | 1605 VirtualTestSuite('implsidepainting', |
1606 'inspector/timeline', | 1606 'inspector/timeline', |
1607 ['--enable-threaded-compositing', '--enable-impl-si
de-painting', '--force-compositing-mode']), | 1607 ['--enable-threaded-compositing', '--enable-impl-si
de-painting', '--force-compositing-mode']), |
1608 VirtualTestSuite('serviceworker', | |
1609 'http/tests/serviceworker', | |
1610 ['--enable-service-worker', | |
1611 '--force-compositing-mode']), | |
1612 VirtualTestSuite('targetedstylerecalc', | 1608 VirtualTestSuite('targetedstylerecalc', |
1613 'fast/css/invalidation', | 1609 'fast/css/invalidation', |
1614 ['--enable-targeted-style-recalc', | 1610 ['--enable-targeted-style-recalc', |
1615 '--force-compositing-mode']), | 1611 '--force-compositing-mode']), |
1616 VirtualTestSuite('stable', | 1612 VirtualTestSuite('stable', |
1617 'fast/css3-text/css3-text-decoration/stable', | 1613 'fast/css3-text/css3-text-decoration/stable', |
1618 ['--stable-release-mode', | 1614 ['--stable-release-mode', |
1619 '--force-compositing-mode']), | 1615 '--force-compositing-mode']), |
1620 VirtualTestSuite('stable', | 1616 VirtualTestSuite('stable', |
1621 'web-animations-api', | 1617 'web-animations-api', |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1808 | 1804 |
1809 class PhysicalTestSuite(object): | 1805 class PhysicalTestSuite(object): |
1810 def __init__(self, base, args): | 1806 def __init__(self, base, args): |
1811 self.name = base | 1807 self.name = base |
1812 self.base = base | 1808 self.base = base |
1813 self.args = args | 1809 self.args = args |
1814 self.tests = set() | 1810 self.tests = set() |
1815 | 1811 |
1816 def __repr__(self): | 1812 def __repr__(self): |
1817 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) | 1813 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) |
OLD | NEW |