-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
x/net/html: add Node.{Ancestors,ChildNodes,Descendants}() #215
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
498c828
to
74b75cf
Compare
This PR (HEAD: 4268847) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/net/+/594195. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
This PR (HEAD: 347f461) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/net/+/594195. Important tips:
|
This PR (HEAD: 72158c5) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/net/+/594195. Important tips:
|
This PR (HEAD: 16a697a) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/net/+/594195. Important tips:
|
This PR (HEAD: 4219476) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/net/+/594195. Important tips:
|
Message from Damien Neil: Patch Set 6: (5 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
This PR (HEAD: 5bfe080) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/net/+/594195. Important tips:
|
This PR (HEAD: d83f464) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/net/+/594195. Important tips:
|
Message from Carlana Johnson: Patch Set 7: (5 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
This PR (HEAD: baf2028) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/net/+/594195. Important tips:
|
This PR (HEAD: 13d7555) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/net/+/594195. Important tips:
|
Message from Carlana Johnson: Patch Set 11: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
Message from Damien Neil: Patch Set 11: Code-Review+2 Commit-Queue+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
Message from Go LUCI: Patch Set 11: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-10-28T19:32:48Z","revision":"056c531159fb29901264135c5ced7d37e8ca919c"} Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
Message from Damien Neil: Patch Set 11: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
Message from Go LUCI: Patch Set 11: This CL has failed the run. Reason: Tryjob golang/try/x_net-gotip-linux-amd64 has failed with summary (view all results):
Build or test failure, click here for results. To reproduce, try Additional links for debugging: Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
Message from Go LUCI: Patch Set 11: LUCI-TryBot-Result-1 Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
Message from Damien Neil: Patch Set 12: Code-Review+2 Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
Message from Go LUCI: Patch Set 12: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-10-28T19:34:48Z","revision":"933f6a34cdc5c778d7130f0c1cbef95e7fdc92e2"} Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
Message from Damien Neil: Patch Set 12: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
Message from Go LUCI: Patch Set 12: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
Message from Go LUCI: Patch Set 12: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
Fixes #62113
13d7555
to
bb50757
Compare
Message from Carlana Johnson: Patch Set 12: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
This PR (HEAD: bb50757) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/net/+/594195. Important tips:
|
Message from Ian Lance Taylor: Patch Set 13: (3 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
This PR (HEAD: d99de58) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/net/+/594195. Important tips:
|
Message from Carlana Johnson: Patch Set 14: (3 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
Message from Ian Lance Taylor: Patch Set 14: Auto-Submit+1 Code-Review+2 Commit-Queue+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/594195. |
Adds iterators for the parents, immediate children, and all children of a Node respectively. Fixes golang/go#62113 Change-Id: Iab015872cc3a20fe5e7cae3bc90b89cba68cc3f8 GitHub-Last-Rev: d99de58 GitHub-Pull-Request: #215 Reviewed-on: https://go-review.googlesource.com/c/net/+/594195 Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Damien Neil <dneil@google.com>
This PR is being closed because golang.org/cl/594195 has been merged. |
Adds iterators for the parents, immediate children, and all children of a Node respectively.
Fixes golang/go#62113