WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED INVALID
120119
Add some operator overloads to VisiblePosition
https://bugs.webkit.org/show_bug.cgi?id=120119
Summary
Add some operator overloads to VisiblePosition
Roger Fong
Reported
2013-08-21 10:23:20 PDT
Having these here does no harm and they're quite useful for comparing VisiblePositions. I need them for
https://bugs.webkit.org/show_bug.cgi?id=119829
Attachments
patch
(3.29 KB, patch)
2013-08-22 17:22 PDT
,
Roger Fong
rniwa
: review-
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2013-08-21 10:53:02 PDT
<
rdar://problem/14797554
>
Roger Fong
Comment 2
2013-08-22 17:22:00 PDT
Created
attachment 209410
[details]
patch
Ryosuke Niwa
Comment 3
2013-08-22 17:32:18 PDT
Comment on
attachment 209410
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=209410&action=review
> Source/WebCore/dom/Position.h:243 > +inline bool operator<(const Position& a, const Position& b) > +{ > + return a.anchorNode() == b.anchorNode() && a.deprecatedEditingOffset() < b.deprecatedEditingOffset() && a.anchorType() == b.anchorType(); > +}
I don't think this comparison operator makes sense. Just because nodes aren't same doesn't mean they aren't comparable. If anything, we should be calling comparePositions instead. r-.
Roger Fong
Comment 4
2013-08-22 17:35:46 PDT
(In reply to
comment #3
)
> (From update of
attachment 209410
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=209410&action=review
> > > Source/WebCore/dom/Position.h:243 > > +inline bool operator<(const Position& a, const Position& b) > > +{ > > + return a.anchorNode() == b.anchorNode() && a.deprecatedEditingOffset() < b.deprecatedEditingOffset() && a.anchorType() == b.anchorType(); > > +} > > I don't think this comparison operator makes sense. Just because nodes aren't same doesn't mean they aren't comparable. > > If anything, we should be calling comparePositions instead. r-.
didn't realize that method existed...will use that instead.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug