Home | History | Annotate | Download | only in html

Lines Matching refs:borderBottom

253 static bool getBordersFromFrameAttributeValue(const AtomicString& value, bool& borderTop, bool& borderRight, bool& borderBottom, bool& borderLeft)
257 borderBottom = false;
263 borderBottom = true;
265 borderTop = borderBottom = true;
273 borderTop = borderBottom = borderLeft = borderRight = true;
328 bool borderBottom;
330 if (getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)) {
333 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderBottomStyle, borderBottom ? CSSValueSolid : CSSValueHidden);
362 bool borderBottom;
364 m_frameAttr = getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft);