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

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

Issue 54473004: Make js-test-post a noop. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add mac NeedsRebaselines 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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd"> 2 "http://www.w3.org/TR/html4/loose.dtd">
3 <html> 3 <html>
4 <head> 4 <head>
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6 <title>WebGL Canvas Conformance Tests</title> 6 <title>WebGL Canvas Conformance Tests</title>
7 <script src="resources/desktop-gl-constants.js" type="text/javascript"></script> 7 <script src="resources/desktop-gl-constants.js" type="text/javascript"></script>
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 </head> 10 </head>
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 v = gl.getParameter(gl.COLOR_WRITEMASK); 166 v = gl.getParameter(gl.COLOR_WRITEMASK);
167 assertMsg(isAboutEqual(v[0], 0) && 167 assertMsg(isAboutEqual(v[0], 0) &&
168 isAboutEqual(v[1], 0) && 168 isAboutEqual(v[1], 0) &&
169 isAboutEqual(v[2], 0) && 169 isAboutEqual(v[2], 0) &&
170 isAboutEqual(v[3], 0), 170 isAboutEqual(v[3], 0),
171 "gl.colorMask should not change after canvas resize"); 171 "gl.colorMask should not change after canvas resize");
172 shouldBe('getViewport()', '"0,0,300,150"'); 172 shouldBe('getViewport()', '"0,0,300,150"');
173 checkCanvasContentIs(0, 0, 0, 0); 173 checkCanvasContentIs(0, 0, 0, 0);
174 174
175 debug(""); 175 debug("");
176 var epilogue = document.createElement("script"); 176
177 epilogue.onload = finish; 177 finishJSTest();
178 epilogue.src = "../../js/resources/js-test-post.js";
179 document.body.appendChild(epilogue);
180 } 178 }
181 }, 1000/30); 179 }, 1000/30);
182 } 180 }
183 181
184 function finish() {
185 if (window.nonKhronosFrameworkNotifyDone) {
186 window.nonKhronosFrameworkNotifyDone();
187 }
188 }
189
190 </script> 182 </script>
191 <script> 183 <script>
192 </script> 184 </script>
193 185
194 </body> 186 </body>
195 </html> 187 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698