-
Notifications
You must be signed in to change notification settings - Fork 53
[html] fix TypeError in nth-child query selector #2015
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
Conversation
We'd want tests here, please |
PR HealthBreaking changes ✔️
Changelog Entry ✔️
Changes to files need to be accounted for in their respective changelogs.
Coverage
|
File | Coverage |
---|---|
pkgs/html/lib/src/query_selector.dart | 💔 68 % ⬇️ 2 % |
This check for test coverage is informational (issues shown here will not fail the PR).
This check can be disabled by tagging the PR with skip-coverage-check
.
API leaks ⚠️
The following packages contain symbols visible in the public API, but not exported by the library. Export these symbols or remove them from your publicly visible API.
Package | Leaked API symbols |
---|---|
html | HtmlTokenizer Token HtmlInputStream TagToken DoctypeToken StringToken TreeBuilder ActiveFormattingElements StartTagToken TagAttribute CommentToken CharactersToken SpaceCharactersToken EndTagToken |
This check can be disabled by tagging the PR with skip-leaking-check
.
License Headers ⚠️
// Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
Files |
---|
pkgs/html/lib/src/query_selector.dart |
All source files should start with a license header.
Unrelated files missing license headers
Files |
---|
pkgs/bazel_worker/benchmark/benchmark.dart |
pkgs/bazel_worker/example/client.dart |
pkgs/bazel_worker/example/worker.dart |
pkgs/benchmark_harness/integration_test/perf_benchmark_test.dart |
pkgs/boolean_selector/example/example.dart |
pkgs/clock/lib/clock.dart |
pkgs/clock/lib/src/clock.dart |
pkgs/clock/lib/src/default.dart |
pkgs/clock/lib/src/stopwatch.dart |
pkgs/clock/lib/src/utils.dart |
pkgs/clock/test/clock_test.dart |
pkgs/clock/test/default_test.dart |
pkgs/clock/test/stopwatch_test.dart |
pkgs/clock/test/utils.dart |
pkgs/coverage/lib/src/coverage_options.dart |
pkgs/coverage/test/collect_coverage_config_test.dart |
pkgs/coverage/test/config_file_locator_test.dart |
pkgs/html/example/main.dart |
pkgs/html/lib/dom.dart |
pkgs/html/lib/dom_parsing.dart |
pkgs/html/lib/html_escape.dart |
pkgs/html/lib/parser.dart |
pkgs/html/lib/src/constants.dart |
pkgs/html/lib/src/encoding_parser.dart |
pkgs/html/lib/src/html_input_stream.dart |
pkgs/html/lib/src/list_proxy.dart |
pkgs/html/lib/src/token.dart |
pkgs/html/lib/src/tokenizer.dart |
pkgs/html/lib/src/treebuilder.dart |
pkgs/html/lib/src/utils.dart |
pkgs/html/test/dom_test.dart |
pkgs/html/test/parser_feature_test.dart |
pkgs/html/test/parser_test.dart |
pkgs/html/test/query_selector_test.dart |
pkgs/html/test/selectors/level1_baseline_test.dart |
pkgs/html/test/selectors/level1_lib.dart |
pkgs/html/test/selectors/selectors.dart |
pkgs/html/test/support.dart |
pkgs/html/test/tokenizer_test.dart |
pkgs/pubspec_parse/test/git_uri_test.dart |
pkgs/stack_trace/example/example.dart |
pkgs/watcher/test/custom_watcher_factory_test.dart |
pkgs/yaml_edit/example/example.dart |
This check can be disabled by tagging the PR with skip-license-check
.
Package publishing
Documentation at https://github.com/dart-lang/ecosystem/wiki/Publishing-automation. |
@kevmoo Sure, could you please point me to the file where I can add tests for this? I couldn't find any test for nth-child or similar. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not enough to fix the issue. The issue is that our implementation of nth-child
doesn't support the value of even
. Here you are only ignoring this assumption. Instead the predicate should also be changed when the value is even
( parent.nodes.indexOf(_element) % 2 == 0
).
As the TODO comment suggests, we do not support the An+B syntax either.
@HosseinYousefi Hi, I'm not sure I understand your suggestion. I understand that Unfortunately in our app the html is coming from an external api, so we have no control over it. |
I suggest making this explicit then. Add a comment that we only support numeric values, and return
Regarding tests, there is no need to add one. It can be added once we actually add the support for other values like |
Other than that please increment the version to from |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks for your contribution!
Revisions updated by `dart tools/rev_sdk_deps.dart`. dartdoc (https://github.com/dart-lang/dartdoc/compare/1788710..1a08646): 1a08646a 2025-04-28 Sam Rawlins Stop using InterfaceElementImpl2 (dart-lang/dartdoc#4041) 38b7d2e0 2025-04-28 Sam Rawlins Stop using ConstructorElementImpl (dart-lang/dartdoc#4040) ad65ae89 2025-04-25 Sarah Zakarias Make redirect pages for categories (dart-lang/dartdoc#4037) 9ab9ba05 2025-04-23 Parker Lougheed Migrate remaining styles to use sass nesting (dart-lang/dartdoc#4024) aaea6377 2025-04-22 Jonas Finnemann Jensen Use _category name_ in the URL, instead of the _category displayName_. (dart-lang/dartdoc#4031) 0388c64e 2025-04-22 Jonas Finnemann Jensen Do not make a copy of PUB_CACHE, just create an empty one instead. (dart-lang/dartdoc#4032) tools (https://github.com/dart-lang/tools/compare/11a7719..11f4cf7): 11f4cf7e 2025-04-24 Callum Moffat [html] Various performance optimizations (dart-lang/tools#2019) 98d4e4d9 2025-04-22 Simone Stasi [html] fix TypeError in nth-child query selector (dart-lang/tools#2015) Change-Id: Ic5d0a5f7f9393fa1a585b80ec1e014647224f151 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/425200 Auto-Submit: Devon Carew <[email protected]> Reviewed-by: Konstantin Shcheglov <[email protected]> Commit-Queue: Konstantin Shcheglov <[email protected]>
This PR fixes a type error occurring when parsing an
nth-child
query selector with a non numerical value, e.g.nth-child(even)
.Exception:
_TypeError (type 'Identifier' is not a subtype of type 'num' in type cast)
Example html code:
I'm not sure if and where I should add a test for this.
Contribution guidelines:
dart format
.Note that many Dart repos have a weekly cadence for reviewing PRs - please allow for some latency before initial review feedback.