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

Side by Side Diff: LayoutTests/fast/canvas/webgl/program-test.html

Issue 58533003: Move fast/js/resources files to resources. (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 Program Compiling/Linking Conformance Test</title> 5 <title>WebGL Program Compiling/Linking Conformance Test</title>
6 <script src="../../js/resources/js-test-pre.js" type="text/javascript"></script> 6 <script src="../../../resources/js-test.js" type="text/javascript"></script>
7 <script src="resources/webgl-test.js" type="text/javascript"></script> 7 <script src="resources/webgl-test.js" type="text/javascript"></script>
8 </head> 8 </head>
9 <body> 9 <body>
10 <div id="description"></div> 10 <div id="description"></div>
11 <div id="console"></div> 11 <div id="console"></div>
12 <canvas id="canvas" width="2" height="2"> </canvas> 12 <canvas id="canvas" width="2" height="2"> </canvas>
13 <script type="text/javascript"> 13 <script type="text/javascript">
14 function go() { 14 function go() {
15 description("Tests that program compiling/linking/using works correctly."); 15 description("Tests that program compiling/linking/using works correctly.");
16 16
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 gl.compileShader(fs3); 301 gl.compileShader(fs3);
302 glErrorShouldBe(gl, gl.INVALID_VALUE, "a delete-marked shader should be dele ted once all its attachments are removed"); 302 glErrorShouldBe(gl, gl.INVALID_VALUE, "a delete-marked shader should be dele ted once all its attachments are removed");
303 } 303 }
304 304
305 debug(""); 305 debug("");
306 go(); 306 go();
307 </script> 307 </script>
308 308
309 </body> 309 </body>
310 </html> 310 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698