|
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 #include "mozilla/dom/Text.h" |
|
7 #include "nsTextNode.h" |
|
8 |
|
9 namespace mozilla { |
|
10 namespace dom { |
|
11 |
|
12 already_AddRefed<Text> |
|
13 Text::SplitText(uint32_t aOffset, ErrorResult& rv) |
|
14 { |
|
15 nsCOMPtr<nsIContent> newChild; |
|
16 rv = SplitData(aOffset, getter_AddRefs(newChild)); |
|
17 if (rv.Failed()) { |
|
18 return nullptr; |
|
19 } |
|
20 return newChild.forget().downcast<Text>(); |
|
21 } |
|
22 |
|
23 /* static */ already_AddRefed<Text> |
|
24 Text::Constructor(const GlobalObject& aGlobal, |
|
25 const nsAString& aData, ErrorResult& aRv) |
|
26 { |
|
27 nsCOMPtr<nsPIDOMWindow> window = do_QueryInterface(aGlobal.GetAsSupports()); |
|
28 if (!window || !window->GetDoc()) { |
|
29 aRv.Throw(NS_ERROR_FAILURE); |
|
30 return nullptr; |
|
31 } |
|
32 |
|
33 return window->GetDoc()->CreateTextNode(aData); |
|
34 } |
|
35 |
|
36 } // namespace dom |
|
37 } // namespace mozilla |