Closed
Bug 1442499
Opened 8 years ago
Closed 8 years ago
EditorBase::IsPreformatted() should return bool
Categories
(Core :: DOM: Editor, enhancement, P3)
Core
DOM: Editor
Tracking
()
RESOLVED
FIXED
mozilla61
People
(Reporter: m_kato, Assigned: m_kato)
Details
Attachments
(1 file)
To get nsStyleContext, it is unnecessary to use PresShell, so we can use bool as return type.
| Comment hidden (mozreview-request) |
| Assignee | ||
Updated•8 years ago
|
Assignee: nobody → m_kato
Comment 2•8 years ago
|
||
| mozreview-review | ||
Comment on attachment 8968397 [details]
Bug 1442499 - EditorBase::IsPreformatted should return bool.
https://reviewboard.mozilla.org/r/237094/#review242872
::: editor/libeditor/EditorBase.cpp:4026
(Diff revision 1)
> */
> -nsresult
> -EditorBase::IsPreformatted(nsIDOMNode* aNode,
> - bool* aResult)
> +// static
> +bool
> +EditorBase::IsPreformatted(nsINode* aNode)
> {
> - nsCOMPtr<nsIContent> content = do_QueryInterface(aNode);
> + if (!aNode) {
NS_WARN_IF? Or, use nsINode& for aNode?
::: editor/libeditor/HTMLEditRules.cpp:5995
(Diff revision 1)
> - bool isPRE;
> + if (EditorBase::IsPreformatted(nextNode)) {
> - htmlEditor->IsPreformatted(nextNode->AsDOMNode(), &isPRE);
> - if (isPRE) {
> if (EditorBase::IsTextNode(nextNode)) {
> nsAutoString tempString;
> nextNode->GetAsText()->GetData(tempString);
> int32_t newlinePos = tempString.FindChar(nsCRT::LF);
> if (newlinePos >= 0) {
> if (static_cast<uint32_t>(newlinePos) + 1 == tempString.Length()) {
> // No need for special processing if the newline is at the end.
> break;
> }
> return EditorDOMPoint(nextNode, newlinePos + 1);
> }
> }
> }
Could you connect those conditions with && and reduce the indent?
Attachment #8968397 -
Flags: review?(masayuki) → review+
| Assignee | ||
Comment 3•8 years ago
|
||
| mozreview-review | ||
Comment on attachment 8968397 [details]
Bug 1442499 - EditorBase::IsPreformatted should return bool.
https://reviewboard.mozilla.org/r/237094/#review242984
::: editor/libeditor/EditorBase.cpp:4026
(Diff revision 1)
> */
> -nsresult
> -EditorBase::IsPreformatted(nsIDOMNode* aNode,
> - bool* aResult)
> +// static
> +bool
> +EditorBase::IsPreformatted(nsINode* aNode)
> {
> - nsCOMPtr<nsIContent> content = do_QueryInterface(aNode);
> + if (!aNode) {
I will use NS_WARN_IF
| Comment hidden (mozreview-request) |
Pushed by m_kato@ga2.so-net.ne.jp:
https://hg.mozilla.org/integration/autoland/rev/767f9e9dd582
EditorBase::IsPreformatted should return bool. r=masayuki
Comment 6•8 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 8 years ago
status-firefox61:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla61
Updated•8 years ago
|
You need to log in
before you can comment on or make changes to this bug.
Description
•