Closed
Bug 971831
Opened 11 years ago
Closed 11 years ago
get rid of RangeBoundToHypertextOffset
Categories
(Core :: Disability Access APIs, defect)
Tracking
()
RESOLVED
FIXED
mozilla30
People
(Reporter: surkov, Assigned: lpy)
References
(Blocks 1 open bug)
Details
(Whiteboard: [good first bug][mentor=surkov.alexander@gmail.com][lang=c++])
Attachments
(1 file, 2 obsolete files)
6.21 KB,
patch
|
lpy
:
review+
|
Details | Diff | Splinter Review |
just replace calls by its content, see http://mxr.mozilla.org/mozilla-central/ident?i=RangeBoundToHypertextOffset&filter=
Reporter | ||
Updated•11 years ago
|
OS: Mac OS X → All
Assignee | ||
Updated•11 years ago
|
Assignee: nobody → pylaurent1314
Assignee | ||
Comment 1•11 years ago
|
||
Attachment #8375379 -
Flags: review?(surkov.alexander)
Reporter | ||
Comment 2•11 years ago
|
||
Comment on attachment 8375379 [details] [diff] [review]
bug971831.patch
Review of attachment 8375379 [details] [diff] [review]:
-----------------------------------------------------------------
pls remove RangeBoundToHypertextOffset method
::: accessible/src/generic/HyperTextAccessible.cpp
@@ +1864,5 @@
> // the point is not in a range, that we do not need to compute an end offset,
> // and that we should use the end offset of the last range to compute the
> // start offset of the text attribute range.
> + startHTOffset = DOMPointToOffset(domSel->GetRangeAt(rangeCount - 1)->GetEndParent(),
> + domSel->GetRangeAt(rangeCount - 1)->EndOffset());
it'd be nicer to have local variable for range
nit: fix second line indentation
Attachment #8375379 -
Flags: review?(surkov.alexander)
Assignee | ||
Comment 3•11 years ago
|
||
thanks
Attachment #8375379 -
Attachment is obsolete: true
Attachment #8375485 -
Flags: review?(surkov.alexander)
Reporter | ||
Comment 4•11 years ago
|
||
Comment on attachment 8375485 [details] [diff] [review]
bug971831-V2.patch
Review of attachment 8375485 [details] [diff] [review]:
-----------------------------------------------------------------
r=me thx! please fix nits, attach new patch and add checking-needed keyword
::: accessible/src/generic/HyperTextAccessible.cpp
@@ +1826,3 @@
>
> if (idx > 0) {
> + nsRange* domSelRange = domSel->GetRangeAt(idx - 1);
nit: pls rename it to prevRange
@@ +1842,5 @@
> // We never found a range that ended after the point, therefore we know that
> // the point is not in a range, that we do not need to compute an end offset,
> // and that we should use the end offset of the last range to compute the
> // start offset of the text attribute range.
> + nsRange* domSelRange = domSel->GetRangeAt(rangeCount - 1);
same
Attachment #8375485 -
Flags: review?(surkov.alexander) → review+
Assignee | ||
Comment 5•11 years ago
|
||
thanks
Attachment #8375485 -
Attachment is obsolete: true
Attachment #8376035 -
Flags: review+
Assignee | ||
Updated•11 years ago
|
Keywords: checkin-needed
Comment 6•11 years ago
|
||
Keywords: checkin-needed
Comment 7•11 years ago
|
||
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla30
You need to log in
before you can comment on or make changes to this bug.
Description
•