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

Unified Diff: PerformanceTests/Canvas/upload-canvas-2d-to-texture.html

Issue 1142603002: Fix blink_perf.canvas failure on chromium.perf (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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: PerformanceTests/Canvas/upload-canvas-2d-to-texture.html
diff --git a/PerformanceTests/Canvas/upload-canvas-2d-to-texture.html b/PerformanceTests/Canvas/upload-canvas-2d-to-texture.html
index 30ee01aca17277d86993bfdc88e6a36c31d25558..f7c2d17e52276c9a72942618c3f644265d9a4040 100644
--- a/PerformanceTests/Canvas/upload-canvas-2d-to-texture.html
+++ b/PerformanceTests/Canvas/upload-canvas-2d-to-texture.html
@@ -8,7 +8,7 @@
var canvas2D = document.createElement("canvas");
var ctx2D = canvas2D.getContext("2d");
var canvas3D = document.createElement('canvas');
-var gl = canvas3D.getContext('experimental-webgl');
+var gl = canvas3D.getContext('webgl');
if(!gl)
CanvasRunner.logFatalError("\nWebGL is not supported or enabled on this platform!\n");
var tex = null;

Powered by Google App Engine
This is Rietveld 408576698