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

Unified Diff: PerformanceTests/Canvas/upload-webgl-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
« no previous file with comments | « PerformanceTests/Canvas/upload-video-to-texture.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PerformanceTests/Canvas/upload-webgl-to-texture.html
diff --git a/PerformanceTests/Canvas/upload-webgl-to-texture.html b/PerformanceTests/Canvas/upload-webgl-to-texture.html
index e8781edcce0d1230cdf93df0651c57d1709e38f0..45b9c39aa33444eec734c2cf4221f0921ef5c0a8 100644
--- a/PerformanceTests/Canvas/upload-webgl-to-texture.html
+++ b/PerformanceTests/Canvas/upload-webgl-to-texture.html
@@ -6,9 +6,9 @@
<script>
var sourceCanvas3D = document.createElement('canvas');
-var sourceCtx = sourceCanvas3D.getContext('experimental-webgl');
+var sourceCtx = sourceCanvas3D.getContext('webgl');
var destCanvas3D = document.createElement('canvas');
-var destCtx = destCanvas3D.getContext('experimental-webgl');
+var destCtx = destCanvas3D.getContext('webgl');
if (!sourceCtx || !destCtx)
CanvasRunner.logFatalError("\nWebGL is not supported or enabled on this platform!\n");
var tex = null;
« no previous file with comments | « PerformanceTests/Canvas/upload-video-to-texture.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698