-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
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
Miscellaneous improvements to MathML DOM tests #19534
Conversation
- Don't use asynchronous test to check MathMLElement onevent attributes. closes #19500 - Only test tab-navigation of MathML links when HTML links are tab-navigable. https://github.com/mathml-refresh/mathml/issues/152 https://github.com/Igalia/chromium-dev/issues/50 https://bugzilla.mozilla.org/show_bug.cgi?id=1571487#c30
There are no reviewers for this pull request besides its author. Please reach out on W3C's irc server (irc.w3.org, port 6665) on channel #testing (web client) to get help with this. Thank you! |
@@ -10,6 +10,7 @@ | |||
<script src="/resources/testdriver.js"></script> | |||
<script src="/resources/testdriver-vendor.js"></script> | |||
<div id="log"></div> | |||
<a tabindex="1" href="#link">tabindex(1)-html</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the tabindex="1" here? The mtext that's a link doesn't have that...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That was to make the HTML link focused before all the other focusable MathML elements in this test. This explicit tabindex="1" does not make the link tab-navigable on macOS.
However, it's true that we actually only need that HTML link to be focused before the mtext link and removing the tabindex attribute make them more similar. So I'll to remove it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
closes Don't use asynchronous test to check MathMLElement onevent attributes #19500
https://github.com/mathml-refresh/mathml/issues/152
https://github.com/Igalia/chromium-dev/issues/50
https://bugzilla.mozilla.org/show_bug.cgi?id=1571487#c30