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

Side by Side Diff: LayoutTests/fast/canvas/webgl/viewport-unchanged-upon-resize.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../js/resources/js-test-pre.js"></script> 3 <script src="../../js/resources/js-test-pre.js"></script>
4 <script src="resources/webgl-test.js"></script> 4 <script src="resources/webgl-test.js"></script>
5 <script id="vshader" type="x-shader/x-vertex"> 5 <script id="vshader" type="x-shader/x-vertex">
6 attribute vec3 g_Position; 6 attribute vec3 g_Position;
7 7
8 void main() 8 void main()
9 { 9 {
10 gl_Position = vec4(g_Position.x, g_Position.y, g_Position.z, 1.0); 10 gl_Position = vec4(g_Position.x, g_Position.y, g_Position.z, 1.0);
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 buf[3] != 255) { 81 buf[3] != 255) {
82 testFailed("Pixel at (6, 6) should have been (0, 0, 255, 255), " + 82 testFailed("Pixel at (6, 6) should have been (0, 0, 255, 255), " +
83 "was (" + buf[0] + ", " + buf[1] + ", " + buf[2] + ", " + buf[3] + ")"); 83 "was (" + buf[0] + ", " + buf[1] + ", " + buf[2] + ", " + buf[3] + ")");
84 passed = false; 84 passed = false;
85 } 85 }
86 } 86 }
87 87
88 if (passed) 88 if (passed)
89 testPassed("Viewport correctly did not change size during canvas resize"); 89 testPassed("Viewport correctly did not change size during canvas resize");
90 </script> 90 </script>
91 <script src="../../js/resources/js-test-post.js"></script>
92 </body> 91 </body>
93 </html> 92 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/canvas/webgl/uninitialized-test.html ('k') | LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698