Searched refs:marginRight (Results 1 - 25 of 54) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DRootView.js30 this.element.style.marginRight = right + "px";
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPrintContext.h74 static String pageSizeAndMarginsInPixels(LocalFrame* frame, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft);
H A DPrintContext.cpp321 String PrintContext::pageSizeAndMarginsInPixels(LocalFrame* frame, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft) argument
324 frame->document()->pageSizeAndMarginsInPixels(pageNumber, pageSize, marginTop, marginRight, marginBottom, marginLeft);
327 String::number(marginTop) + ' ' + String::number(marginRight) + ' ' + String::number(marginBottom) + ' ' + String::number(marginLeft);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderButton.cpp106 return marginRight() + borderRight() + paddingRight() + contentWidth();
H A DRenderScrollbarPart.h54 virtual LayoutUnit marginRight() const OVERRIDE { ASSERT(isIntegerValue(m_marginBox.right())); return m_marginBox.right(); }
H A DRenderScrollbar.cpp307 int marginRight = part ? static_cast<int>(part->marginRight()) : 0; local
309 endLength += marginRight;
H A DRenderBoxModelObject.h141 virtual LayoutUnit marginRight() const = 0;
147 LayoutUnit marginWidth() const { return marginLeft() + marginRight(); }
H A DRenderText.h120 LayoutUnit marginRight() const { return minimumValueForLength(style()->marginRight(), 0); } function in class:blink::RenderText
H A DRenderDeprecatedFlexibleBox.cpp148 Length marginRight = child->style()->marginRight(); local
152 if (marginRight.isFixed())
153 margin += marginRight.value();
469 xPos += child->width() + child->marginRight();
694 childX += contentWidth() - child->marginRight() - child->width();
700 childX += contentWidth() - child->marginRight() - child->width();
H A DRenderFlexibleBox.cpp192 int marginAscent = direction == HorizontalLine ? marginTop() : marginRight();
540 return isLeftToRightFlow() ? child.marginLeft() : child.marginRight();
547 return isLeftToRightFlow() ? child.marginRight() : child.marginLeft();
561 return child.marginRight();
694 if (child->style()->marginRight().isAuto())
718 if (child.style()->marginRight().isAuto())
732 return child.style()->marginLeft().isAuto() || child.style()->marginRight().isAuto();
756 Length bottomOrRight = isHorizontal ? child.style()->marginBottom() : child.style()->marginRight();
833 child->setMarginRight(computeChildMarginValue(child->style()->marginRight()));
1052 if (child.style()->marginRight()
[all...]
H A DRenderInline.h52 virtual LayoutUnit marginRight() const OVERRIDE FINAL;
H A DRenderScrollbarPart.cpp109 m_marginBox.setRight(minimumValueForLength(style()->marginRight(), visibleSize));
H A DInlineFlowBox.h138 return isHorizontal() ? boxModelObject()->marginRight() : boxModelObject()->marginBottom();
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Dbluetooth_device_list.js243 * width: number, marginLeft: number, marginRight: number}}
254 marginRight: 0
/external/chromium_org/chrome/browser/resources/print_preview/
H A Dpreview_generator.js316 Math.round(event.pageLayout.marginRight),
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSPropertyEquality.cpp166 return a.marginRight() == b.marginRight();
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dgrid.js99 var width = size.width + Math.min(size.marginLeft, size.marginRight);
H A Dlist.js57 * width: number, marginLeft: number, marginRight: number}}
401 * width: number, marginLeft: number, marginRight: number}}
410 width: 0, marginLeft: 0, marginRight: 0};
424 var mr = parseFloat(cs.marginRight);
455 marginLeft: ml, marginRight: mr};
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DSliderThumbElement.cpp145 position -= isLeftToRightDirection ? renderBox()->marginLeft() : renderBox()->marginRight();
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfile_grid.js295 x, itemMetrics.width, itemMetrics.width - itemMetrics.marginRight);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMarqueeElement.js163 this.style.marginRight = margin;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebRemoteFrameImpl.h141 int& marginRight,
/external/chromium_org/third_party/WebKit/public/web/
H A DWebFrame.h513 // pixels per inch. pageSize, marginTop, marginRight, marginBottom,
519 int& marginRight,
/external/chromium_org/third_party/npapi/npspy/windows/
H A Dgui_main.cpp202 int marginRight = 0 * factorx; local
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp1498 return renderer && renderer->isBox() && (!style || !style->marginBottom().isFixed() || !style->marginTop().isFixed() || !style->marginLeft().isFixed() || !style->marginRight().isFixed());
1502 return renderer && renderer->isBox() && (!style || !style->marginRight().isFixed());
2036 Length marginRight = style->marginRight(); local
2037 if (marginRight.isFixed() || !renderer || !renderer->isBox())
2038 return zoomAdjustedPixelValueForLength(marginRight, *style);
2040 if (marginRight.isPercent()) {
2041 // RenderBox gives a marginRight() that is the distance between the right-edge of the child box
2043 // value of the specified margin-right % instead of relying on RenderBox's marginRight() value.
2044 value = minimumValueForLength(marginRight, toRenderBo
[all...]

Completed in 3150 milliseconds

123