| Index: third_party/WebKit/Source/web/tests/DocumentLoadingRenderingTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/DocumentLoadingRenderingTest.cpp b/third_party/WebKit/Source/web/tests/DocumentLoadingRenderingTest.cpp
|
| index 1f808b1a0cdb9d5ac37abe64348137a04842b5da..5d6e256ca5a3d3ebcba7218d3495417f5a4c99f9 100644
|
| --- a/third_party/WebKit/Source/web/tests/DocumentLoadingRenderingTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/DocumentLoadingRenderingTest.cpp
|
| @@ -2,9 +2,9 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "core/dom/ClientRect.h"
|
| #include "core/dom/Document.h"
|
| #include "core/dom/FrameRequestCallback.h"
|
| +#include "core/geometry/DOMRect.h"
|
| #include "core/html/HTMLIFrameElement.h"
|
| #include "core/layout/api/LayoutViewItem.h"
|
| #include "core/paint/PaintLayer.h"
|
| @@ -411,7 +411,7 @@ TEST_F(DocumentLoadingRenderingTest,
|
|
|
| // If ignoringPendingStylesheets==true, element should get non-empty rect.
|
| Element* element = GetDocument().getElementById("test");
|
| - ClientRect* rect = element->getBoundingClientRect();
|
| + DOMRect* rect = element->getBoundingClientRect();
|
| EXPECT_TRUE(rect->width() > 0.f);
|
| EXPECT_TRUE(rect->height() > 0.f);
|
|
|
|
|