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

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

Issue 364233005: [New Multicolumn] Support for paged overflow. (By mstensho). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Run fast/pagination in virtual/regionbasedmulticol. Created 6 years, 5 months 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
« no previous file with comments | « Source/core/rendering/RenderPagedFlowThread.cpp ('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 1593 matching lines...) Expand 10 before | Expand all | Expand 10 after
1604 VirtualTestSuite('antialiasedtext', 1604 VirtualTestSuite('antialiasedtext',
1605 'fast/text', 1605 'fast/text',
1606 ['--enable-direct-write', 1606 ['--enable-direct-write',
1607 '--enable-font-antialiasing']), 1607 '--enable-font-antialiasing']),
1608 VirtualTestSuite('threaded', 1608 VirtualTestSuite('threaded',
1609 'printing', 1609 'printing',
1610 ['--enable-threaded-compositing']), 1610 ['--enable-threaded-compositing']),
1611 VirtualTestSuite('regionbasedmulticol', 1611 VirtualTestSuite('regionbasedmulticol',
1612 'fast/multicol', 1612 'fast/multicol',
1613 ['--enable-region-based-columns']), 1613 ['--enable-region-based-columns']),
1614 VirtualTestSuite('regionbasedmulticol',
1615 'fast/pagination',
1616 ['--enable-region-based-columns']),
1614 ] 1617 ]
1615 1618
1616 @memoized 1619 @memoized
1617 def populated_virtual_test_suites(self): 1620 def populated_virtual_test_suites(self):
1618 suites = self.virtual_test_suites() 1621 suites = self.virtual_test_suites()
1619 1622
1620 # Sanity-check the suites to make sure they don't point to other suites. 1623 # Sanity-check the suites to make sure they don't point to other suites.
1621 suite_dirs = [suite.name for suite in suites] 1624 suite_dirs = [suite.name for suite in suites]
1622 for suite in suites: 1625 for suite in suites:
1623 assert suite.base not in suite_dirs 1626 assert suite.base not in suite_dirs
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
1788 1791
1789 class PhysicalTestSuite(object): 1792 class PhysicalTestSuite(object):
1790 def __init__(self, base, args): 1793 def __init__(self, base, args):
1791 self.name = base 1794 self.name = base
1792 self.base = base 1795 self.base = base
1793 self.args = args 1796 self.args = args
1794 self.tests = set() 1797 self.tests = set()
1795 1798
1796 def __repr__(self): 1799 def __repr__(self):
1797 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args) 1800 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args)
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderPagedFlowThread.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698