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

Unified Diff: content/test/gpu/gpu_tests/gpu_process.py

Issue 1463823002: Add DriverBugWorkaroundsInGpuProcessPage to gpu_process_test.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove the fixes and only keep the test that check presence of the fake workaround Created 4 years, 8 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
« no previous file with comments | « content/renderer/gpu/gpu_benchmarking_extension.cc ('k') | content/test/gpu/page_sets/gpu_process_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/gpu/gpu_tests/gpu_process.py
diff --git a/content/test/gpu/gpu_tests/gpu_process.py b/content/test/gpu/gpu_tests/gpu_process.py
index 5dfabdefa6d204cb1e05363e13cb36c28d60cb89..db5cc02fcba93df7f261d5a36588656c11d7e542 100644
--- a/content/test/gpu/gpu_tests/gpu_process.py
+++ b/content/test/gpu/gpu_tests/gpu_process.py
@@ -16,6 +16,14 @@ test_harness_script = r"""
}
window.domAutomationController = domAutomationController;
+
+ function GetDriverBugWorkarounds() {
+ var query_result = document.querySelector('.workarounds-list');
+ var browser_list = []
+ for (var i=0; i < query_result.childElementCount; i++)
+ browser_list.push(query_result.children[i].textContent);
+ return browser_list;
+ };
"""
class GpuProcessValidator(gpu_test_base.ValidatorBase):
« no previous file with comments | « content/renderer/gpu/gpu_benchmarking_extension.cc ('k') | content/test/gpu/page_sets/gpu_process_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698