Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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/. */
6 #include "mozilla/dom/Text.h"
7 #include "nsTextNode.h"
9 namespace mozilla {
10 namespace dom {
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 }
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 }
33 return window->GetDoc()->CreateTextNode(aData);
34 }
36 } // namespace dom
37 } // namespace mozilla