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

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

Issue 48903019: Delete js-test-post.js. (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 <title>WebGL instanceof test.</title> 6 <title>WebGL instanceof test.</title>
7 <link rel="stylesheet" href="../../js/resources/js-test-style.css"/> 7 <link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
8 <script src="../../js/resources/js-test-pre.js"></script> 8 <script src="../../js/resources/js-test-pre.js"></script>
9 <script src="resources/webgl-test.js"> </script> 9 <script src="resources/webgl-test.js"> </script>
10 <script src="resources/webgl-test-utils.js"> </script> 10 <script src="resources/webgl-test-utils.js"> </script>
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 shouldThrowWithNew(window.WebGLFramebuffer, 'WebGLFramebuffer'); 74 shouldThrowWithNew(window.WebGLFramebuffer, 'WebGLFramebuffer');
75 shouldThrowWithNew(window.WebGLProgram, 'WebGLProgram'); 75 shouldThrowWithNew(window.WebGLProgram, 'WebGLProgram');
76 shouldThrowWithNew(window.WebGLRenderbuffer, 'WebGLRenderbuffer'); 76 shouldThrowWithNew(window.WebGLRenderbuffer, 'WebGLRenderbuffer');
77 shouldThrowWithNew(window.WebGLShader, 'WebGLShader'); 77 shouldThrowWithNew(window.WebGLShader, 'WebGLShader');
78 shouldThrowWithNew(window.WebGLTexture, 'WebGLTexture'); 78 shouldThrowWithNew(window.WebGLTexture, 'WebGLTexture');
79 shouldThrowWithNew(window.WebGLUniformLocation, 'WebGLUniformLocation'); 79 shouldThrowWithNew(window.WebGLUniformLocation, 'WebGLUniformLocation');
80 shouldThrowWithNew(window.WebGLShaderPrecisionFormat, 'WebGLShaderPrecisionForma t'); 80 shouldThrowWithNew(window.WebGLShaderPrecisionFormat, 'WebGLShaderPrecisionForma t');
81 81
82 successfullyParsed = true; 82 successfullyParsed = true;
83 </script> 83 </script>
84 <script src="../../js/resources/js-test-post.js"></script>
85 84
86 </body> 85 </body>
87 </html> 86 </html>
88 87
89 88
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698