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

Side by Side Diff: LayoutTests/fast/canvas/webgl/uninitialized-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 http-equiv="Content-Type" content="text/html; charset=utf-8"> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <title>WebGL Uninitialized GL Resources Tests</title> 5 <title>WebGL Uninitialized GL Resources Tests</title>
6 <script src="../../js/resources/js-test-pre.js"></script> 6 <script src="../../../resources/js-test.js"></script>
7 <script src="resources/webgl-test.js"></script> 7 <script src="resources/webgl-test.js"></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> 13 <script>
14 description("Tests to check user code cannot access uninitialized data from GL r esources."); 14 description("Tests to check user code cannot access uninitialized data from GL r esources.");
15 15
16 var canvas = document.getElementById("canvas"); 16 var canvas = document.getElementById("canvas");
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 //TODO: uninitialized vertex elements buffer 233 //TODO: uninitialized vertex elements buffer
234 //TODO: uninitialized framebuffer? (implementations would need to do a GL clear at first binding?) 234 //TODO: uninitialized framebuffer? (implementations would need to do a GL clear at first binding?)
235 //TODO: uninitialized renderbuffer? (implementations would need to do a GL clear at first binding?) 235 //TODO: uninitialized renderbuffer? (implementations would need to do a GL clear at first binding?)
236 //TODO: uninitialized uniform arrays? 236 //TODO: uninitialized uniform arrays?
237 237
238 debug(""); 238 debug("");
239 </script> 239 </script>
240 </body> 240 </body>
241 </html> 241 </html>
242 242
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698