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

Side by Side Diff: LayoutTests/fast/canvas/webgl/invalid-UTF-16.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../js/resources/js-test-pre.js"></script> 3 <script src="../../../resources/js-test.js"></script>
4 <script src="resources/webgl-test.js"></script> 4 <script src="resources/webgl-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <script> 7 <script>
8 if (window.initNonKhronosFramework) { 8 if (window.initNonKhronosFramework) {
9 window.initNonKhronosFramework(false); 9 window.initNonKhronosFramework(false);
10 } 10 }
11 </script> 11 </script>
12 <script> 12 <script>
13 description('This test verifies that the internal conversion from UTF16 to UTF8 is robust to invalid inputs. Any DOM entry point which converts an incoming stri ng to UTF8 could be used for this test.'); 13 description('This test verifies that the internal conversion from UTF16 to UTF8 is robust to invalid inputs. Any DOM entry point which converts an incoming stri ng to UTF8 could be used for this test.');
(...skipping 14 matching lines...) Expand all
28 // true. The second seems to sanitize the form's input before 28 // true. The second seems to sanitize the form's input before
29 // converting it to a UTF8 string. 29 // converting it to a UTF8 string.
30 30
31 var gl = create3DContext(null); 31 var gl = create3DContext(null);
32 var program = gl.createProgram(); 32 var program = gl.createProgram();
33 gl.bindAttribLocation(program, 0, string); 33 gl.bindAttribLocation(program, 0, string);
34 testPassed("bindAttribLocation with invalid UTF-16 did not crash"); 34 testPassed("bindAttribLocation with invalid UTF-16 did not crash");
35 </script> 35 </script>
36 </body> 36 </body>
37 </html> 37 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/canvas/webgl/instanceof-test.html ('k') | LayoutTests/fast/canvas/webgl/invalid-passed-params.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698