-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from bkardell/master
Proposed changes for linking and tabindexing... Merging this as I am pretty confident that no other class like this has a constructor and I'd rather be less special than more, and I'd like to do the follow on work that is waiting on this.
- Loading branch information
Showing
2 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
[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; | ||
|
||
[CEReactions] attribute DOMString referrerPolicy; | ||
}; | ||
|
||
MathMLElement includes HTMLHyperlinkElementUtils; |