2008-01-08 14:36:46 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2008-01-08 14:36:46 -08:00
|
|
|
|
|
|
|
#include "nsContentCreatorFunctions.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsMathMLElement.h"
|
|
|
|
|
2013-12-03 06:40:11 -08:00
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
2008-01-08 14:36:46 -08:00
|
|
|
// MathML Element Factory (declared in nsContentCreatorFunctions.h)
|
|
|
|
nsresult
|
2014-06-19 19:01:40 -07:00
|
|
|
NS_NewMathMLElement(Element** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
|
2008-01-08 14:36:46 -08:00
|
|
|
{
|
2014-05-30 00:36:53 -07:00
|
|
|
NS_ADDREF(*aResult = new nsMathMLElement(aNodeInfo));
|
2008-01-08 14:36:46 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|