Changeset 248028 in webkit
- Timestamp:
- Jul 30, 2019, 10:01:42 PM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
page/TextIndicator.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r248025 r248028 1 2019-07-30 Tim Horton <timothy_horton@apple.com> 2 3 ASSERTion failure under takeSnapshot after r247846 4 5 * page/TextIndicator.cpp: 6 (WebCore::takeSnapshots): 7 We now sometimes inflate the scale factor; allow this. 8 1 9 2019-07-30 Saam Barati <sbarati@apple.com> 2 10 -
trunk/Source/WebCore/page/TextIndicator.cpp
r247846 r248028 170 170 float snapshotScaleFactor; 171 171 data.contentImageWithHighlight = takeSnapshot(frame, snapshotRect, SnapshotOptionsNone, snapshotScaleFactor, clipRectsInDocumentCoordinates); 172 ASSERT(!data.contentImageWithHighlight || data.contentImageScaleFactor == snapshotScaleFactor);172 ASSERT(!data.contentImageWithHighlight || data.contentImageScaleFactor >= snapshotScaleFactor); 173 173 } 174 174
Note:
See TracChangeset
for help on using the changeset viewer.