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

Side by Side Diff: LayoutTests/fast/canvas/webgl/index-validation.html

Issue 49063011: Delete js-test-style.css. js-test-pre.js injects the CSS it needs now. (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 <link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
6 <script src="../../js/resources/js-test-pre.js"></script> 5 <script src="../../js/resources/js-test-pre.js"></script>
7 <script src="resources/webgl-test.js"></script> 6 <script src="resources/webgl-test.js"></script>
8 </head> 7 </head>
9 <body> 8 <body>
10 <div id="description"></div> 9 <div id="description"></div>
11 <div id="console"></div> 10 <div id="console"></div>
12 11
13 <script> 12 <script>
14 description("Tests that index validation verifies the correct number of indices" ); 13 description("Tests that index validation verifies the correct number of indices" );
15 14
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 debug("Pass large negative index to vertexAttribPointer"); 104 debug("Pass large negative index to vertexAttribPointer");
106 gl.vertexAttribPointer(normalLoc, 3, gl.FLOAT, false, 7 * sizeInBytes(gl.FLOAT), -2000000000 * sizeInBytes(gl.FLOAT)); 105 gl.vertexAttribPointer(normalLoc, 3, gl.FLOAT, false, 7 * sizeInBytes(gl.FLOAT), -2000000000 * sizeInBytes(gl.FLOAT));
107 glErrorShouldBe(gl, gl.INVALID_VALUE); 106 glErrorShouldBe(gl, gl.INVALID_VALUE);
108 shouldBeUndefined('gl.drawElements(gl.TRIANGLES, 3, gl.UNSIGNED_SHORT, 0)'); 107 shouldBeUndefined('gl.drawElements(gl.TRIANGLES, 3, gl.UNSIGNED_SHORT, 0)');
109 108
110 successfullyParsed = true; 109 successfullyParsed = true;
111 </script> 110 </script>
112 111
113 </body> 112 </body>
114 </html> 113 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/canvas/webgl/functions-returning-strings.html ('k') | LayoutTests/fast/canvas/webgl/instanceof-test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698