Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * (C) 1999 Lars Knoll (knoll@kde.org) | 2 * (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Dirk Mueller (mueller@kde.org) | 3 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 4 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| 11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
| 15 * | 15 * |
| 16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
| 17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
| 20 * | 20 * |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 #include "config.h" | 23 #include "config.h" |
| 24 #include "core/rendering/RenderTextFragment.h" | 24 #include "core/rendering/RenderTextFragment.h" |
| 25 | 25 |
| 26 #include "core/dom/FirstLetterPseudoElement.h" | |
| 27 #include "core/dom/PseudoElement.h" | |
| 28 #include "core/dom/StyleChangeReason.h" | |
| 26 #include "core/dom/Text.h" | 29 #include "core/dom/Text.h" |
| 27 #include "core/rendering/HitTestResult.h" | 30 #include "core/rendering/HitTestResult.h" |
| 28 #include "core/rendering/RenderBlock.h" | 31 #include "core/rendering/RenderBlock.h" |
| 29 | 32 |
| 30 namespace blink { | 33 namespace blink { |
| 31 | 34 |
| 32 RenderTextFragment::RenderTextFragment(Node* node, StringImpl* str, int startOff set, int length) | 35 RenderTextFragment::RenderTextFragment(Node* node, StringImpl* str, int startOff set, int length) |
| 33 : RenderText(node, str ? str->substring(startOffset, length) : PassRefPtr<St ringImpl>(nullptr)) | 36 : RenderText(node, str ? str->substring(startOffset, length) : PassRefPtr<St ringImpl>(nullptr)) |
| 34 , m_start(startOffset) | 37 , m_start(startOffset) |
| 35 , m_end(length) | 38 , m_end(length) |
| 36 , m_firstLetter(nullptr) | 39 , m_firstLetterPseudoElement(nullptr) |
| 37 { | 40 { |
| 38 } | 41 } |
| 39 | 42 |
| 40 RenderTextFragment::RenderTextFragment(Node* node, StringImpl* str) | 43 RenderTextFragment::RenderTextFragment(Node* node, StringImpl* str) |
| 41 : RenderText(node, str) | 44 : RenderText(node, str) |
| 42 , m_start(0) | 45 , m_start(0) |
| 43 , m_end(str ? str->length() : 0) | 46 , m_end(str ? str->length() : 0) |
| 44 , m_contentString(str) | 47 , m_contentString(str) |
| 45 , m_firstLetter(nullptr) | 48 , m_firstLetterPseudoElement(nullptr) |
| 46 { | 49 { |
| 47 } | 50 } |
| 48 | 51 |
| 49 RenderTextFragment::~RenderTextFragment() | 52 RenderTextFragment::~RenderTextFragment() |
| 50 { | 53 { |
| 54 if (m_firstLetterPseudoElement) | |
| 55 m_firstLetterPseudoElement->setRemainingTextRenderer(nullptr); | |
| 56 m_firstLetterPseudoElement = nullptr; | |
| 51 } | 57 } |
| 52 | 58 |
| 53 void RenderTextFragment::trace(Visitor* visitor) | 59 void RenderTextFragment::trace(Visitor* visitor) |
| 54 { | 60 { |
| 55 visitor->trace(m_firstLetter); | 61 visitor->trace(m_firstLetterPseudoElement); |
| 56 RenderText::trace(visitor); | 62 RenderText::trace(visitor); |
| 57 } | 63 } |
| 58 | 64 |
| 59 RenderText* RenderTextFragment::firstRenderTextInFirstLetter() const | 65 PassRefPtr<StringImpl> RenderTextFragment::completeText() const |
| 60 { | 66 { |
| 61 for (RenderObject* current = m_firstLetter; current; current = current->next InPreOrder(m_firstLetter)) { | 67 Text* text = associatedTextNode(); |
| 62 if (current->isText()) | 68 return text ? text->dataImpl() : contentString(); |
| 63 return toRenderText(current); | |
| 64 } | |
| 65 return 0; | |
| 66 } | 69 } |
| 67 | 70 |
| 68 PassRefPtr<StringImpl> RenderTextFragment::originalText() const | 71 PassRefPtr<StringImpl> RenderTextFragment::originalText() const |
| 69 { | 72 { |
| 70 Node* e = node(); | 73 RefPtr<StringImpl> result = completeText(); |
| 71 RefPtr<StringImpl> result = ((e && e->isTextNode()) ? toText(e)->dataImpl() : contentString()); | |
| 72 if (!result) | 74 if (!result) |
| 73 return nullptr; | 75 return nullptr; |
| 74 return result->substring(start(), end()); | 76 return result->substring(start(), end()); |
| 75 } | 77 } |
| 76 | 78 |
| 77 void RenderTextFragment::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) | |
| 78 { | |
| 79 RenderText::styleDidChange(diff, oldStyle); | |
| 80 | |
| 81 if (RenderBlock* block = blockForAccompanyingFirstLetter()) { | |
| 82 block->style()->removeCachedPseudoStyle(FIRST_LETTER); | |
| 83 block->updateFirstLetter(); | |
| 84 } | |
| 85 } | |
| 86 | |
| 87 void RenderTextFragment::willBeDestroyed() | |
| 88 { | |
| 89 if (m_firstLetter) | |
| 90 m_firstLetter->destroy(); | |
| 91 RenderText::willBeDestroyed(); | |
| 92 } | |
| 93 | |
| 94 void RenderTextFragment::setText(PassRefPtr<StringImpl> text, bool force) | 79 void RenderTextFragment::setText(PassRefPtr<StringImpl> text, bool force) |
| 95 { | 80 { |
| 96 RenderText::setText(text, force); | 81 RenderText::setText(text, force); |
| 97 | 82 |
| 98 m_start = 0; | 83 m_start = 0; |
| 99 m_end = textLength(); | 84 m_end = textLength(); |
| 100 if (m_firstLetter) { | |
| 101 // FIXME: We should not modify the structure of the render tree during | |
| 102 // layout. crbug.com/370458 | |
| 103 DeprecatedDisableModifyRenderTreeStructureAsserts disabler; | |
| 104 | 85 |
| 105 ASSERT(!m_contentString); | 86 // If we're the remaining text from a first letter then we have to tell the |
| 106 m_firstLetter->destroy(); | 87 // first letter pseudo element to reattach itself so it can re-calculate the |
| 107 m_firstLetter = nullptr; | 88 // correct first-letter settings. |
| 108 if (Node* t = node()) { | 89 if (RenderObject* previous = previousSibling()) { |
| 109 ASSERT(!t->renderer()); | 90 if (!previous->isPseudoElement() || !previous->node()->isFirstLetterPseu doElement()) |
| 110 t->setRenderer(this); | 91 return; |
| 111 } | 92 |
| 93 // Tell the first letter container node, and the first-letter node | |
| 94 // that their style may have changed. | |
| 95 // e.g. fast/css/first-letter-detach.html | |
| 96 toFirstLetterPseudoElement(previous->node())->setNeedsUpdate(); | |
| 112 } | 97 } |
| 113 } | 98 } |
| 114 | 99 |
| 115 void RenderTextFragment::transformText() | 100 void RenderTextFragment::transformText() |
| 116 { | 101 { |
| 117 // Don't reset first-letter here because we are only transforming the trunca ted fragment. | 102 // Don't reset first-letter here because we are only transforming the trunca ted fragment. |
| 118 if (RefPtr<StringImpl> textToTransform = originalText()) | 103 if (RefPtr<StringImpl> textToTransform = originalText()) |
| 119 RenderText::setText(textToTransform.release(), true); | 104 RenderText::setText(textToTransform.release(), true); |
| 120 } | 105 } |
| 121 | 106 |
| 122 UChar RenderTextFragment::previousCharacter() const | 107 UChar RenderTextFragment::previousCharacter() const |
| 123 { | 108 { |
| 124 if (start()) { | 109 if (start()) { |
| 125 Node* e = node(); | 110 StringImpl* original = completeText().get(); |
| 126 StringImpl* original = ((e && e->isTextNode()) ? toText(e)->dataImpl() : contentString()); | |
| 127 if (original && start() <= original->length()) | 111 if (original && start() <= original->length()) |
| 128 return (*original)[start() - 1]; | 112 return (*original)[start() - 1]; |
| 129 } | 113 } |
| 130 | 114 |
| 131 return RenderText::previousCharacter(); | 115 return RenderText::previousCharacter(); |
| 132 } | 116 } |
| 133 | 117 |
| 134 RenderBlock* RenderTextFragment::blockForAccompanyingFirstLetter() const | |
| 135 { | |
| 136 if (!m_firstLetter) | |
| 137 return 0; | |
| 138 for (RenderObject* block = m_firstLetter->parent(); block; block = block->pa rent()) { | |
| 139 if (block->style()->hasPseudoStyle(FIRST_LETTER) && block->canHaveChildr en() && block->isRenderBlock()) | |
| 140 return toRenderBlock(block); | |
| 141 } | |
| 142 return 0; | |
| 143 } | |
| 144 | |
| 145 void RenderTextFragment::updateHitTestResult(HitTestResult& result, const Layout Point& point) | 118 void RenderTextFragment::updateHitTestResult(HitTestResult& result, const Layout Point& point) |
| 146 { | 119 { |
| 147 if (result.innerNode()) | 120 if (result.innerNode()) |
| 148 return; | 121 return; |
| 149 | 122 |
| 150 RenderObject::updateHitTestResult(result, point); | 123 RenderObject::updateHitTestResult(result, point); |
| 151 if (m_firstLetter || !node()) | 124 if (!node()) |
| 152 return; | 125 return; |
| 153 RenderObject* nodeRenderer = node()->renderer(); | 126 } |
| 154 if (!nodeRenderer || !nodeRenderer->isText() || !toRenderText(nodeRenderer)- >isTextFragment()) | |
| 155 return; | |
| 156 | 127 |
| 157 if (isDescendantOf(toRenderTextFragment(nodeRenderer)->m_firstLetter)) | 128 // If this is the renderer for a first-letter pseudoNode then we have to look |
| 158 result.setIsFirstLetter(true); | 129 // at the node for the remaining text to find our content. |
| 130 Text* RenderTextFragment::associatedTextNode() const | |
| 131 { | |
| 132 Node* node = this->node(); | |
| 133 if (!node) | |
| 134 return nullptr; | |
| 135 | |
| 136 if (node->isFirstLetterPseudoElement()) { | |
| 137 PseudoElement* pseudo = toPseudoElement(node); | |
|
esprehn
2014/10/11 04:46:20
toFirstLetterPseudoElement()
dsinclair
2014/10/14 14:31:28
Done.
| |
| 138 RenderObject* nextRenderer = FirstLetterPseudoElement::firstLetterTextRe nderer(*pseudo); | |
|
esprehn
2014/10/11 04:46:20
This should just be a method on FirstLetterPseudoE
dsinclair
2014/10/14 14:31:28
We also call this when we don't have a FirstLetter
| |
| 139 if (!nextRenderer) | |
| 140 return nullptr; | |
| 141 node = nextRenderer->node(); | |
| 142 } | |
| 143 return (node && node->isTextNode()) ? toText(node) : nullptr; | |
|
esprehn
2014/10/11 04:46:20
How can this ever not be a Text node? RenderTextFr
dsinclair
2014/10/14 14:31:28
This was more to be safe then anything else. It is
| |
| 159 } | 144 } |
| 160 | 145 |
| 161 } // namespace blink | 146 } // namespace blink |
| OLD | NEW |