golang.org/x/net/html.Node.NextSibling (field)

35 uses

	golang.org/x/net/html (current package)
		node.go#L45: 	Parent, FirstChild, LastChild, PrevSibling, NextSibling *Node
		node.go#L60: 	if newChild.Parent != nil || newChild.PrevSibling != nil || newChild.NextSibling != nil {
		node.go#L70: 		prev.NextSibling = newChild
		node.go#L81: 	newChild.NextSibling = next
		node.go#L88: 	if c.Parent != nil || c.PrevSibling != nil || c.NextSibling != nil {
		node.go#L93: 		last.NextSibling = c
		node.go#L111: 		n.FirstChild = c.NextSibling
		node.go#L113: 	if c.NextSibling != nil {
		node.go#L114: 		c.NextSibling.PrevSibling = c.PrevSibling
		node.go#L120: 		c.PrevSibling.NextSibling = c.NextSibling
		node.go#L124: 	c.NextSibling = nil
		parse.go#L2432: 		next := c.NextSibling
		render.go#L76: 		for c := n.FirstChild; c != nil; c = c.NextSibling {
		render.go#L200: 		for c := n.FirstChild; c != nil; c = c.NextSibling {
		render.go#L217: 		for c := n.FirstChild; c != nil; c = c.NextSibling {

	golang.org/x/pkgsite/internal/frontend
		overview.go#L187: 		if n.FirstChild == nil || n.FirstChild.NextSibling == nil || n.FirstChild.NextSibling.DataAtom != atom.Body {
		overview.go#L190: 		n = n.FirstChild.NextSibling
		overview.go#L192: 		for c := n.FirstChild; c != nil; c = c.NextSibling {
		overview.go#L227: 	for c := n.FirstChild; c != nil; c = c.NextSibling {

	golang.org/x/pkgsite/internal/testing/htmlcheck
		htmlcheck.go#L165: 		for c := n.FirstChild; c != nil; c = c.NextSibling {
		htmlcheck.go#L210: 	for c := n.FirstChild; c != nil; c = c.NextSibling {

	github.com/andybalholm/cascadia
		selector.go#L93: 	for child := n.FirstChild; child != nil; child = child.NextSibling {
		selector.go#L101: 	for child := n.FirstChild; child != nil; child = child.NextSibling {
		selector.go#L128: 	for c := n.FirstChild; c != nil; c = c.NextSibling {
		selector.go#L140: 	for c := n.FirstChild; c != nil; c = c.NextSibling {
		selector.go#L384: 	for c := n.FirstChild; c != nil; c = c.NextSibling {
		selector.go#L396: 	for c := n.FirstChild; c != nil; c = c.NextSibling {
		selector.go#L462: 		for c := n.FirstChild; c != nil; c = c.NextSibling {
		selector.go#L479: 	for c := n.FirstChild; c != nil; c = c.NextSibling {
		selector.go#L526: 	for c := parent.FirstChild; c != nil; c = c.NextSibling {
		selector.go#L573: 	for c := parent.FirstChild; c != nil; c = c.NextSibling {
		selector.go#L647: 	for c := parent.FirstChild; c != nil; c = c.NextSibling {
		selector.go#L683: 	for c := n.FirstChild; c != nil; c = c.NextSibling {