| Index: PerformanceTests/Canvas/drawimage.html
|
| diff --git a/PerformanceTests/Canvas/drawimage.html b/PerformanceTests/Canvas/drawimage.html
|
| index c9d44920e99385a44f6e12afa3895a2e0ff5659a..8cafd02d0e52c1e02978a39e28811e026426f320 100644
|
| --- a/PerformanceTests/Canvas/drawimage.html
|
| +++ b/PerformanceTests/Canvas/drawimage.html
|
| @@ -15,9 +15,12 @@ target.width = source.width;
|
| target.height = source.height;
|
| var context = target.getContext("2d")
|
|
|
| -PerfTestRunner.measureRunsPerSecond({run: function() {
|
| - context.drawImage(source, 0, 0);
|
| -}});
|
| +PerfTestRunner.measureRunsPerSecond({
|
| + description: "Measures performance of drawing an image onto a canvas.",
|
| + run: function() {
|
| + context.drawImage(source, 0, 0);
|
| + }
|
| +});
|
| </script>
|
| </body>
|
| </html>
|
|
|