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

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

Issue 282303007: Don't pretend that text-decoration is a shorthand in computed style. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Same as Patch Set 3, with --no-find-copies Created 6 years, 7 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/css/CSSComputedStyleDeclaration.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 1711 matching lines...) Expand 10 before | Expand all | Expand 10 after
1722 ['--enable-threaded-compositing', '--enable-impl-si de-painting', '--force-compositing-mode']), 1722 ['--enable-threaded-compositing', '--enable-impl-si de-painting', '--force-compositing-mode']),
1723 VirtualTestSuite('serviceworker', 1723 VirtualTestSuite('serviceworker',
1724 'http/tests/serviceworker', 1724 'http/tests/serviceworker',
1725 ['--enable-service-worker', 1725 ['--enable-service-worker',
1726 '--force-compositing-mode']), 1726 '--force-compositing-mode']),
1727 VirtualTestSuite('targetedstylerecalc', 1727 VirtualTestSuite('targetedstylerecalc',
1728 'fast/css/invalidation', 1728 'fast/css/invalidation',
1729 ['--enable-targeted-style-recalc', 1729 ['--enable-targeted-style-recalc',
1730 '--force-compositing-mode']), 1730 '--force-compositing-mode']),
1731 VirtualTestSuite('stable', 1731 VirtualTestSuite('stable',
1732 'fast/css3-text/css3-text-decoration/stable',
1733 ['--stable-release-mode',
1734 '--force-compositing-mode']),
1735 VirtualTestSuite('stable',
1732 'http/tests/websocket', 1736 'http/tests/websocket',
1733 ['--stable-release-mode', 1737 ['--stable-release-mode',
1734 '--force-compositing-mode']), 1738 '--force-compositing-mode']),
1735 VirtualTestSuite('stable', 1739 VirtualTestSuite('stable',
1736 'http/tests/security/mixedContent/websocket', 1740 'http/tests/security/mixedContent/websocket',
1737 ['--stable-release-mode', 1741 ['--stable-release-mode',
1738 '--force-compositing-mode']), 1742 '--force-compositing-mode']),
1739 VirtualTestSuite('stable', 1743 VirtualTestSuite('stable',
1740 'web-animations-api/eased-keyframes.html', 1744 'web-animations-api/eased-keyframes.html',
1741 ['--stable-release-mode', 1745 ['--stable-release-mode',
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
1931 1935
1932 class PhysicalTestSuite(object): 1936 class PhysicalTestSuite(object):
1933 def __init__(self, base, args): 1937 def __init__(self, base, args):
1934 self.name = base 1938 self.name = base
1935 self.base = base 1939 self.base = base
1936 self.args = args 1940 self.args = args
1937 self.tests = set() 1941 self.tests = set()
1938 1942
1939 def __repr__(self): 1943 def __repr__(self):
1940 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args) 1944 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args)
OLDNEW
« no previous file with comments | « Source/core/css/CSSComputedStyleDeclaration.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698