• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/css/

Lines Matching refs:right

451     RefPtr<CSSPrimitiveValue> right;
460 if (image.imageSlices().right() == image.imageSlices().top() && image.imageSlices().bottom() == image.imageSlices().top()
462 right = top;
466 if (image.imageSlices().right().isPercent())
467 right = cssValuePool().createValue(image.imageSlices().right().value(), CSSPrimitiveValue::CSS_PERCENTAGE);
469 right = cssValuePool().createValue(image.imageSlices().right().value(), CSSPrimitiveValue::CSS_NUMBER);
471 if (image.imageSlices().bottom() == image.imageSlices().top() && image.imageSlices().right() == image.imageSlices().left()) {
473 left = right;
480 if (image.imageSlices().left() == image.imageSlices().right())
481 left = right;
493 quad->setRight(right);
504 RefPtr<CSSPrimitiveValue> right;
513 if (box.right() == box.top() && box.bottom() == box.top() && box.left() == box.top()) {
514 right = top;
518 if (box.right().isRelative())
519 right = cssValuePool().createValue(box.right().value(), CSSPrimitiveValue::CSS_NUMBER);
521 right = cssValuePool().createValue(box.right());
523 if (box.bottom() == box.top() && box.right() == box.left()) {
525 left = right;
532 if (box.left() == box.right())
533 left = right;
545 quad->setRight(right);
664 l = style->right();
686 // In other words if left is auto and right is not auto, then left's computed value is negative right().
2075 // RenderBox gives a marginRight() that is the distance between the right-edge of the child box
2076 // and the right-edge of the containing box, when display == BLOCK. Let's calculate the absolute
2077 // value of the specified margin-right % instead of relying on RenderBox's marginRight() value.
2375 region->setRight(zoomAdjustedPixelValue(offset.right().value(), style.get()));
2570 rect->setRight(zoomAdjustedPixelValue(style->clip().right().value(), style.get()));
3000 // Assume the properties are in the usual order top, right, bottom, left.