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
<!DOCTYPE html> <html> <head> <script> window.addEventListener('error', function(e) {alert('error');}); </script> </head> <body> <div class="page-content"> </div> <script> const pageContent = document.querySelector('.page-content'); const el = document.createElement('div'); el.textContent = 'dummy'; // required pageContent.append(el); // BUG, triggers the error event // setTimeout(()=>{pageContent.append(el);}, 0); // BUG, triggers the error event // setTimeout(()=>{pageContent.append(el);}, 500); // no bug ..... </script> </body> </html>
No error event
Nonsense error event
┆Issue is synchronized with this Jira Task
The text was updated successfully, but these errors were encountered:
Stale?
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce
Expected behavior
No error event
Actual behavior
Nonsense error event
Device & build information
┆Issue is synchronized with this Jira Task
The text was updated successfully, but these errors were encountered: