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

Side by Side Diff: LayoutTests/fast/canvas/webgl/webgl-specific.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>WebGL GLES2 difference test.</title> 5 <title>WebGL GLES2 difference test.</title>
6 <script src="../../js/resources/js-test-pre.js"></script> 6 <script src="../../js/resources/js-test-pre.js"></script>
7 <script src="resources/webgl-test.js"></script> 7 <script src="resources/webgl-test.js"></script>
8 <script src="resources/webgl-test-utils.js"></script> 8 <script src="resources/webgl-test-utils.js"></script>
9 </head> 9 </head>
10 <body> 10 <body>
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 shouldBeTrue("gl.drawingBufferWidth >= 0 && gl.drawingBufferHeight >= 0"); 94 shouldBeTrue("gl.drawingBufferWidth >= 0 && gl.drawingBufferHeight >= 0");
95 95
96 debug(""); 96 debug("");
97 debug("Verify that bindAttribLocation rejects names start with webgl_ or _webgl_ "); 97 debug("Verify that bindAttribLocation rejects names start with webgl_ or _webgl_ ");
98 shouldGenerateGLError(gl, gl.INVALID_OPERATION, "gl.bindAttribLocation(program, 0, 'webgl_a')"); 98 shouldGenerateGLError(gl, gl.INVALID_OPERATION, "gl.bindAttribLocation(program, 0, 'webgl_a')");
99 shouldGenerateGLError(gl, gl.INVALID_OPERATION, "gl.bindAttribLocation(program, 0, '_webgl_a')"); 99 shouldGenerateGLError(gl, gl.INVALID_OPERATION, "gl.bindAttribLocation(program, 0, '_webgl_a')");
100 100
101 successfullyParsed = true; 101 successfullyParsed = true;
102 </script> 102 </script>
103 103
104 <script src="../../js/resources/js-test-post.js"></script>
105 </body> 104 </body>
106 </html> 105 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698