Home
last modified time | relevance | path

Searched refs:borderBottom (Results 1 – 25 of 25) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTableElement.cpp253 …(const AtomicString& value, bool& borderTop, bool& borderRight, bool& borderBottom, bool& borderLe… in getBordersFromFrameAttributeValue() argument
257 borderBottom = false; in getBordersFromFrameAttributeValue()
263 borderBottom = true; in getBordersFromFrameAttributeValue()
265 borderTop = borderBottom = true; in getBordersFromFrameAttributeValue()
273 borderTop = borderBottom = borderLeft = borderRight = true; in getBordersFromFrameAttributeValue()
328 bool borderBottom; in collectStyleForPresentationAttribute() local
330 … if (getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)) { in collectStyleForPresentationAttribute()
333 …ertyToPresentationAttributeStyle(style, CSSPropertyBorderBottomStyle, borderBottom ? CSSValueSolid… in collectStyleForPresentationAttribute()
362 bool borderBottom; in parseAttribute() local
364 …m_frameAttr = getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borde… in parseAttribute()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBoxModelObject.h106 virtual int borderBottom() const { return style()->borderBottomWidth(); } in borderBottom() function
115 int borderHeight() const { return borderTop() + borderBottom(); } in borderHeight()
121 …LayoutUnit borderAndPaddingHeight() const { return borderTop() + borderBottom() + paddingTop() + p… in borderAndPaddingHeight()
129 …ogicalRight() const { return style()->isHorizontalWritingMode() ? borderRight() : borderBottom(); } in borderLogicalRight()
DRenderTreeAsText.cpp255 if (box.borderTop() || box.borderRight() || box.borderBottom() || box.borderLeft()) { in writeRenderObject()
278 if (o.style()->borderBottom() != prevBorder) { in writeRenderObject()
279 prevBorder = box.style()->borderBottom(); in writeRenderObject()
280 if (!box.borderBottom()) in writeRenderObject()
283 ts << " (" << box.borderBottom() << "px "; in writeRenderObject()
DRenderButton.cpp90 …() + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom()); in controlClipRect()
DRenderThemeChromiumDefault.cpp351 …ist.hasBorder = box->borderRight() || box->borderLeft() || box->borderTop() || box->borderBottom(); in paintMenuList()
370 int spacingBottom = box->borderBottom() + box->paddingBottom(); in paintMenuList()
404 int spacingBottom = box->borderBottom() + box->paddingBottom(); in paintMenuListButton()
DRenderLayerScrollableArea.cpp206 …scrollRect.move(horizontalScrollbarStart(0), box().height() - box().borderBottom() - scrollbar->he… in invalidateScrollbarRect()
795 borderBoxRect.maxY() - box().borderBottom() - m_hBar->height(), in rectForHorizontalScrollbar()
810 … borderBoxRect.height() - (box().borderTop() + box().borderBottom()) - scrollCorner.height()); in rectForVerticalScrollbar()
834 …return IntSize(horizontalScrollbarStart(0), box().height() - box().borderBottom() - scrollbar->hei… in scrollbarOffset()
1100 …box().height() - (box().borderTop() + box().borderBottom()) - (m_hBar ? m_hBar->height() : resizeC… in hitTestOverflowControls()
1110 box().height() - box().borderBottom() - m_hBar->height(), in hitTestOverflowControls()
DLayoutState.cpp77 …(!isFlipped ? renderer.borderTop() + renderer.paddingTop() : renderer.borderBottom() + renderer.pa… in LayoutState()
DRenderFileUploadControl.cpp99 …width() - borderLeft() - borderRight(), height() - borderBottom() - borderTop() + buttonShadowHeig… in paintObject()
DRenderWidget.cpp228 …paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddin… in paint()
DRenderTableCell.h118 virtual int borderBottom() const OVERRIDE;
DRenderFlexibleBox.cpp449 return isLeftToRightFlow() ? borderTop() : borderBottom(); in flowAwareBorderStart()
456 return isLeftToRightFlow() ? borderBottom() : borderTop(); in flowAwareBorderEnd()
465 return borderBottom(); in flowAwareBorderBefore()
479 return borderBottom(); in flowAwareBorderAfter()
DRenderTable.h81 virtual int borderBottom() const OVERRIDE in borderBottom() function
DRenderTableCell.cpp901 int RenderTableCell::borderBottom() const in borderBottom() function in blink::RenderTableCell
903 return table()->collapseBorders() ? borderHalfBottom(false) : RenderBlockFlow::borderBottom(); in borderBottom()
1184 width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom()); in paintBackgroundsBehindCell()
DRenderDeprecatedFlexibleBox.cpp328 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight(); in layoutHorizontalBox()
619 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight(); in layoutVerticalBox()
DRenderReplaced.cpp155 …paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddin… in paint()
DRenderBox.cpp326 return height() - borderTop() - borderBottom() - horizontalScrollbarHeight(); in clientHeight()
1424 ….setSize(clipRect.size() - LayoutSize(borderLeft() + borderRight(), borderTop() + borderBottom())); in overflowClipRect()
2939 …child->isHorizontalWritingMode() ? containerBlock->borderRight() : containerBlock->borderBottom()); in computeLogicalLeftPositionedOffset()
3255 logicalTopPos += containerBlock->borderBottom(); in computeLogicalTopPositionedOffset()
3932 …LayoutUnit borderHeight = std::max<LayoutUnit>(borderBottom(), std::max(borderBottomLeftRadiusHeig… in incrementallyInvalidatePaint()
4327 LayoutUnit bottom = borderBottom(); in noOverflowRect()
DRenderTable.cpp598 int bottomBorderOverflow = height() + outerBorderBottom() - borderBottom(); in addOverflowFromChildren()
DRenderBlock.cpp3793 …return box->lineBottom() + (includeBottom ? (block->borderBottom() + block->paddingBottom()) : Lay… in getHeightForLineCount()
3801 …return result + obj->y() + (includeBottom ? (block->borderBottom() + block->paddingBottom()) : Lay… in getHeightForLineCount()
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
DShapeOutsideInfo.cpp183 case BottomToTopWritingMode: return renderer.borderBottom(); in borderBeforeInWritingMode()
196 case BottomToTopWritingMode: return renderer.borderBottom() + renderer.paddingBottom(); in borderAndPaddingBeforeInWritingMode()
230 return renderer.borderBottom(); in borderStartWithStyleForWritingMode()
244 return renderer.borderBottom() + renderer.paddingBottom(); in borderAndPaddingStartWithStyleForWritingMode()
/external/doclava/res/assets/templates/components/
Dleft_nav.cs63 $("#swapper").css({borderBottom:"2px solid #aaa"});
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXTable.cpp249 if ((cell->borderTop() > 0 && cell->borderBottom() > 0) in isDataTable()
257 if (cell->borderBottom() > 0) in isDataTable()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyle.cpp1498 return borderBottom(); in borderBefore()
1512 return borderBottom(); in borderAfter()
1521 return borderBottom(); in borderAfter()
1528 return isLeftToRightDirection() ? borderTop() : borderBottom(); in borderStart()
1535 return isLeftToRightDirection() ? borderBottom() : borderTop(); in borderEnd()
DRenderStyle.h480 const BorderValue& borderBottom() const { return surround->border.bottom(); } in borderBottom() function
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorOverlay.cpp276 …enderBox->borderRight(), paddingBox.height() + renderBox->borderTop() + renderBox->borderBottom()); in buildNodeQuads()
285 …ine->borderRight(), borderBox.height() - renderInline->borderTop() - renderInline->borderBottom()); in buildNodeQuads()
/external/chromium_org/third_party/WebKit/Source/core/paint/
DBoxPainter.cpp356 obj.paddingTop() + obj.borderTop(), obj.paddingBottom() + obj.borderBottom(), in paintFillLayerExtended()
381 …olledPaintRect.setHeight(thisBox->borderTop() + thisBox->scrollHeight() + thisBox->borderBottom()); in paintFillLayerExtended()
398 …scrolledPaintRect.height() - obj.borderTop() - obj.borderBottom() - (includePadding ? obj.paddingT… in paintFillLayerExtended()
653 bottom = obj.borderBottom(); in calculateBackgroundImageGeometry()