2001-09-25 01:32:19 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2011-10-11 05:50:08 +00:00
|
|
|
|
2013-01-04 17:02:14 +00:00
|
|
|
#include "mozilla/dom/HTMLLIElement.h"
|
2013-01-04 17:02:14 +00:00
|
|
|
#include "mozilla/dom/HTMLLIElementBinding.h"
|
2011-10-11 05:50:08 +00:00
|
|
|
|
2012-09-30 16:40:24 +00:00
|
|
|
#include "nsAttrValueInlines.h"
|
2006-12-26 17:47:52 +00:00
|
|
|
#include "nsGkAtoms.h"
|
1998-09-02 00:56:01 +00:00
|
|
|
#include "nsStyleConsts.h"
|
2004-01-26 19:22:05 +00:00
|
|
|
#include "nsMappedAttributes.h"
|
2004-07-20 06:11:27 +00:00
|
|
|
#include "nsRuleData.h"
|
1998-09-02 00:56:01 +00:00
|
|
|
|
2004-05-18 20:58:12 +00:00
|
|
|
NS_IMPL_NS_NEW_HTML_ELEMENT(LI)
|
2000-12-23 10:56:31 +00:00
|
|
|
|
2013-01-04 17:02:14 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2000-12-23 10:56:31 +00:00
|
|
|
|
2013-01-04 17:02:14 +00:00
|
|
|
HTMLLIElement::~HTMLLIElement()
|
1998-09-02 00:56:01 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-04-27 07:06:00 +00:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED(HTMLLIElement, nsGenericHTMLElement,
|
|
|
|
nsIDOMHTMLLIElement)
|
1998-09-02 00:56:01 +00:00
|
|
|
|
2013-01-04 17:02:14 +00:00
|
|
|
NS_IMPL_ELEMENT_CLONE(HTMLLIElement)
|
1998-09-02 00:56:01 +00:00
|
|
|
|
2013-01-04 17:02:14 +00:00
|
|
|
NS_IMPL_STRING_ATTR(HTMLLIElement, Type, type)
|
|
|
|
NS_IMPL_INT_ATTR(HTMLLIElement, Value, value)
|
1998-09-02 00:56:01 +00:00
|
|
|
|
2011-06-29 21:39:21 +00:00
|
|
|
// values that are handled case-insensitively
|
2005-01-25 00:02:58 +00:00
|
|
|
static const nsAttrValue::EnumTable kUnorderedListItemTypeTable[] = {
|
1999-03-31 20:49:25 +00:00
|
|
|
{ "disc", NS_STYLE_LIST_STYLE_DISC },
|
1998-09-03 22:21:32 +00:00
|
|
|
{ "circle", NS_STYLE_LIST_STYLE_CIRCLE },
|
|
|
|
{ "round", NS_STYLE_LIST_STYLE_CIRCLE },
|
|
|
|
{ "square", NS_STYLE_LIST_STYLE_SQUARE },
|
2002-02-08 00:05:17 +00:00
|
|
|
{ 0 }
|
|
|
|
};
|
|
|
|
|
2011-06-29 21:39:21 +00:00
|
|
|
// values that are handled case-sensitively
|
2005-01-25 00:02:58 +00:00
|
|
|
static const nsAttrValue::EnumTable kOrderedListItemTypeTable[] = {
|
2011-06-29 21:39:21 +00:00
|
|
|
{ "A", NS_STYLE_LIST_STYLE_UPPER_ALPHA },
|
|
|
|
{ "a", NS_STYLE_LIST_STYLE_LOWER_ALPHA },
|
|
|
|
{ "I", NS_STYLE_LIST_STYLE_UPPER_ROMAN },
|
|
|
|
{ "i", NS_STYLE_LIST_STYLE_LOWER_ROMAN },
|
1999-03-20 01:32:48 +00:00
|
|
|
{ "1", NS_STYLE_LIST_STYLE_DECIMAL },
|
1998-09-03 22:21:32 +00:00
|
|
|
{ 0 }
|
|
|
|
};
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2013-01-04 17:02:14 +00:00
|
|
|
HTMLLIElement::ParseAttribute(int32_t aNamespaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
|
|
|
nsAttrValue& aResult)
|
1998-09-02 00:56:01 +00:00
|
|
|
{
|
2005-11-29 16:37:15 +00:00
|
|
|
if (aNamespaceID == kNameSpaceID_None) {
|
2006-12-26 17:47:52 +00:00
|
|
|
if (aAttribute == nsGkAtoms::type) {
|
2005-11-29 16:37:15 +00:00
|
|
|
return aResult.ParseEnumValue(aValue, kOrderedListItemTypeTable,
|
2011-10-17 14:59:28 +00:00
|
|
|
true) ||
|
|
|
|
aResult.ParseEnumValue(aValue, kUnorderedListItemTypeTable, false);
|
2005-11-29 16:37:15 +00:00
|
|
|
}
|
2006-12-26 17:47:52 +00:00
|
|
|
if (aAttribute == nsGkAtoms::value) {
|
2011-08-31 10:34:07 +00:00
|
|
|
return aResult.ParseIntValue(aValue);
|
2005-11-29 16:37:15 +00:00
|
|
|
}
|
1998-09-03 22:21:32 +00:00
|
|
|
}
|
2000-12-23 10:56:31 +00:00
|
|
|
|
2005-11-29 16:37:15 +00:00
|
|
|
return nsGenericHTMLElement::ParseAttribute(aNamespaceID, aAttribute, aValue,
|
|
|
|
aResult);
|
1998-09-02 00:56:01 +00:00
|
|
|
}
|
|
|
|
|
2013-11-19 19:21:29 +00:00
|
|
|
void
|
|
|
|
HTMLLIElement::MapAttributesIntoRule(const nsMappedAttributes* aAttributes,
|
|
|
|
nsRuleData* aData)
|
1998-09-02 00:56:01 +00:00
|
|
|
{
|
2007-10-08 21:58:22 +00:00
|
|
|
if (aData->mSIDs & NS_STYLE_INHERIT_BIT(List)) {
|
2011-03-18 03:14:31 +00:00
|
|
|
nsCSSValue* listStyleType = aData->ValueForListStyleType();
|
|
|
|
if (listStyleType->GetUnit() == eCSSUnit_Null) {
|
2002-02-26 00:04:00 +00:00
|
|
|
// type: enum
|
2006-12-26 17:47:52 +00:00
|
|
|
const nsAttrValue* value = aAttributes->GetAttr(nsGkAtoms::type);
|
2004-04-13 16:45:59 +00:00
|
|
|
if (value && value->Type() == nsAttrValue::eEnum)
|
2011-03-18 03:14:31 +00:00
|
|
|
listStyleType->SetIntValue(value->GetEnumValue(), eCSSUnit_Enumerated);
|
2002-02-26 00:04:00 +00:00
|
|
|
}
|
1998-09-03 22:21:32 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
nsGenericHTMLElement::MapCommonAttributesInto(aAttributes, aData);
|
1998-09-05 04:00:06 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHODIMP_(bool)
|
2013-01-04 17:02:14 +00:00
|
|
|
HTMLLIElement::IsAttributeMapped(const nsIAtom* aAttribute) const
|
1999-07-07 01:24:40 +00:00
|
|
|
{
|
2004-02-25 21:04:50 +00:00
|
|
|
static const MappedAttributeEntry attributes[] = {
|
2006-12-26 17:47:52 +00:00
|
|
|
{ &nsGkAtoms::type },
|
2012-07-30 14:20:58 +00:00
|
|
|
{ nullptr },
|
2003-04-16 20:54:20 +00:00
|
|
|
};
|
|
|
|
|
2004-02-25 21:04:50 +00:00
|
|
|
static const MappedAttributeEntry* const map[] = {
|
2003-04-16 20:54:20 +00:00
|
|
|
attributes,
|
|
|
|
sCommonAttributeMap,
|
|
|
|
};
|
|
|
|
|
2011-12-18 10:09:27 +00:00
|
|
|
return FindAttributeDependence(aAttribute, map);
|
1999-07-07 01:24:40 +00:00
|
|
|
}
|
|
|
|
|
2005-01-12 19:45:38 +00:00
|
|
|
nsMapRuleToAttributesFunc
|
2013-01-04 17:02:14 +00:00
|
|
|
HTMLLIElement::GetAttributeMappingFunction() const
|
1998-09-05 04:00:06 +00:00
|
|
|
{
|
2005-01-12 19:45:38 +00:00
|
|
|
return &MapAttributesIntoRule;
|
1998-09-02 00:56:01 +00:00
|
|
|
}
|
2013-01-04 17:02:14 +00:00
|
|
|
|
2013-01-04 17:02:14 +00:00
|
|
|
JSObject*
|
2014-04-08 22:27:17 +00:00
|
|
|
HTMLLIElement::WrapNode(JSContext *aCx)
|
2013-01-04 17:02:14 +00:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 22:27:17 +00:00
|
|
|
return HTMLLIElementBinding::Wrap(aCx, this);
|
2013-01-04 17:02:14 +00:00
|
|
|
}
|
|
|
|
|
2013-01-04 17:02:14 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|