Home | History | Annotate | Download | only in rendering

Lines Matching refs:root

95     // if we had any border/padding (obviously), if we're the root or HTML elements, or if
1549 // paints the root's background.
1659 // Avoid painting descendants of the root element when stylesheets haven't loaded. This eliminates FOUC.
2170 // to the border of the root selection block.
2725 // If a positioned object lies completely to the left of the root it will be unreachable via scrolling.
2818 // If a positioned object lies completely above the root it will be unreachable via scrolling.
2852 // If this node is a root editable element, then the rightmostPosition should account for a caret at the end.
2915 // If a positioned object lies completely above the root it will be unreachable via scrolling.
3092 // Prevent floats from being added to the canvas by the root element, e.g., <html>.
3495 // look for the closest line box in the root box which is at the passed-in y coordinate
3499 for (RootInlineBox* root = firstRootBox(); root; root = root->nextRootBox()) {
3500 if (!root->firstLeafChild())
3503 firstRootBoxWithChildren = root;
3504 lastRootBoxWithChildren = root;
3506 // set the bottom based on whether there is a next root box
3509 if (root->nextRootBox()) {
3511 // of the previous root box and the top of the next root box.
3512 bottom = root->nextRootBox()->lineTop();
3514 bottom = root->lineBottom() + verticalLineClickFudgeFactor;
3516 // check if this root line box is located at this y coordinate
3518 closestBox = root->closestLeafChildForXPos(pointInContents.x());
3528 // y coordinate is below last root line box, pretend we hit it
3534 // y coordinate is above first root line box, so return the start of the first
3548 // Can't reach this. We have a root line box, but it has no kids.
4451 // the base class. If we're being queried as though we're the root line
4472 // the base class. If we're being queried as though we're the root line
4551 for (RootInlineBox* root = firstRootBox(); root; root = root->nextRootBox()) {
4552 for (InlineBox* box = root->firstLeafChild(); box; box = box->nextLeafChild()) {