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

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

Issue 2360413002: Implement OffscreenCanvas Unaccelerated 2d commit() on main thread (Closed)
Patch Set: fix 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
« no previous file with comments | « content/test/gpu/gpu_tests/pixel_expectations.py ('k') | content/test/gpu/page_sets/pixel_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/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 520629d2fbca70cfd66eac3f54d18d01d2feb1b6..bf37ffa2b09d05d9a6db9cdd37e4182c143f013a 100644
--- a/content/test/gpu/gpu_tests/pixel_test_pages.py
+++ b/content/test/gpu/gpu_tests/pixel_test_pages.py
@@ -164,20 +164,30 @@ def ExperimentalCanvasFeaturesPages(base_name):
browser_args=browser_args),
PixelTestPage(
- 'pixel_acceleratedOffscreen2d_commit_main.html',
+ 'pixel_offscreenCanvas_2d_commit_main.html',
base_name + '_OffscreenCanvasAccelerated2D',
test_rect=[0, 0, 350, 350],
revision=1,
browser_args=browser_args),
PixelTestPage(
- 'pixel_acceleratedOffscreen2d_commit_worker.html',
+ 'pixel_offscreenCanvas_2d_commit_worker.html',
base_name + '_OffscreenCanvasAccelerated2DWorker',
test_rect=[0, 0, 350, 350],
revision=1,
browser_args=browser_args),
+
+ PixelTestPage(
+ 'pixel_offscreenCanvas_2d_commit_main.html',
+ base_name + '_OffscreenCanvasUnaccelerated2D',
+ test_rect=[0, 0, 350, 350],
+ revision=1,
+ browser_args=browser_args + [
+ '--disable-accelerated-2d-canvas',
+ '--disable-gpu-compositing']),
]
+
# Pages that should be run with various macOS specific command line
# arguments.
def MacSpecificPages(base_name):
« no previous file with comments | « content/test/gpu/gpu_tests/pixel_expectations.py ('k') | content/test/gpu/page_sets/pixel_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698