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

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

Issue 2376743002: Implement commit for unaccelerated canvas with GPU compositing (Closed)
Patch Set: fix windbg compile error Created 4 years, 2 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/gpu_tests/pixel_test_pages.py
diff --git a/content/test/gpu/gpu_tests/pixel_test_pages.py b/content/test/gpu/gpu_tests/pixel_test_pages.py
index 7834083281c192f402d1cd9b963db4b5aafc3bdd..afee3accafd18953220540855e17c640818f157f 100644
--- a/content/test/gpu/gpu_tests/pixel_test_pages.py
+++ b/content/test/gpu/gpu_tests/pixel_test_pages.py
@@ -193,6 +193,20 @@ def ExperimentalCanvasFeaturesPages(base_name):
test_rect=[0, 0, 350, 350],
revision=1,
browser_args=browser_args + unaccelerated_args),
+
+ PixelTestPage(
+ 'pixel_offscreenCanvas_2d_commit_main.html',
+ base_name + '_OffscreenCanvasUnaccelerated2DGPUCompositing',
+ test_rect=[0, 0, 350, 350],
+ revision=1,
+ browser_args=browser_args + ['--disable-accelerated-2d-canvas']),
+
+ PixelTestPage(
+ 'pixel_offscreenCanvas_2d_commit_worker.html',
+ base_name + '_OffscreenCanvasUnaccelerated2DGPUCompositingWorker',
+ test_rect=[0, 0, 350, 350],
+ revision=1,
+ browser_args=browser_args + ['--disable-accelerated-2d-canvas']),
]

Powered by Google App Engine
This is Rietveld 408576698