Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: Tools/Scripts/webkitpy/layout_tests/port/base.py

Issue 769423008: Impl-side painting for svg/ layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated expectations Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « LayoutTests/svg/foreignObject/mask-expected.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1536 matching lines...) Expand 10 before | Expand all | Expand 10 after
1547 def sample_process(self, name, pid): 1547 def sample_process(self, name, pid):
1548 pass 1548 pass
1549 1549
1550 def physical_test_suites(self): 1550 def physical_test_suites(self):
1551 return [ 1551 return [
1552 # For example, to turn on force-compositing-mode in the svg/ directo ry: 1552 # For example, to turn on force-compositing-mode in the svg/ directo ry:
1553 # PhysicalTestSuite('svg', 1553 # PhysicalTestSuite('svg',
1554 # ['--force-compositing-mode']), 1554 # ['--force-compositing-mode']),
1555 PhysicalTestSuite('compositing', ['--enable-impl-side-painting']), 1555 PhysicalTestSuite('compositing', ['--enable-impl-side-painting']),
1556 PhysicalTestSuite('fast', ['--enable-impl-side-painting']), 1556 PhysicalTestSuite('fast', ['--enable-impl-side-painting']),
1557 PhysicalTestSuite('svg', ['--enable-impl-side-painting']),
1557 ] 1558 ]
1558 1559
1559 def virtual_test_suites(self): 1560 def virtual_test_suites(self):
1560 if self._virtual_test_suites is None: 1561 if self._virtual_test_suites is None:
1561 path_to_virtual_test_suites = self._filesystem.join(self.layout_test s_dir(), 'VirtualTestSuites') 1562 path_to_virtual_test_suites = self._filesystem.join(self.layout_test s_dir(), 'VirtualTestSuites')
1562 assert self._filesystem.exists(path_to_virtual_test_suites), 'Layout Tests/VirtualTestSuites not found' 1563 assert self._filesystem.exists(path_to_virtual_test_suites), 'Layout Tests/VirtualTestSuites not found'
1563 try: 1564 try:
1564 test_suite_json = json.loads(self._filesystem.read_text_file(pat h_to_virtual_test_suites)) 1565 test_suite_json = json.loads(self._filesystem.read_text_file(pat h_to_virtual_test_suites))
1565 self._virtual_test_suites = [VirtualTestSuite(**d) for d in test _suite_json] 1566 self._virtual_test_suites = [VirtualTestSuite(**d) for d in test _suite_json]
1566 except ValueError as e: 1567 except ValueError as e:
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
1736 1737
1737 class PhysicalTestSuite(object): 1738 class PhysicalTestSuite(object):
1738 def __init__(self, base, args): 1739 def __init__(self, base, args):
1739 self.name = base 1740 self.name = base
1740 self.base = base 1741 self.base = base
1741 self.args = args 1742 self.args = args
1742 self.tests = set() 1743 self.tests = set()
1743 1744
1744 def __repr__(self): 1745 def __repr__(self):
1745 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args) 1746 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args)
OLDNEW
« no previous file with comments | « LayoutTests/svg/foreignObject/mask-expected.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698