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

Side by Side Diff: LayoutTests/fast/canvas/webgl/canvas-2d-webgl-texture.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform Created 6 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 unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../../resources/js-test.js"></script> 3 <script src="../../../resources/js-test.js"></script>
4 <script src="resources/webgl-test.js"></script> 4 <script src="resources/webgl-test.js"></script>
5 <script src="resources/webgl-test-utils.js"> </script> 5 <script src="resources/webgl-test-utils.js"> </script>
6 </head> 6 </head>
7 <script> 7 <script>
8 description("Checks that copying canvas results to a WebGL texture functions wit hout error."); 8 description("Checks that copying canvas results to a WebGL texture functions wit hout error.");
9 9
10 var wtu = WebGLTestUtils; 10 var wtu = WebGLTestUtils;
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 gl.viewport(0, 0, canvas.width, canvas.height); 66 gl.viewport(0, 0, canvas.width, canvas.height);
67 67
68 // Ensure that the compositor has become active. 68 // Ensure that the compositor has become active.
69 setTimeout(draw, 0); 69 setTimeout(draw, 0);
70 } 70 }
71 </script> 71 </script>
72 <body> 72 <body>
73 <div id="description"></div> 73 <div id="description"></div>
74 <div id="console"></div> 74 <div id="console"></div>
75 <canvas id="webgl-canvas" width="32px" height="32px"></canvas> 75 <canvas id="webgl-canvas" width="32px" height="32px"></canvas>
76 <canvas id="canvas-2d" style="-webkit-transform: translateZ(0);"></canvas> 76 <canvas id="canvas-2d" style="transform: translateZ(0);"></canvas>
77 </body> 77 </body>
78 </html> 78 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698