| 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 1711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1722 ['--enable-threaded-compositing', '--enable-impl-si
de-painting', '--force-compositing-mode']), | 1722 ['--enable-threaded-compositing', '--enable-impl-si
de-painting', '--force-compositing-mode']), |
| 1723 VirtualTestSuite('serviceworker', | 1723 VirtualTestSuite('serviceworker', |
| 1724 'http/tests/serviceworker', | 1724 'http/tests/serviceworker', |
| 1725 ['--enable-service-worker', | 1725 ['--enable-service-worker', |
| 1726 '--force-compositing-mode']), | 1726 '--force-compositing-mode']), |
| 1727 VirtualTestSuite('targetedstylerecalc', | 1727 VirtualTestSuite('targetedstylerecalc', |
| 1728 'fast/css/invalidation', | 1728 'fast/css/invalidation', |
| 1729 ['--enable-targeted-style-recalc', | 1729 ['--enable-targeted-style-recalc', |
| 1730 '--force-compositing-mode']), | 1730 '--force-compositing-mode']), |
| 1731 VirtualTestSuite('stable', | 1731 VirtualTestSuite('stable', |
| 1732 'fast/css3-text/css3-text-decoration/stable', |
| 1733 ['--stable-release-mode', |
| 1734 '--force-compositing-mode']), |
| 1735 VirtualTestSuite('stable', |
| 1732 'http/tests/websocket', | 1736 'http/tests/websocket', |
| 1733 ['--stable-release-mode', | 1737 ['--stable-release-mode', |
| 1734 '--force-compositing-mode']), | 1738 '--force-compositing-mode']), |
| 1735 VirtualTestSuite('stable', | 1739 VirtualTestSuite('stable', |
| 1736 'http/tests/security/mixedContent/websocket', | 1740 'http/tests/security/mixedContent/websocket', |
| 1737 ['--stable-release-mode', | 1741 ['--stable-release-mode', |
| 1738 '--force-compositing-mode']), | 1742 '--force-compositing-mode']), |
| 1739 VirtualTestSuite('stable', | 1743 VirtualTestSuite('stable', |
| 1740 'web-animations-api/eased-keyframes.html', | 1744 'web-animations-api/eased-keyframes.html', |
| 1741 ['--stable-release-mode', | 1745 ['--stable-release-mode', |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1931 | 1935 |
| 1932 class PhysicalTestSuite(object): | 1936 class PhysicalTestSuite(object): |
| 1933 def __init__(self, base, args): | 1937 def __init__(self, base, args): |
| 1934 self.name = base | 1938 self.name = base |
| 1935 self.base = base | 1939 self.base = base |
| 1936 self.args = args | 1940 self.args = args |
| 1937 self.tests = set() | 1941 self.tests = set() |
| 1938 | 1942 |
| 1939 def __repr__(self): | 1943 def __repr__(self): |
| 1940 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) | 1944 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) |
| OLD | NEW |