-
Notifications
You must be signed in to change notification settings - Fork 15
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
Proposed changes for linking and tabindexing #21
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[Exposed=Window] | ||
interface MathMLLinkableElement : MathMLElement { | ||
[CEReactions] attribute DOMString target; | ||
[CEReactions] attribute DOMString download; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where does this come from? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, you are following https://html.spec.whatwg.org/#the-a-element. |
||
[CEReactions] attribute USVString ping; | ||
[CEReactions] attribute DOMString rel; | ||
[SameObject, PutForwards=value] readonly attribute DOMTokenList relList; | ||
[CEReactions] attribute DOMString hreflang; | ||
[CEReactions] attribute DOMString type; | ||
|
||
[CEReactions] attribute DOMString text; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what is this? Alt text? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. from
|
||
|
||
[CEReactions] attribute DOMString referrerPolicy; | ||
}; | ||
|
||
MathMLElement includes HTMLHyperlinkElementUtils; |
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.
It seems like this should closely follow:
https://html.spec.whatwg.org/#the-link-element.
So then href may be better?
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.
based on https://html.spec.whatwg.org/#the-a-element, not link