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

Side by Side Diff: LayoutTests/fast/canvas/canvas-blending-gradient-over-image.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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script type="text/javascript"> 4 <script type="text/javascript">
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.waitUntilDone(); 6 testRunner.waitUntilDone();
7 window.jsTestIsAsync = true 7 window.jsTestIsAsync = true
8 </script> 8 </script>
9 </head> 9 </head>
10 <body> 10 <body>
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 var canvas = document.createElement("canvas"); 52 var canvas = document.createElement("canvas");
53 var sigma = 5; 53 var sigma = 5;
54 canvas.width = 10; 54 canvas.width = 10;
55 canvas.height = 10; 55 canvas.height = 10;
56 context = canvas.getContext("2d"); 56 context = canvas.getContext("2d");
57 drawElement(context, 0); 57 drawElement(context, 0);
58 } 58 }
59 59
60 runTest(); 60 runTest();
61 </script> 61 </script>
62 <script src="../js/resources/js-test-post.js"></script>
63 </body> 62 </body>
64 </html> 63 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698