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

Side by Side Diff: content/test/gpu/gpu_tests/pixel_test_pages.py

Issue 2469893003: [Merge to 2883] mac: Fix bug where opacity is applied twice on RenderPassDrawQuads. (Closed)
Patch Set: Created 4 years, 1 month 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 | « content/test/data/gpu/filter_effects.html ('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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 class PixelTestPage(object): 5 class PixelTestPage(object):
6 """A wrapper class mimicking the functionality of the PixelTestsStorySet 6 """A wrapper class mimicking the functionality of the PixelTestsStorySet
7 from the old-style GPU tests. 7 from the old-style GPU tests.
8 """ 8 """
9 def __init__(self, url, name, test_rect, revision, 9 def __init__(self, url, name, test_rect, revision,
10 expected_colors=None, tolerance=2, browser_args=None): 10 expected_colors=None, tolerance=2, browser_args=None):
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 base_name + '_WebGLGreenTriangle_NonChromiumImage_NoAA_NoAlpha', 272 base_name + '_WebGLGreenTriangle_NonChromiumImage_NoAA_NoAlpha',
273 test_rect=[0, 0, 300, 300], 273 test_rect=[0, 0, 300, 300],
274 revision=1, 274 revision=1,
275 browser_args=non_chromium_image_args), 275 browser_args=non_chromium_image_args),
276 276
277 # On macOS, test CSS filter effects with and without the CA compositor. 277 # On macOS, test CSS filter effects with and without the CA compositor.
278 PixelTestPage( 278 PixelTestPage(
279 'filter_effects.html', 279 'filter_effects.html',
280 base_name + '_CSSFilterEffects', 280 base_name + '_CSSFilterEffects',
281 test_rect=[0, 0, 300, 300], 281 test_rect=[0, 0, 300, 300],
282 revision=2), 282 revision=3),
283 PixelTestPage( 283 PixelTestPage(
284 'filter_effects.html', 284 'filter_effects.html',
285 base_name + '_CSSFilterEffects_NoOverlays', 285 base_name + '_CSSFilterEffects_NoOverlays',
286 test_rect=[0, 0, 300, 300], 286 test_rect=[0, 0, 300, 300],
287 revision=2, 287 revision=3,
288 tolerance=10, 288 tolerance=10,
289 browser_args=['--disable-mac-overlays']), 289 browser_args=['--disable-mac-overlays']),
290 ] 290 ]
OLDNEW
« no previous file with comments | « content/test/data/gpu/filter_effects.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698