This source file includes following definitions.
- create
- isPresentationAttribute
- collectStyleForPresentationAttribute
- parseAttribute
- attach
- parseValue
#include "config.h"
#include "core/html/HTMLLIElement.h"
#include "CSSPropertyNames.h"
#include "CSSValueKeywords.h"
#include "HTMLNames.h"
#include "core/dom/NodeRenderingTraversal.h"
#include "core/rendering/RenderListItem.h"
namespace WebCore {
using namespace HTMLNames;
HTMLLIElement::HTMLLIElement(Document& document)
: HTMLElement(liTag, document)
{
ScriptWrappable::init(this);
}
PassRefPtr<HTMLLIElement> HTMLLIElement::create(Document& document)
{
return adoptRef(new HTMLLIElement(document));
}
bool HTMLLIElement::isPresentationAttribute(const QualifiedName& name) const
{
if (name == typeAttr)
return true;
return HTMLElement::isPresentationAttribute(name);
}
void HTMLLIElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style)
{
if (name == typeAttr) {
if (value == "a")
addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, CSSValueLowerAlpha);
else if (value == "A")
addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, CSSValueUpperAlpha);
else if (value == "i")
addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, CSSValueLowerRoman);
else if (value == "I")
addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, CSSValueUpperRoman);
else if (value == "1")
addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, CSSValueDecimal);
else
addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, value);
} else
HTMLElement::collectStyleForPresentationAttribute(name, value, style);
}
void HTMLLIElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
{
if (name == valueAttr) {
if (renderer() && renderer()->isListItem())
parseValue(value);
} else
HTMLElement::parseAttribute(name, value);
}
void HTMLLIElement::attach(const AttachContext& context)
{
HTMLElement::attach(context);
if (renderer() && renderer()->isListItem()) {
RenderListItem* listItemRenderer = toRenderListItem(renderer());
ASSERT(!document().childNeedsDistributionRecalc());
Element* listNode = 0;
Element* current = this;
while (!listNode) {
current = NodeRenderingTraversal::parentElement(current);
if (!current)
break;
if (isHTMLUListElement(*current) || isHTMLOListElement(*current))
listNode = current;
}
if (!listNode) {
listItemRenderer->setNotInList(true);
listItemRenderer->updateMarkerLocation();
}
parseValue(fastGetAttribute(valueAttr));
}
}
inline void HTMLLIElement::parseValue(const AtomicString& value)
{
ASSERT(renderer() && renderer()->isListItem());
bool valueOK;
int requestedValue = value.toInt(&valueOK);
if (valueOK)
toRenderListItem(renderer())->setExplicitValue(requestedValue);
else
toRenderListItem(renderer())->clearExplicitValue();
}
}