| Index: third_party/WebKit/Source/core/dom/Range.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Range.cpp b/third_party/WebKit/Source/core/dom/Range.cpp
|
| index 4ccba20c1e763c9a6378159a32be036b4eb01fe7..d8650f8549840c89e44a7084c0a56feed3e3b7ca 100644
|
| --- a/third_party/WebKit/Source/core/dom/Range.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Range.cpp
|
| @@ -1523,7 +1523,7 @@ void Range::expand(const String& unit, ExceptionState& exceptionState)
|
|
|
| ClientRectList* Range::getClientRects() const
|
| {
|
| - m_ownerDocument->updateLayoutIgnorePendingStylesheets();
|
| + m_ownerDocument->updateStyleAndLayoutIgnorePendingStylesheets();
|
|
|
| Vector<FloatQuad> quads;
|
| getBorderAndTextQuads(quads);
|
| @@ -1576,7 +1576,7 @@ void Range::getBorderAndTextQuads(Vector<FloatQuad>& quads) const
|
|
|
| FloatRect Range::boundingRect() const
|
| {
|
| - m_ownerDocument->updateLayoutIgnorePendingStylesheets();
|
| + m_ownerDocument->updateStyleAndLayoutIgnorePendingStylesheets();
|
|
|
| Vector<FloatQuad> quads;
|
| getBorderAndTextQuads(quads);
|
|
|