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
ARC Toolkit does not work with the websites using CustomElements Shadow DOM
ARC Toolkit should behave like assistive technology and support CustomElements Shadow DOM
ARC Toolkit does not recognize any elements within the CustomElements Shadow DOM
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>ARC Toolkit Shadow DOM issue</title> </head> <body> <main role="main"><h1>My Product</h1></main> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>ARC Toolkit Shadow DOM issue</title> <script> class ProductTitle extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = "<h1>My Product</h1>"; } } customElements.define('my-product-title', ProductTitle); </script> </head> <body> <main role="main"><my-product-title></my-product-title></main> </body> </html>
CustomElements are a widely used standard and without support for it ARC Toolkit becomes useless in most modern websites.
Version: 3.3.2.0
Windows 10
Google Chrome Version 85.0.4183.121 (Official Build) (64-bit)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
ARC Toolkit does not work with the websites using CustomElements Shadow DOM
Expected result
ARC Toolkit should behave like assistive technology and support CustomElements Shadow DOM
Actual result
ARC Toolkit does not recognize any elements within the CustomElements Shadow DOM
Test Case
Without CustomElements
With CustomElements
Additional Information
CustomElements are a widely used standard and without support for it ARC Toolkit becomes useless in most modern websites.
ARC Toolkit version
Version: 3.3.2.0
Operating System and version
Windows 10
Browser and version:
Google Chrome Version 85.0.4183.121 (Official Build) (64-bit)
The text was updated successfully, but these errors were encountered: