| Index: sky/engine/core/events/MouseRelatedEvent.h
|
| diff --git a/sky/engine/core/events/MouseRelatedEvent.h b/sky/engine/core/events/MouseRelatedEvent.h
|
| index 31180f449440d164ecfe2177f4d6ae79371b409c..c5548df7e0c6a4c8283b958a9df78445545eead6 100644
|
| --- a/sky/engine/core/events/MouseRelatedEvent.h
|
| +++ b/sky/engine/core/events/MouseRelatedEvent.h
|
| @@ -32,8 +32,6 @@ namespace blink {
|
| // Internal only: Helper class for what's common between mouse and wheel events.
|
| class MouseRelatedEvent : public UIEventWithKeyState {
|
| public:
|
| - // Note that these values are adjusted to counter the effects of zoom, so that values
|
| - // exposed via DOM APIs are invariant under zooming.
|
| int screenX() const { return m_screenLocation.x(); }
|
| int screenY() const { return m_screenLocation.y(); }
|
| const IntPoint& screenLocation() const { return m_screenLocation; }
|
| @@ -55,7 +53,7 @@ namespace blink {
|
| int x() const;
|
| int y() const;
|
|
|
| - // Page point in "absolute" coordinates (i.e. post-zoomed, page-relative coords,
|
| + // Page point in "absolute" coordinates (i.e. page-relative coords,
|
| // usable with RenderObject::absoluteToLocal).
|
| const LayoutPoint& absoluteLocation() const { return m_absoluteLocation; }
|
| void setAbsoluteLocation(const LayoutPoint& p) { m_absoluteLocation = p; }
|
|
|