content/base/src/Text.cpp

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/content/base/src/Text.cpp	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,37 @@
     1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.8 +
     1.9 +#include "mozilla/dom/Text.h"
    1.10 +#include "nsTextNode.h"
    1.11 +
    1.12 +namespace mozilla {
    1.13 +namespace dom {
    1.14 +
    1.15 +already_AddRefed<Text>
    1.16 +Text::SplitText(uint32_t aOffset, ErrorResult& rv)
    1.17 +{
    1.18 +  nsCOMPtr<nsIContent> newChild;
    1.19 +  rv = SplitData(aOffset, getter_AddRefs(newChild));
    1.20 +  if (rv.Failed()) {
    1.21 +    return nullptr;
    1.22 +  }
    1.23 +  return newChild.forget().downcast<Text>();
    1.24 +}
    1.25 +
    1.26 +/* static */ already_AddRefed<Text>
    1.27 +Text::Constructor(const GlobalObject& aGlobal,
    1.28 +                  const nsAString& aData, ErrorResult& aRv)
    1.29 +{
    1.30 +  nsCOMPtr<nsPIDOMWindow> window = do_QueryInterface(aGlobal.GetAsSupports());
    1.31 +  if (!window || !window->GetDoc()) {
    1.32 +    aRv.Throw(NS_ERROR_FAILURE);
    1.33 +    return nullptr;
    1.34 +  }
    1.35 +
    1.36 +  return window->GetDoc()->CreateTextNode(aData);
    1.37 +}
    1.38 +
    1.39 +} // namespace dom
    1.40 +} // namespace mozilla

mercurial