Home
last modified time | relevance | path

Searched refs:m_borderColorAttr (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebCore/html/
DHTMLTableElement.cpp48 , m_borderColorAttr(false) in HTMLTableElement()
348 m_borderColorAttr = attr->decl(); in parseMappedAttribute()
351 m_borderColorAttr = true; in parseMappedAttribute()
465 if ((!m_borderAttr && !m_borderColorAttr) || m_frameAttr) in additionalAttributeStyleDecls()
468 AtomicString borderValue = m_borderColorAttr ? "solid" : "outset"; in additionalAttributeStyleDecls()
476 int v = m_borderColorAttr ? CSSValueSolid : CSSValueOutset; in additionalAttributeStyleDecls()
507 if (m_borderColorAttr) in cellBorders()
DHTMLTableElement.h120 …bool m_borderColorAttr; // Overrides the outset border and makes it solid for the table and ce… variable