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 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1727 '--force-compositing-mode']), | 1727 '--force-compositing-mode']), |
1728 VirtualTestSuite('targetedstylerecalc', | 1728 VirtualTestSuite('targetedstylerecalc', |
1729 'fast/css/invalidation', | 1729 'fast/css/invalidation', |
1730 ['--enable-targeted-style-recalc', | 1730 ['--enable-targeted-style-recalc', |
1731 '--force-compositing-mode']), | 1731 '--force-compositing-mode']), |
1732 VirtualTestSuite('stable', | 1732 VirtualTestSuite('stable', |
1733 'fast/css3-text/css3-text-decoration/stable', | 1733 'fast/css3-text/css3-text-decoration/stable', |
1734 ['--stable-release-mode', | 1734 ['--stable-release-mode', |
1735 '--force-compositing-mode']), | 1735 '--force-compositing-mode']), |
1736 VirtualTestSuite('stable', | 1736 VirtualTestSuite('stable', |
1737 'http/tests/websocket', | |
1738 ['--stable-release-mode', | |
1739 '--force-compositing-mode']), | |
1740 VirtualTestSuite('stable', | |
1741 'http/tests/security/mixedContent/websocket', | |
1742 ['--stable-release-mode', | |
1743 '--force-compositing-mode']), | |
1744 VirtualTestSuite('stable', | |
1745 'web-animations-api/eased-keyframes.html', | 1737 'web-animations-api/eased-keyframes.html', |
1746 ['--stable-release-mode', | 1738 ['--stable-release-mode', |
1747 '--force-compositing-mode']), | 1739 '--force-compositing-mode']), |
1748 VirtualTestSuite('linux-subpixel', | 1740 VirtualTestSuite('linux-subpixel', |
1749 'platform/linux/fast/text/subpixel', | 1741 'platform/linux/fast/text/subpixel', |
1750 ['--enable-webkit-text-subpixel-positioning', | 1742 ['--enable-webkit-text-subpixel-positioning', |
1751 '--force-compositing-mode']), | 1743 '--force-compositing-mode']), |
1752 # FIXME: Merge with mac-antialiasedtext and rename | 1744 # FIXME: Merge with mac-antialiasedtext and rename |
1753 # antialiasedtext as a separate change once DW has been | 1745 # antialiasedtext as a separate change once DW has been |
1754 # enabled for a couple of days. | 1746 # enabled for a couple of days. |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1939 | 1931 |
1940 class PhysicalTestSuite(object): | 1932 class PhysicalTestSuite(object): |
1941 def __init__(self, base, args): | 1933 def __init__(self, base, args): |
1942 self.name = base | 1934 self.name = base |
1943 self.base = base | 1935 self.base = base |
1944 self.args = args | 1936 self.args = args |
1945 self.tests = set() | 1937 self.tests = set() |
1946 | 1938 |
1947 def __repr__(self): | 1939 def __repr__(self): |
1948 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) | 1940 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) |
OLD | NEW |