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

Unified Diff: content/test/gpu/page_sets/gpu_process_tests.py

Issue 2347383002: X11: Use better visuals for OpenGL (Closed)
Patch Set: Fix --single-process Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: content/test/gpu/page_sets/gpu_process_tests.py
diff --git a/content/test/gpu/page_sets/gpu_process_tests.py b/content/test/gpu/page_sets/gpu_process_tests.py
index 80eaf3f9f05473f6ef8e415e7486ca43c70b29f6..ccfedf8a75d3c05ed41a11bb4b045f05ec7075aa 100644
--- a/content/test/gpu/page_sets/gpu_process_tests.py
+++ b/content/test/gpu/page_sets/gpu_process_tests.py
@@ -576,7 +576,7 @@ class HasTransparentVisualsGpuProcessPage(DriverBugWorkaroundsTestsPage):
shared_page_state_class=HasTransparentVisualsShared,
expectations=expectations,
expected_workaround=None,
- unexpected_workaround='disable_transparent_visuals')
+ unexpected_workaround=None)
def Validate(self, tab, results):
if sys.platform.startswith('linux'):
@@ -587,9 +587,6 @@ class NoTransparentVisualsShared(GpuProcessSharedPageState):
def __init__(self, test, finder_options, story_set):
super(NoTransparentVisualsShared, self).__init__(
test, finder_options, story_set)
- options = finder_options.browser_options
- if sys.platform.startswith('linux'):
- options.AppendExtraBrowserArgs('--disable_transparent_visuals=1')
class NoTransparentVisualsGpuProcessPage(DriverBugWorkaroundsTestsPage):
def __init__(self, story_set, expectations):
@@ -598,7 +595,7 @@ class NoTransparentVisualsGpuProcessPage(DriverBugWorkaroundsTestsPage):
page_set=story_set,
shared_page_state_class=NoTransparentVisualsShared,
expectations=expectations,
- expected_workaround='disable_transparent_visuals',
+ expected_workaround=None,
unexpected_workaround=None)
def Validate(self, tab, results):

Powered by Google App Engine
This is Rietveld 408576698