| Index: PerformanceTests/Canvas/drawimage-not-pixelaligned.html
|
| diff --git a/PerformanceTests/Canvas/drawimage-not-pixelaligned.html b/PerformanceTests/Canvas/drawimage-not-pixelaligned.html
|
| index 277d8dec0a956de80245264779c5bec8f0c8db23..30150dd0b21a2816d36296d760e82dc1209da117 100644
|
| --- a/PerformanceTests/Canvas/drawimage-not-pixelaligned.html
|
| +++ b/PerformanceTests/Canvas/drawimage-not-pixelaligned.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, 10.5, 10.5, 200, 200);
|
| -}});
|
| +PerfTestRunner.measureRunsPerSecond({
|
| + description: "Measures performance of drawing an image onto a canvas that is not pixel aligned.",
|
| + run: function() {
|
| + context.drawImage(source, 10.5, 10.5, 200, 200);
|
| + }
|
| +});
|
| </script>
|
| </body>
|
| </html>
|
|
|