Lines Matching full:child
389 Call pushFullyClippedState when moving to a child node, or when moving to a
408 Use NoInherit rather than Detach for child index changes, and don't worry about other pseudo-class state
452 update :nth-child style correctly.
454 Test: fast/css/nth-child-dynamic.html
3480 a child of m_parent, now m_anchorNode if set.
4162 - "/descendant-or-self::node()/child::" is optimized to iterate the tree once when possible;
9781 - Also If a <blockquote> is removed, but it's the child of another
11955 child):
11992 next node after the container. Otherwise, use the child at the
16785 when the immediate child of the perspective element had no transform
17005 pass it down to child and reflection layers. Inform requestClients if this
17298 heavy view, child nodes now represent the statistics of the root node. Each root node of heavy view
17299 displays flattened statistics for a particular function that ran during the profile, and each child
17300 of these root nodes represents a callpath that lead to it. Thus, the statistics for each of these child
17319 particularly tricky during recursive calls, because each child note can represent multiple possible paths. This
18980 Add m_controlsShadowRoot's renderer as a child.
21252 child box. Changed special case for last child box to propertly handle the various
21253 types of child box that are not hit test candidates (the same ones already handled
25259 Bug 24621: PositionIterator doesn't iterate "after last child" positions when going backwards
27272 child renderer is to do layout, so I had to write a layout function. And then fix a few
28574 (they are between two child nodes of the container, identified
28783 3d-point-mapping-overlapping.html test, where the child of a transformed element
30959 top value on position:relative child not calculated correctly if
33002 * inspector/front-end/inspector.css: Move a z-index to a child element
34865 (WebCore::RenderBox::nodeAtPoint): Remove assertion fired when child has layer
35981 In preparation for making layers for multicol objects (so that they can properly split child layers
53787 <rdar://problem/5870656> selectorText and cssText are clipped for :nth-child() and :nth-of-type();
60730 Unlike HTML's <fieldset> element, WML doesn't provide a <legend> child element
60733 internal <insertedLegend> element as first child for a WML <fieldset> element, containing
62951 child of a GtkNotebook, but never being switched to, or manually
67936 maximalOutlineSize(), since a child might have an outline which projects
67942 Test: fast/repaint/outline-child-repaint.html
70720 Test: fast/repaint/transform-absolute-child.html
72566 (WebCore::XSLStyleSheet::parseString): Make all child stylesheets use parent's dictionary
86289 was not being told to forget decendants of a removed child.
89768 (WebCore::RenderBlock::layoutBlockChildren): If a child did not have
89941 Cache the result of parsing the an+b expression in :nth-child(an+b). Roughly a 2x speedup for :nth-child on SlickSpeed.
90475 >2x speedup on querySelector[All] with :nth-child by removing the collectRulesOnly argument on SelectorChecker.
91288 This speeds up :nth-child matching as tested by querySelectorAll by around 10% by inlining the common case of Node::renderStyle(). Many thanks to mitzpettel and othermaciej for suggestions and help.