| Index: sky/engine/core/html/HTMLImageElement.cpp
|
| diff --git a/sky/engine/core/html/HTMLImageElement.cpp b/sky/engine/core/html/HTMLImageElement.cpp
|
| index a0e92c441162704ef6b2b8eba36d7a5f28620088..d4b6c227b2b557c8ce9521a38fad2a67d0fcc85d 100644
|
| --- a/sky/engine/core/html/HTMLImageElement.cpp
|
| +++ b/sky/engine/core/html/HTMLImageElement.cpp
|
| @@ -250,7 +250,7 @@ int HTMLImageElement::width(bool ignorePendingStylesheets)
|
| document().updateLayout();
|
|
|
| RenderBox* box = renderBox();
|
| - return box ? adjustForAbsoluteZoom(box->contentBoxRect().pixelSnappedWidth(), box) : 0;
|
| + return box ? box->contentBoxRect().pixelSnappedWidth() : 0;
|
| }
|
|
|
| int HTMLImageElement::height(bool ignorePendingStylesheets)
|
| @@ -273,7 +273,7 @@ int HTMLImageElement::height(bool ignorePendingStylesheets)
|
| document().updateLayout();
|
|
|
| RenderBox* box = renderBox();
|
| - return box ? adjustForAbsoluteZoom(box->contentBoxRect().pixelSnappedHeight(), box) : 0;
|
| + return box ? box->contentBoxRect().pixelSnappedHeight() : 0;
|
| }
|
|
|
| int HTMLImageElement::naturalWidth() const
|
|
|