Changeset 284665 in webkit
- Timestamp:
- Oct 21, 2021, 9:52:50 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/clip/clip-hit-null-iterator-path-comparison-expected.txt (added)
-
LayoutTests/fast/clip/clip-hit-null-iterator-path-comparison.html (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/layout/integration/InlineIteratorBox.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r284660 r284665 1 2021-10-21 Gabriel Nava Marino <gnavamarino@apple.com> 2 3 Two null box iterators from different paths fail to compare equal 4 https://bugs.webkit.org/show_bug.cgi?id=232093 5 6 Reviewed by Antti Koivisto. 7 8 * fast/clip/clip-hit-null-iterator-path-comparison-expected.txt: Added. 9 * fast/clip/clip-hit-null-iterator-path-comparison.html: Added. 10 1 11 2021-10-21 Chris Dumez <cdumez@apple.com> 2 12 -
trunk/Source/WebCore/ChangeLog
r284664 r284665 1 2021-10-21 Gabriel Nava Marino <gnavamarino@apple.com> 2 3 Two null box iterators from different paths fail to compare equal 4 https://bugs.webkit.org/show_bug.cgi?id=232093 5 6 Reviewed by Antti Koivisto. 7 8 Test: fast/clip/clip-hit-null-iterator-path-comparison.html 9 10 * layout/integration/InlineIteratorBox.cpp: 11 (WebCore::InlineIterator::BoxIterator::operator== const): 12 1 13 2021-10-21 Saam Barati <sbarati@apple.com> 2 14 -
trunk/Source/WebCore/layout/integration/InlineIteratorBox.cpp
r284269 r284665 49 49 bool BoxIterator::operator==(const BoxIterator& other) const 50 50 { 51 if (atEnd() && other.atEnd()) 52 return true; 53 51 54 return m_box.m_pathVariant == other.m_box.m_pathVariant; 52 55 }
Note:
See TracChangeset
for help on using the changeset viewer.