2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04: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 09:50:08 +04:00
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
#include "mozilla/dom/HTMLLIElement.h"
|
2013-01-04 21:02:14 +04:00
|
|
|
#include "mozilla/dom/HTMLLIElementBinding.h"
|
2011-10-11 09:50:08 +04:00
|
|
|
|
2018-06-22 19:48:42 +03:00
|
|
|
#include "mozilla/MappedDeclarations.h"
|
2012-09-30 20:40:24 +04:00
|
|
|
#include "nsAttrValueInlines.h"
|
2006-12-26 20:47:52 +03:00
|
|
|
#include "nsGkAtoms.h"
|
1998-09-02 04:56:01 +04:00
|
|
|
#include "nsStyleConsts.h"
|
2004-01-26 22:22:05 +03:00
|
|
|
#include "nsMappedAttributes.h"
|
1998-09-02 04:56:01 +04:00
|
|
|
|
2004-05-19 00:58:12 +04:00
|
|
|
NS_IMPL_NS_NEW_HTML_ELEMENT(LI)
|
2000-12-23 13:56:31 +03:00
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2000-12-23 13:56:31 +03:00
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
HTMLLIElement::~HTMLLIElement() {}
|
1998-09-02 04:56:01 +04:00
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
NS_IMPL_ELEMENT_CLONE(HTMLLIElement)
|
1998-09-02 04:56:01 +04:00
|
|
|
|
2011-06-30 01:39:21 +04:00
|
|
|
// values that are handled case-insensitively
|
2005-01-25 03:02:58 +03:00
|
|
|
static const nsAttrValue::EnumTable kUnorderedListItemTypeTable[] = {
|
1999-04-01 00:49:25 +04:00
|
|
|
{"disc", NS_STYLE_LIST_STYLE_DISC},
|
1998-09-04 02:21:32 +04:00
|
|
|
{"circle", NS_STYLE_LIST_STYLE_CIRCLE},
|
|
|
|
{"round", NS_STYLE_LIST_STYLE_CIRCLE},
|
|
|
|
{"square", NS_STYLE_LIST_STYLE_SQUARE},
|
2016-09-07 05:20:17 +03:00
|
|
|
{nullptr, 0}};
|
2002-02-08 03:05:17 +03:00
|
|
|
|
2011-06-30 01:39:21 +04:00
|
|
|
// values that are handled case-sensitively
|
2005-01-25 03:02:58 +03:00
|
|
|
static const nsAttrValue::EnumTable kOrderedListItemTypeTable[] = {
|
2011-06-30 01:39:21 +04: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 04:32:48 +03:00
|
|
|
{"1", NS_STYLE_LIST_STYLE_DECIMAL},
|
2016-09-07 05:20:17 +03:00
|
|
|
{nullptr, 0}};
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
bool HTMLLIElement::ParseAttribute(int32_t aNamespaceID, nsAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
2017-11-02 06:35:52 +03:00
|
|
|
nsIPrincipal* aMaybeScriptedPrincipal,
|
2013-01-04 21:02:14 +04:00
|
|
|
nsAttrValue& aResult) {
|
2005-11-29 19:37:15 +03:00
|
|
|
if (aNamespaceID == kNameSpaceID_None) {
|
2006-12-26 20:47:52 +03:00
|
|
|
if (aAttribute == nsGkAtoms::type) {
|
2005-11-29 19:37:15 +03:00
|
|
|
return aResult.ParseEnumValue(aValue, kOrderedListItemTypeTable, true) ||
|
2011-10-17 18:59:28 +04:00
|
|
|
aResult.ParseEnumValue(aValue, kUnorderedListItemTypeTable, false);
|
2005-11-29 19:37:15 +03:00
|
|
|
}
|
2006-12-26 20:47:52 +03:00
|
|
|
if (aAttribute == nsGkAtoms::value) {
|
2011-08-31 14:34:07 +04:00
|
|
|
return aResult.ParseIntValue(aValue);
|
2005-11-29 19:37:15 +03:00
|
|
|
}
|
1998-09-04 02:21:32 +04:00
|
|
|
}
|
2000-12-23 13:56:31 +03:00
|
|
|
|
2005-11-29 19:37:15 +03:00
|
|
|
return nsGenericHTMLElement::ParseAttribute(aNamespaceID, aAttribute, aValue,
|
2017-11-02 06:35:52 +03:00
|
|
|
aMaybeScriptedPrincipal, aResult);
|
1998-09-02 04:56:01 +04:00
|
|
|
}
|
|
|
|
|
2013-11-19 23:21:29 +04:00
|
|
|
void HTMLLIElement::MapAttributesIntoRule(const nsMappedAttributes* aAttributes,
|
2018-06-22 19:48:42 +03:00
|
|
|
MappedDeclarations& aDecls) {
|
|
|
|
if (!aDecls.PropertyIsSet(eCSSProperty_list_style_type)) {
|
2018-03-29 04:39:07 +03:00
|
|
|
// type: enum
|
|
|
|
const nsAttrValue* value = aAttributes->GetAttr(nsGkAtoms::type);
|
|
|
|
if (value && value->Type() == nsAttrValue::eEnum)
|
2018-06-22 19:48:42 +03:00
|
|
|
aDecls.SetKeywordValue(eCSSProperty_list_style_type,
|
|
|
|
value->GetEnumValue());
|
1998-09-04 02:21:32 +04:00
|
|
|
}
|
2001-06-01 02:19:43 +04:00
|
|
|
|
2019-04-07 14:45:57 +03:00
|
|
|
// Map <li value=INTEGER> to 'counter-set: list-item INTEGER'.
|
2019-03-25 01:13:52 +03:00
|
|
|
const nsAttrValue* attrVal = aAttributes->GetAttr(nsGkAtoms::value);
|
|
|
|
if (attrVal && attrVal->Type() == nsAttrValue::eInteger) {
|
|
|
|
if (!aDecls.PropertyIsSet(eCSSProperty_counter_set)) {
|
|
|
|
aDecls.SetCounterSetListItem(attrVal->GetIntegerValue());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-22 19:48:42 +03:00
|
|
|
nsGenericHTMLElement::MapCommonAttributesInto(aAttributes, aDecls);
|
1998-09-05 08:00:06 +04:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHODIMP_(bool)
|
2017-10-03 01:05:19 +03:00
|
|
|
HTMLLIElement::IsAttributeMapped(const nsAtom* aAttribute) const {
|
2004-02-26 00:04:50 +03:00
|
|
|
static const MappedAttributeEntry attributes[] = {
|
2018-04-03 06:21:06 +03:00
|
|
|
{nsGkAtoms::type},
|
2019-03-25 01:13:52 +03:00
|
|
|
{nsGkAtoms::value},
|
2012-07-30 18:20:58 +04:00
|
|
|
{nullptr},
|
2003-04-17 00:54:20 +04:00
|
|
|
};
|
|
|
|
|
2004-02-26 00:04:50 +03:00
|
|
|
static const MappedAttributeEntry* const map[] = {
|
2003-04-17 00:54:20 +04:00
|
|
|
attributes,
|
|
|
|
sCommonAttributeMap,
|
|
|
|
};
|
|
|
|
|
2011-12-18 14:09:27 +04:00
|
|
|
return FindAttributeDependence(aAttribute, map);
|
1999-07-07 05:24:40 +04:00
|
|
|
}
|
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
nsMapRuleToAttributesFunc HTMLLIElement::GetAttributeMappingFunction() const {
|
2005-01-12 22:45:38 +03:00
|
|
|
return &MapAttributesIntoRule;
|
1998-09-02 04:56:01 +04:00
|
|
|
}
|
2013-01-04 21:02:14 +04:00
|
|
|
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
JSObject* HTMLLIElement::WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return HTMLLIElement_Binding::Wrap(aCx, this, aGivenProto);
|
2013-01-04 21:02:14 +04:00
|
|
|
}
|
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|