Index: third_party/WebKit/Source/core/editing/PlainTextRange.cpp |
diff --git a/third_party/WebKit/Source/core/editing/PlainTextRange.cpp b/third_party/WebKit/Source/core/editing/PlainTextRange.cpp |
index 3fb2866a20f4847f050d6c595e447317f23a3ab8..7cfb84d3ba034f28437dd9c0c45e3f34382c3cb6 100644 |
--- a/third_party/WebKit/Source/core/editing/PlainTextRange.cpp |
+++ b/third_party/WebKit/Source/core/editing/PlainTextRange.cpp |
@@ -82,11 +82,6 @@ |
if (getRangeFor == ForSelection) |
behaviorFlags |= TextIteratorEmitsCharactersBetweenAllVisiblePositions; |
auto range = EphemeralRange::rangeOfContents(scope); |
- |
- // TODO(dglazkov): The use of updateLayoutIgnorePendingStylesheets needs to be audited. |
- // see http://crbug.com/590369 for more details. |
- scope.document().updateLayoutIgnorePendingStylesheets(); |
- |
TextIterator it(range.startPosition(), range.endPosition(), behaviorFlags); |
// FIXME: the atEnd() check shouldn't be necessary, workaround for |