You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 24, 2019. It is now read-only.
Several tests will look for elements based on their ID, including:
documentIDsMustBeUnique
idRefHasCorrespondingId
idrefsHasCorrespondingId
I'm not sure if any others do. What happens here is that the ID gets passed into a selector: $('#' + id);
This can fail when ID's contain values meaningful to CSS such as a period (.), such as an ID like id_0.123 We should make sure strings that are put into a selector are escaped.
The text was updated successfully, but these errors were encountered:
Several tests will look for elements based on their ID, including:
I'm not sure if any others do. What happens here is that the ID gets passed into a selector: $('#' + id);
This can fail when ID's contain values meaningful to CSS such as a period (.), such as an ID like id_0.123 We should make sure strings that are put into a selector are escaped.
The text was updated successfully, but these errors were encountered: