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

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

Issue 477153005: DevTools: adopt existing Timeline tests for tracing based Timeline (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/devtools/front_end/components/InspectorView.js ('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 1515 matching lines...) Expand 10 before | Expand all | Expand 10 after
1526 'compositing/webgl', 1526 'compositing/webgl',
1527 ['--enable-threaded-compositing']), 1527 ['--enable-threaded-compositing']),
1528 VirtualTestSuite('deferred', 1528 VirtualTestSuite('deferred',
1529 'fast/images', 1529 'fast/images',
1530 ['--enable-deferred-image-decoding', 1530 ['--enable-deferred-image-decoding',
1531 '--enable-per-tile-painting']), 1531 '--enable-per-tile-painting']),
1532 VirtualTestSuite('deferred', 1532 VirtualTestSuite('deferred',
1533 'inspector/timeline', 1533 'inspector/timeline',
1534 ['--enable-deferred-image-decoding', 1534 ['--enable-deferred-image-decoding',
1535 '--enable-per-tile-painting']), 1535 '--enable-per-tile-painting']),
1536 VirtualTestSuite('deferred',
1537 'inspector/tracing',
1538 ['--enable-deferred-image-decoding',
1539 '--enable-per-tile-painting']),
1536 VirtualTestSuite('gpu/compositedscrolling/overflow', 1540 VirtualTestSuite('gpu/compositedscrolling/overflow',
1537 'compositing/overflow', 1541 'compositing/overflow',
1538 ['--enable-prefer-compositing-to-lcd-text'], 1542 ['--enable-prefer-compositing-to-lcd-text'],
1539 use_legacy_naming=True), 1543 use_legacy_naming=True),
1540 VirtualTestSuite('gpu/compositedscrolling/scrollbars', 1544 VirtualTestSuite('gpu/compositedscrolling/scrollbars',
1541 'scrollbars', 1545 'scrollbars',
1542 ['--enable-prefer-compositing-to-lcd-text'], 1546 ['--enable-prefer-compositing-to-lcd-text'],
1543 use_legacy_naming=True), 1547 use_legacy_naming=True),
1544 VirtualTestSuite('threaded', 1548 VirtualTestSuite('threaded',
1545 'animations', 1549 'animations',
(...skipping 14 matching lines...) Expand all
1560 'fullscreen', 1564 'fullscreen',
1561 ['--enable-threaded-compositing', 1565 ['--enable-threaded-compositing',
1562 '--enable-fixed-position-compositing', '--enable-p refer-compositing-to-lcd-text', 1566 '--enable-fixed-position-compositing', '--enable-p refer-compositing-to-lcd-text',
1563 '--enable-composited-scrolling-for-frames', '--ena ble-gesture-tap-highlight', '--enable-pinch', 1567 '--enable-composited-scrolling-for-frames', '--ena ble-gesture-tap-highlight', '--enable-pinch',
1564 '--enable-overlay-fullscreen-video', '--enable-ove rlay-scrollbars', '--enable-overscroll-notifications', 1568 '--enable-overlay-fullscreen-video', '--enable-ove rlay-scrollbars', '--enable-overscroll-notifications',
1565 '--enable-fixed-layout', '--enable-viewport', '--d isable-canvas-aa', 1569 '--enable-fixed-layout', '--enable-viewport', '--d isable-canvas-aa',
1566 '--disable-composited-antialiasing']), 1570 '--disable-composited-antialiasing']),
1567 VirtualTestSuite('implsidepainting', 1571 VirtualTestSuite('implsidepainting',
1568 'inspector/timeline', 1572 'inspector/timeline',
1569 ['--enable-threaded-compositing', '--enable-impl-si de-painting']), 1573 ['--enable-threaded-compositing', '--enable-impl-si de-painting']),
1574 VirtualTestSuite('implsidepainting',
1575 'inspector/tracing',
1576 ['--enable-threaded-compositing', '--enable-impl-si de-painting']),
1570 VirtualTestSuite('stable', 1577 VirtualTestSuite('stable',
1571 'fast/css3-text/css3-text-decoration/stable', 1578 'fast/css3-text/css3-text-decoration/stable',
1572 ['--stable-release-mode']), 1579 ['--stable-release-mode']),
1573 VirtualTestSuite('stable', 1580 VirtualTestSuite('stable',
1574 'web-animations-api', 1581 'web-animations-api',
1575 ['--stable-release-mode']), 1582 ['--stable-release-mode']),
1576 VirtualTestSuite('linux-subpixel', 1583 VirtualTestSuite('linux-subpixel',
1577 'platform/linux/fast/text/subpixel', 1584 'platform/linux/fast/text/subpixel',
1578 ['--enable-webkit-text-subpixel-positioning']), 1585 ['--enable-webkit-text-subpixel-positioning']),
1579 VirtualTestSuite('antialiasedtext', 1586 VirtualTestSuite('antialiasedtext',
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
1766 1773
1767 class PhysicalTestSuite(object): 1774 class PhysicalTestSuite(object):
1768 def __init__(self, base, args): 1775 def __init__(self, base, args):
1769 self.name = base 1776 self.name = base
1770 self.base = base 1777 self.base = base
1771 self.args = args 1778 self.args = args
1772 self.tests = set() 1779 self.tests = set()
1773 1780
1774 def __repr__(self): 1781 def __repr__(self):
1775 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args) 1782 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args)
OLDNEW
« no previous file with comments | « Source/devtools/front_end/components/InspectorView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698