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

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

Issue 139273007: Web Animations: Remove legacy animations engine. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
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 1534 matching lines...) Expand 10 before | Expand all | Expand 10 after
1545 VirtualTestSuite('gpu/compositedscrolling/scrollbars', 1545 VirtualTestSuite('gpu/compositedscrolling/scrollbars',
1546 'scrollbars', 1546 'scrollbars',
1547 ['--enable-accelerated-overflow-scroll'], 1547 ['--enable-accelerated-overflow-scroll'],
1548 use_legacy_naming=True), 1548 use_legacy_naming=True),
1549 VirtualTestSuite('threaded', 1549 VirtualTestSuite('threaded',
1550 'animations', 1550 'animations',
1551 ['--enable-threaded-compositing']), 1551 ['--enable-threaded-compositing']),
1552 VirtualTestSuite('threaded', 1552 VirtualTestSuite('threaded',
1553 'transitions', 1553 'transitions',
1554 ['--enable-threaded-compositing']), 1554 ['--enable-threaded-compositing']),
1555 VirtualTestSuite('legacy-animations-engine',
1556 'animations',
1557 ['--disable-web-animations-css']),
1558 VirtualTestSuite('legacy-animations-engine',
1559 'transitions',
1560 ['--disable-web-animations-css']),
1561 VirtualTestSuite('stable', 1555 VirtualTestSuite('stable',
1562 'webexposed', 1556 'webexposed',
1563 ['--stable-release-mode']), 1557 ['--stable-release-mode']),
1564 VirtualTestSuite('stable', 1558 VirtualTestSuite('stable',
1565 'media/stable', 1559 'media/stable',
1566 ['--stable-release-mode']), 1560 ['--stable-release-mode']),
1567 VirtualTestSuite('android', 1561 VirtualTestSuite('android',
1568 'fullscreen', 1562 'fullscreen',
1569 ['--force-compositing-mode', '--allow-webui-composi ting', '--enable-threaded-compositing', 1563 ['--force-compositing-mode', '--allow-webui-composi ting', '--enable-threaded-compositing',
1570 '--enable-fixed-position-compositing', '--enable-a ccelerated-overflow-scroll', '--enable-accelerated-scrollable-frames', 1564 '--enable-fixed-position-compositing', '--enable-a ccelerated-overflow-scroll', '--enable-accelerated-scrollable-frames',
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
1741 if name.find('/') != -1: 1735 if name.find('/') != -1:
1742 _log.error("Virtual test suites names cannot contain /'s: %s" % name) 1736 _log.error("Virtual test suites names cannot contain /'s: %s" % name)
1743 return 1737 return
1744 self.name = 'virtual/' + name + '/' + base 1738 self.name = 'virtual/' + name + '/' + base
1745 self.base = base 1739 self.base = base
1746 self.args = args 1740 self.args = args
1747 self.tests = tests or set() 1741 self.tests = tests or set()
1748 1742
1749 def __repr__(self): 1743 def __repr__(self):
1750 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self. args) 1744 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self. args)
OLDNEW
« LayoutTests/TestExpectations ('K') | « Source/core/testing/Internals.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698