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

Side by Side Diff: LayoutTests/fast/canvas/canvas-blending-pattern-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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 var canvas = document.createElement("canvas"); 53 var canvas = document.createElement("canvas");
54 var sigma = 5; 54 var sigma = 5;
55 canvas.width = 10; 55 canvas.width = 10;
56 canvas.height = 10; 56 canvas.height = 10;
57 context = canvas.getContext("2d"); 57 context = canvas.getContext("2d");
58 drawElement(context, 0); 58 drawElement(context, 0);
59 } 59 }
60 60
61 runTest(); 61 runTest();
62 </script> 62 </script>
63 <script src="../js/resources/js-test-post.js"></script>
64 </body> 63 </body>
65 </html> 64 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698