@@ -281,8 +281,8 @@ function html2canvas( element ) {
x = rect.left - offset.left - 0.5;
y = rect.top - offset.top - 0.5;
- width = rect.width + 0.5;
- height = rect.height + 0.5;
+ width = rect.width;
+ height = rect.height;
context.drawImage( element, x, y, width, height );