| 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 'web-animations-api/eased-keyframes.html', | 1737 'web-animations-api', |
| 1738 ['--stable-release-mode', | 1738 ['--stable-release-mode', |
| 1739 '--force-compositing-mode']), | 1739 '--force-compositing-mode']), |
| 1740 VirtualTestSuite('linux-subpixel', | 1740 VirtualTestSuite('linux-subpixel', |
| 1741 'platform/linux/fast/text/subpixel', | 1741 'platform/linux/fast/text/subpixel', |
| 1742 ['--enable-webkit-text-subpixel-positioning', | 1742 ['--enable-webkit-text-subpixel-positioning', |
| 1743 '--force-compositing-mode']), | 1743 '--force-compositing-mode']), |
| 1744 VirtualTestSuite('antialiasedtext', | 1744 VirtualTestSuite('antialiasedtext', |
| 1745 'fast/text', | 1745 'fast/text', |
| 1746 ['--enable-direct-write', | 1746 ['--enable-direct-write', |
| 1747 '--enable-font-antialiasing', | 1747 '--enable-font-antialiasing', |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1924 | 1924 |
| 1925 class PhysicalTestSuite(object): | 1925 class PhysicalTestSuite(object): |
| 1926 def __init__(self, base, args): | 1926 def __init__(self, base, args): |
| 1927 self.name = base | 1927 self.name = base |
| 1928 self.base = base | 1928 self.base = base |
| 1929 self.args = args | 1929 self.args = args |
| 1930 self.tests = set() | 1930 self.tests = set() |
| 1931 | 1931 |
| 1932 def __repr__(self): | 1932 def __repr__(self): |
| 1933 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) | 1933 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) |
| OLD | NEW |