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
I've noticed we're crashing on accumulation-per-property-001.html WPT The test is huge, and involves thousands of lines of code. This is why I made a reduced test case that crashes Ladybird. If we fix it, we're likely to significantly improve our WPT score as this crash involves 310 subtests at accumulation-per-property-001.html, 310 subtests at addition-per-property-001.html and 385 subtests at interpolation-per-property-001.html
const element = document.createElement('div'); element.style.fontLanguageOverride = '"eng"'; document.body.appendChild(element); const animation = element.animate( [ { fontLanguageOverride: '"eng"' }, { fontLanguageOverride: '"xyz"' } ], { duration: 1000, iterations: 1 } ); animation.play();
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I've noticed we're crashing on accumulation-per-property-001.html WPT
The test is huge, and involves thousands of lines of code.
This is why I made a reduced test case that crashes Ladybird. If we fix it, we're likely to significantly improve our WPT score as this crash involves 310 subtests at accumulation-per-property-001.html, 310 subtests at addition-per-property-001.html and 385 subtests at interpolation-per-property-001.html
The text was updated successfully, but these errors were encountered: