| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 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 #include "sky/engine/config.h" | 22 #include "sky/engine/config.h" |
| 23 #include "sky/engine/core/dom/Text.h" | 23 #include "sky/engine/core/dom/Text.h" |
| 24 | 24 |
| 25 #include "sky/engine/bindings/core/v8/ExceptionState.h" | 25 #include "sky/engine/bindings2/exception_state.h" |
| 26 #include "sky/engine/bindings/core/v8/ExceptionStatePlaceholder.h" | 26 #include "sky/engine/bindings2/exception_state_placeholder.h" |
| 27 #include "sky/engine/core/css/resolver/StyleResolver.h" | 27 #include "sky/engine/core/css/resolver/StyleResolver.h" |
| 28 #include "sky/engine/core/dom/ExceptionCode.h" | 28 #include "sky/engine/core/dom/ExceptionCode.h" |
| 29 #include "sky/engine/core/dom/NodeRenderStyle.h" | 29 #include "sky/engine/core/dom/NodeRenderStyle.h" |
| 30 #include "sky/engine/core/dom/NodeRenderingTraversal.h" | 30 #include "sky/engine/core/dom/NodeRenderingTraversal.h" |
| 31 #include "sky/engine/core/dom/NodeTraversal.h" | 31 #include "sky/engine/core/dom/NodeTraversal.h" |
| 32 #include "sky/engine/core/dom/RenderTreeBuilder.h" | 32 #include "sky/engine/core/dom/RenderTreeBuilder.h" |
| 33 #include "sky/engine/core/dom/shadow/ShadowRoot.h" | 33 #include "sky/engine/core/dom/shadow/ShadowRoot.h" |
| 34 #include "sky/engine/core/events/ScopedEventQueue.h" | 34 #include "sky/engine/core/events/ScopedEventQueue.h" |
| 35 #include "sky/engine/core/rendering/RenderText.h" | 35 #include "sky/engine/core/rendering/RenderText.h" |
| 36 #include "sky/engine/wtf/text/CString.h" | 36 #include "sky/engine/wtf/text/CString.h" |
| 37 #include "sky/engine/wtf/text/StringBuilder.h" | 37 #include "sky/engine/wtf/text/StringBuilder.h" |
| 38 | 38 |
| 39 namespace blink { | 39 namespace blink { |
| 40 | 40 |
| 41 PassRefPtr<Text> Text::create(Document& document, const String& data) | 41 PassRefPtr<Text> Text::create(Document& document, const String& data) |
| 42 { | 42 { |
| 43 return adoptRef(new Text(document, data, CreateText)); | 43 return adoptRef(new Text(document, data, CreateText)); |
| 44 } | 44 } |
| 45 | 45 |
| 46 PassRefPtr<Text> Text::createEditingText(Document& document, const String& data) | 46 PassRefPtr<Text> Text::createEditingText(Document& document, const String& data) |
| 47 { | 47 { |
| 48 return adoptRef(new Text(document, data, CreateEditingText)); | 48 return adoptRef(new Text(document, data, CreateEditingText)); |
| 49 } | 49 } |
| 50 | 50 |
| 51 PassRefPtr<Text> Text::splitText(unsigned offset, ExceptionState& exceptionState
) | 51 PassRefPtr<Text> Text::splitText(unsigned offset, ExceptionState& exceptionState
) |
| 52 { | 52 { |
| 53 // IndexSizeError: Raised if the specified offset is negative or greater tha
n | 53 // IndexSizeError: Raised if the specified offset is negative or greater tha
n |
| 54 // the number of 16-bit units in data. | 54 // the number of 16-bit units in data. |
| 55 if (offset > length()) { | 55 if (offset > length()) { |
| 56 exceptionState.throwDOMException(IndexSizeError, "The offset " + String:
:number(offset) + " is larger than the Text node's length."); | 56 exceptionState.ThrowDOMException(IndexSizeError, "The offset " + String:
:number(offset) + " is larger than the Text node's length."); |
| 57 return nullptr; | 57 return nullptr; |
| 58 } | 58 } |
| 59 | 59 |
| 60 EventQueueScope scope; | 60 EventQueueScope scope; |
| 61 String oldStr = data(); | 61 String oldStr = data(); |
| 62 RefPtr<Text> newText = cloneWithData(oldStr.substring(offset)); | 62 RefPtr<Text> newText = cloneWithData(oldStr.substring(offset)); |
| 63 setDataWithoutUpdate(oldStr.substring(0, offset)); | 63 setDataWithoutUpdate(oldStr.substring(0, offset)); |
| 64 | 64 |
| 65 didModifyData(oldStr); | 65 didModifyData(oldStr); |
| 66 | 66 |
| 67 if (parentNode()) | 67 if (parentNode()) |
| 68 parentNode()->insertBefore(newText.get(), nextSibling(), exceptionState)
; | 68 parentNode()->insertBefore(newText.get(), nextSibling(), exceptionState)
; |
| 69 if (exceptionState.hadException()) | 69 if (exceptionState.had_exception()) |
| 70 return nullptr; | 70 return nullptr; |
| 71 | 71 |
| 72 if (renderer()) | 72 if (renderer()) |
| 73 renderer()->setTextWithOffset(dataImpl(), 0, oldStr.length()); | 73 renderer()->setTextWithOffset(dataImpl(), 0, oldStr.length()); |
| 74 | 74 |
| 75 if (parentNode()) | 75 if (parentNode()) |
| 76 document().didSplitTextNode(*this); | 76 document().didSplitTextNode(*this); |
| 77 | 77 |
| 78 return newText.release(); | 78 return newText.release(); |
| 79 } | 79 } |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 result.appendLiteral("; "); | 206 result.appendLiteral("; "); |
| 207 result.appendLiteral("value="); | 207 result.appendLiteral("value="); |
| 208 result.append(s); | 208 result.append(s); |
| 209 } | 209 } |
| 210 | 210 |
| 211 strncpy(buffer, result.toString().utf8().data(), length - 1); | 211 strncpy(buffer, result.toString().utf8().data(), length - 1); |
| 212 } | 212 } |
| 213 #endif | 213 #endif |
| 214 | 214 |
| 215 } // namespace blink | 215 } // namespace blink |
| OLD | NEW |