Home | History | Annotate | Download | only in shadow

Lines Matching refs:renderBox

121     if (!input->renderer() || !renderBox() || !trackElement->renderBox())
126 bool isLeftToRightDirection = renderBox()->style()->isLeftToRightDirection();
131 // renderer for this node is usually on a layer and renderBox()->x() and
134 LayoutPoint absoluteThumbOrigin = renderBox()->absoluteBoundingBoxRectIgnoringTransforms().location();
139 trackSize = trackElement->renderBox()->contentHeight() - renderBox()->height();
140 position = offset.y() - renderBox()->height() / 2 - trackBoundingBox.y() + inputBoundingBox.y() - renderBox()->marginBottom();
143 trackSize = trackElement->renderBox()->contentWidth() - renderBox()->width();
144 position = offset.x() - renderBox()->width() / 2 - trackBoundingBox.x() + inputBoundingBox.x();
145 position -= isLeftToRightDirection ? renderBox()->marginLeft() : renderBox()->marginRight();