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

Side by Side Diff: LayoutTests/fast/canvas/webgl/tex-sub-image-cube-maps.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 2
3 /* 3 /*
4 ** Copyright (c) 2012 The Khronos Group Inc. 4 ** Copyright (c) 2012 The Khronos Group Inc.
5 ** 5 **
6 ** Permission is hereby granted, free of charge, to any person obtaining a 6 ** Permission is hereby granted, free of charge, to any person obtaining a
7 ** copy of this software and/or associated documentation files (the 7 ** copy of this software and/or associated documentation files (the
8 ** "Materials"), to deal in the Materials without restriction, including 8 ** "Materials"), to deal in the Materials without restriction, including
9 ** without limitation the rights to use, copy, modify, merge, publish, 9 ** without limitation the rights to use, copy, modify, merge, publish,
10 ** distribute, sublicense, and/or sell copies of the Materials, and to 10 ** distribute, sublicense, and/or sell copies of the Materials, and to
(...skipping 12 matching lines...) Expand all
23 ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. 23 ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
24 */ 24 */
25 25
26 --> 26 -->
27 27
28 <!DOCTYPE html> 28 <!DOCTYPE html>
29 <html> 29 <html>
30 <head> 30 <head>
31 <meta charset="utf-8"> 31 <meta charset="utf-8">
32 <title>WebGL texture texSubImage2Ds cube map conformance test.</title> 32 <title>WebGL texture texSubImage2Ds cube map conformance test.</title>
33 <script src="../../js/resources/js-test-pre.js"></script> 33 <script src="../../../resources/js-test.js"></script>
34 <script src="resources/webgl-test.js"> </script> 34 <script src="resources/webgl-test.js"> </script>
35 <script src="resources/webgl-test-utils.js"></script> 35 <script src="resources/webgl-test-utils.js"></script>
36 </head> 36 </head>
37 <body> 37 <body>
38 <canvas id="example" width="256" height="256" style="width: 40px; height: 40px;" ></canvas> 38 <canvas id="example" width="256" height="256" style="width: 40px; height: 40px;" ></canvas>
39 <div id="description"></div> 39 <div id="description"></div>
40 <div id="console"></div> 40 <div id="console"></div>
41 <script id="vshader" type="x-shader/x-vertex"> 41 <script id="vshader" type="x-shader/x-vertex">
42 attribute vec4 vPosition; 42 attribute vec4 vPosition;
43 uniform mat4 rotation; 43 uniform mat4 rotation;
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 dst[15] = a30 * b03 + a31 * b13 + a32 * b23 + a33 * b33; 325 dst[15] = a30 * b03 + a31 * b13 + a32 * b23 + a33 * b33;
326 return dst; 326 return dst;
327 }; 327 };
328 328
329 successfullyParsed = true; 329 successfullyParsed = true;
330 </script> 330 </script>
331 </body> 331 </body>
332 </html> 332 </html>
333 333
334 334
OLDNEW
« no previous file with comments | « LayoutTests/fast/canvas/webgl/tex-sub-image-2d-bad-args.html ('k') | LayoutTests/fast/canvas/webgl/texImageTest.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698