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

Side by Side Diff: LayoutTests/fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias.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 1
2 <!DOCTYPE html> 2 <!DOCTYPE html>
3 <html> 3 <html>
4 <head> 4 <head>
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
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 <script id="vshader" type="x-shader/x-vertex"> 8 <script id="vshader" type="x-shader/x-vertex">
9 attribute vec3 pos; 9 attribute vec3 pos;
10 attribute vec4 colorIn; 10 attribute vec4 colorIn;
11 varying vec4 color; 11 varying vec4 color;
12 12
13 void main() 13 void main()
14 { 14 {
15 color = colorIn; 15 color = colorIn;
16 gl_Position = vec4(pos.xyz, 1.0); 16 gl_Position = vec4(pos.xyz, 1.0);
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 finishTest(); 342 finishTest();
343 } 343 }
344 344
345 </script> 345 </script>
346 </head> 346 </head>
347 <body onload="init()"> 347 <body onload="init()">
348 <div id="description"></div> 348 <div id="description"></div>
349 <div id="console"></div> 349 <div id="console"></div>
350 </body> 350 </body>
351 </html> 351 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/canvas/webgl/canvas-test.html ('k') | LayoutTests/fast/canvas/webgl/context-lost.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698