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

Side by Side Diff: LayoutTests/http/tests/security/webgl-remote-read-remote-image-allowed.html

Issue 7171012: Merge 88489 - 2011-06-09 Kenneth Russell <kbr@google.com> (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/782/
Patch Set: Created 9 years, 6 months 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
OLDNEW
1 <pre id="console"></pre> 1 <pre id="console"></pre>
2 <script> 2 <script>
3 if (window.layoutTestController) { 3 if (window.layoutTestController) {
4 layoutTestController.overridePreference("WebKitWebGLEnabled", "1"); 4 layoutTestController.overridePreference("WebKitWebGLEnabled", "1");
5 layoutTestController.dumpAsText(); 5 layoutTestController.dumpAsText();
6 layoutTestController.waitUntilDone(); 6 layoutTestController.waitUntilDone();
7 } 7 }
8 8
9 log = function(msg) 9 log = function(msg)
10 { 10 {
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 testTexImage2D(gl, dirtyCanvas, "canvas"); 92 testTexImage2D(gl, dirtyCanvas, "canvas");
93 93
94 test(canvas, "CORS-untained canvas"); 94 test(canvas, "CORS-untained canvas");
95 95
96 if (window.layoutTestController) 96 if (window.layoutTestController)
97 layoutTestController.notifyDone(); 97 layoutTestController.notifyDone();
98 } 98 }
99 image.crossOrigin = "anonymous"; 99 image.crossOrigin = "anonymous";
100 image.src = "http://localhost:8000/security/resources/abe-allow-star.php"; 100 image.src = "http://localhost:8000/security/resources/abe-allow-star.php";
101 </script> 101 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698