We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you try use document.contains(document.querySelector('link')) on IE11 the browser returns the following message:
document.contains(document.querySelector('link'))
Object doesn't support property or method 'contains'
domNamed implementation of contains just follow browser implementation.
contains
PS: Using IE11 with old Trident engine, that comes default on latest Windows 7 or Windows 8.1 builds.
The text was updated successfully, but these errors were encountered:
Fixes metal#401 | Use assert isTrue and isFalse instead of ok
c09935f
Merge pull request #402 from diegonvs/401
b7c606a
Fixes #401 | Revert deprecation of contains function
2cfb601
No branches or pull requests
If you try use
document.contains(document.querySelector('link'))
on IE11 the browser returns the following message:Object doesn't support property or method 'contains'
domNamed implementation of
contains
just follow browser implementation.PS: Using IE11 with old Trident engine, that comes default on latest Windows 7 or Windows 8.1 builds.
The text was updated successfully, but these errors were encountered: