@@ -68,26 +68,37 @@ export function scrollToPosition(position: ScrollPosition): void {
68
68
69
69
if ( 'selector' in position ) {
70
70
/**
71
- * `id`s can accept pretty much any characters, including CSS combinators like >
72
- * or ~ . It's still possible to retrieve elements using
71
+ * `id`s can accept pretty much any characters, including CSS combinators
72
+ * like `>` or `~` . It's still possible to retrieve elements using
73
73
* `document.getElementById('~')` but it needs to be escaped when using
74
- * `document.querySelector('#\\~')` for it to be valid. The only requirements
75
- * for `id`s are them to be unique on the page and to not be empty (`id=""`).
76
- * Because of that, when passing an `id` selector, it shouldn't have any other
77
- * selector attached to it (like a class or an attribute) because it wouldn't
78
- * have any effect anyway. We are therefore considering any selector starting
79
- * with a `#` to be an `id` selector so we can directly use `getElementById`
80
- * instead of `querySelector`, allowing users to write simpler selectors like:
81
- * `#1-thing` or `#with~symbols` without having to manually escape them to valid
82
- * CSS selectors: `#\31 -thing` and `#with\\~symbols`.
74
+ * `document.querySelector('#\\~')` for it to be valid. The only
75
+ * requirements for `id`s are them to be unique on the page and to not be
76
+ * empty (`id=""`). Because of that, when passing an id selector, it should
77
+ * be properly escaped for it to work with `querySelector`. We could check
78
+ * for the id selector to be simple (no CSS combinators `+ >~`) but that
79
+ * would make things inconsistent since they are valid characters for an
80
+ * `id` but would need to be escaped when using `querySelector`, breaking
81
+ * their usage and ending up in no selector returned. Selectors need to be
82
+ * escaped:
83
+ *
84
+ * - `#1-thing` becomes `#\31 -thing`
85
+ * - `#with~symbols` becomes `#with\\~symbols`
83
86
*
84
87
* - More information about the topic can be found at
85
88
* https://mathiasbynens.be/notes/html5-id-class.
86
89
* - Practical example: https://mathiasbynens.be/demo/html5-id
87
90
*/
88
- const el = position . selector . startsWith ( '#' )
89
- ? document . getElementById ( position . selector . slice ( 1 ) )
90
- : document . querySelector ( position . selector )
91
+ if ( __DEV__ ) {
92
+ try {
93
+ document . querySelector ( position . selector )
94
+ } catch {
95
+ warn (
96
+ `The selector "${ position . selector } " is invalid. If you are using an id selector, make sure to escape it. You can find more information about escaping characters in selectors at https://mathiasbynens.be/notes/css-escapes.`
97
+ )
98
+ }
99
+ }
100
+
101
+ const el = document . querySelector ( position . selector )
91
102
92
103
if ( ! el ) {
93
104
__DEV__ &&
0 commit comments