| Index: Source/core/rendering/RenderBox.h
|
| diff --git a/Source/core/rendering/RenderBox.h b/Source/core/rendering/RenderBox.h
|
| index 0ec1ff8d69c29d47b4638071d5ab06fe1e0639ab..ab5d33688e677b263510792437adafb0f8cfce3e 100644
|
| --- a/Source/core/rendering/RenderBox.h
|
| +++ b/Source/core/rendering/RenderBox.h
|
| @@ -23,6 +23,7 @@
|
| #ifndef RenderBox_h
|
| #define RenderBox_h
|
|
|
| +#include "core/rendering/LayoutRectRecorder.h"
|
| #include "core/rendering/RenderBoxModelObject.h"
|
| #include "core/rendering/RenderOverflow.h"
|
| #include "core/rendering/shapes/ShapeOutsideInfo.h"
|
| @@ -517,6 +518,7 @@ public:
|
| // that just updates the object's position. If the size does change, the object remains dirty.
|
| bool tryLayoutDoingPositionedMovementOnly()
|
| {
|
| + LayoutRectRecorder recorder(*this);
|
| LayoutUnit oldWidth = width();
|
| updateLogicalWidth();
|
| // If we shrink to fit our width may have changed, so we still need full layout.
|
|
|