@@ -124,14 +124,16 @@ export class HTMLDocument<N, T, D> extends AbstractMathDocument<N, T, D> {
124
124
nodes : HTMLNodeArray < N , T >
125
125
) : Location < N , T > {
126
126
const adaptor = this . adaptor ;
127
- for ( const list of nodes [ N ] ) {
128
- const [ node , n ] = list ;
127
+ const inc = 1 / ( nodes [ N ] . length || 1 ) ;
128
+ let i = N ;
129
+ for ( const [ node , n ] of nodes [ N ] ) {
129
130
if ( index <= n && adaptor . kind ( node ) === '#text' ) {
130
- return { node : node , n : Math . max ( index , 0 ) , delim : delim } ;
131
+ return { i , node, n : Math . max ( index , 0 ) , delim } ;
131
132
}
132
133
index -= n ;
134
+ i += inc ;
133
135
}
134
- return { node : null , n : 0 , delim : delim } ;
136
+ return { node : null , n : 0 , delim } ;
135
137
}
136
138
137
139
/**
@@ -298,9 +300,9 @@ export class HTMLDocument<N, T, D> extends AbstractMathDocument<N, T, D> {
298
300
/**
299
301
* @param {N } head The document <head>
300
302
* @param {string } id The id of the stylesheet to find
301
- * @param {N|null } The stylesheet with the given ID
303
+ * @returns {N|null } The stylesheet with the given ID
302
304
*/
303
- protected findSheet ( head : N , id : string ) {
305
+ protected findSheet ( head : N , id : string ) : N | null {
304
306
if ( id ) {
305
307
for ( const sheet of this . adaptor . tags ( head , 'style' ) ) {
306
308
if ( this . adaptor . getAttribute ( sheet , 'id' ) === id ) {
0 commit comments