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
|
|
|
|
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"
|
2004-07-20 10:11:27 +04:00
|
|
|
#include "nsRuleData.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
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-04-27 11:06:00 +04:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED(HTMLLIElement, nsGenericHTMLElement,
|
|
|
|
nsIDOMHTMLLIElement)
|
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
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
NS_IMPL_STRING_ATTR(HTMLLIElement, Type, type)
|
|
|
|
NS_IMPL_INT_ATTR(HTMLLIElement, Value, value)
|
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 },
|
2002-02-08 03:05:17 +03:00
|
|
|
{ 0 }
|
|
|
|
};
|
|
|
|
|
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 },
|
1998-09-04 02:21:32 +04:00
|
|
|
{ 0 }
|
|
|
|
};
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2013-01-04 21:02:14 +04:00
|
|
|
HTMLLIElement::ParseAttribute(int32_t aNamespaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
|
|
|
nsAttrValue& aResult)
|
1998-09-02 04:56:01 +04:00
|
|
|
{
|
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,
|
2011-10-17 18:59:28 +04:00
|
|
|
true) ||
|
|
|
|
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,
|
|
|
|
aResult);
|
1998-09-02 04:56:01 +04:00
|
|
|
}
|
|
|
|
|
2013-11-19 23:21:29 +04:00
|
|
|
void
|
|
|
|
HTMLLIElement::MapAttributesIntoRule(const nsMappedAttributes* aAttributes,
|
|
|
|
nsRuleData* aData)
|
1998-09-02 04:56:01 +04:00
|
|
|
{
|
2007-10-09 01:58:22 +04:00
|
|
|
if (aData->mSIDs & NS_STYLE_INHERIT_BIT(List)) {
|
2011-03-18 06:14:31 +03:00
|
|
|
nsCSSValue* listStyleType = aData->ValueForListStyleType();
|
|
|
|
if (listStyleType->GetUnit() == eCSSUnit_Null) {
|
2002-02-26 03:04:00 +03:00
|
|
|
// type: enum
|
2006-12-26 20:47:52 +03:00
|
|
|
const nsAttrValue* value = aAttributes->GetAttr(nsGkAtoms::type);
|
2004-04-13 20:45:59 +04:00
|
|
|
if (value && value->Type() == nsAttrValue::eEnum)
|
2011-03-18 06:14:31 +03:00
|
|
|
listStyleType->SetIntValue(value->GetEnumValue(), eCSSUnit_Enumerated);
|
2002-02-26 03:04:00 +03:00
|
|
|
}
|
1998-09-04 02:21:32 +04:00
|
|
|
}
|
2001-06-01 02:19:43 +04:00
|
|
|
|
|
|
|
nsGenericHTMLElement::MapCommonAttributesInto(aAttributes, aData);
|
1998-09-05 08:00:06 +04:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHODIMP_(bool)
|
2013-01-04 21:02:14 +04:00
|
|
|
HTMLLIElement::IsAttributeMapped(const nsIAtom* aAttribute) const
|
1999-07-07 05:24:40 +04:00
|
|
|
{
|
2004-02-26 00:04:50 +03:00
|
|
|
static const MappedAttributeEntry attributes[] = {
|
2006-12-26 20:47:52 +03:00
|
|
|
{ &nsGkAtoms::type },
|
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
|
|
|
}
|
|
|
|
|
2005-01-12 22:45:38 +03:00
|
|
|
nsMapRuleToAttributesFunc
|
2013-01-04 21:02:14 +04:00
|
|
|
HTMLLIElement::GetAttributeMappingFunction() const
|
1998-09-05 08:00:06 +04:00
|
|
|
{
|
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
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
JSObject*
|
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
|
|
|
HTMLLIElement::WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto)
|
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
|
|
|
return HTMLLIElementBinding::Wrap(aCx, this, aGivenProto);
|
2013-01-04 21:02:14 +04:00
|
|
|
}
|
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|