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

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

Issue 317373007: Report correct touch hit rects for fullscreen HTML5 video on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add virtual test Created 6 years, 6 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
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 1730 matching lines...) Expand 10 before | Expand all | Expand 10 after
1741 '--force-compositing-mode']), 1741 '--force-compositing-mode']),
1742 VirtualTestSuite('linux-subpixel', 1742 VirtualTestSuite('linux-subpixel',
1743 'platform/linux/fast/text/subpixel', 1743 'platform/linux/fast/text/subpixel',
1744 ['--enable-webkit-text-subpixel-positioning', 1744 ['--enable-webkit-text-subpixel-positioning',
1745 '--force-compositing-mode']), 1745 '--force-compositing-mode']),
1746 VirtualTestSuite('antialiasedtext', 1746 VirtualTestSuite('antialiasedtext',
1747 'fast/text', 1747 'fast/text',
1748 ['--enable-direct-write', 1748 ['--enable-direct-write',
1749 '--enable-font-antialiasing', 1749 '--enable-font-antialiasing',
1750 '--force-compositing-mode']), 1750 '--force-compositing-mode']),
1751 VirtualTestSuite('hittesting',
Rick Byers 2014/06/10 21:39:57 I think you can use the existing 'android' virtual
1752 'fast/events/touch/overlayfullscreenvideo',
1753 ['--force-compositing-mode',
1754 '--enable-overlay-fullscreen-video']),
1751 1755
1752 ] 1756 ]
1753 1757
1754 @memoized 1758 @memoized
1755 def populated_virtual_test_suites(self): 1759 def populated_virtual_test_suites(self):
1756 suites = self.virtual_test_suites() 1760 suites = self.virtual_test_suites()
1757 1761
1758 # Sanity-check the suites to make sure they don't point to other suites. 1762 # Sanity-check the suites to make sure they don't point to other suites.
1759 suite_dirs = [suite.name for suite in suites] 1763 suite_dirs = [suite.name for suite in suites]
1760 for suite in suites: 1764 for suite in suites:
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
1926 1930
1927 class PhysicalTestSuite(object): 1931 class PhysicalTestSuite(object):
1928 def __init__(self, base, args): 1932 def __init__(self, base, args):
1929 self.name = base 1933 self.name = base
1930 self.base = base 1934 self.base = base
1931 self.args = args 1935 self.args = args
1932 self.tests = set() 1936 self.tests = set()
1933 1937
1934 def __repr__(self): 1938 def __repr__(self):
1935 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args) 1939 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698