| Index: third_party/WebKit/Source/core/dom/ElementTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ElementTest.cpp b/third_party/WebKit/Source/core/dom/ElementTest.cpp
|
| index 7a92936440f5b0f6dc8fd55a5b46eedfee572a3a..90386b8e0e562439f24226084dfd18536e13026d 100644
|
| --- a/third_party/WebKit/Source/core/dom/ElementTest.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ElementTest.cpp
|
| @@ -5,10 +5,10 @@
|
| #include "core/dom/Element.h"
|
|
|
| #include <memory>
|
| -#include "core/dom/ClientRect.h"
|
| #include "core/dom/Document.h"
|
| #include "core/editing/EditingTestBase.h"
|
| #include "core/frame/LocalFrameView.h"
|
| +#include "core/geometry/DOMRect.h"
|
| #include "core/html/HTMLHtmlElement.h"
|
| #include "core/layout/LayoutBoxModelObject.h"
|
| #include "core/paint/PaintLayer.h"
|
| @@ -51,7 +51,7 @@ TEST_F(ElementTest,
|
|
|
| // The sticky element should remain at (0, 25) relative to the viewport due to
|
| // the constraints.
|
| - ClientRect* bounding_client_rect = sticky->getBoundingClientRect();
|
| + DOMRect* bounding_client_rect = sticky->getBoundingClientRect();
|
| EXPECT_EQ(0, bounding_client_rect->top());
|
| EXPECT_EQ(25, bounding_client_rect->left());
|
|
|
|
|