Skip to content
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

HTMLLinkElement extension is redundant #1098

Closed
saschanaz opened this issue Mar 30, 2017 · 2 comments
Closed

HTMLLinkElement extension is redundant #1098

saschanaz opened this issue Mar 30, 2017 · 2 comments

Comments

@saschanaz
Copy link
Member

All members on the following extension is already defined in HTML:

partial interface HTMLLinkElement {
  [CEReactions] attribute USVString scope;
  [CEReactions] attribute WorkerType workerType;
  [CEReactions] attribute boolean useCache;
};
[HTMLConstructor]
interface HTMLLinkElement : HTMLElement {
  [CEReactions] attribute USVString href;
  [CEReactions] attribute DOMString? crossOrigin;
  [CEReactions] attribute DOMString rel;
  [CEReactions] attribute RequestDestination as; // (default "")
  [SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
  [CEReactions] attribute DOMString media;
  [CEReactions] attribute DOMString nonce;
  [CEReactions] attribute DOMString integrity;
  [CEReactions] attribute DOMString hreflang;
  [CEReactions] attribute DOMString type;
  [SameObject, PutForwards=value] readonly attribute DOMTokenList sizes;
  [CEReactions] attribute DOMString referrerPolicy;
  [CEReactions] attribute USVString scope;
  [CEReactions] attribute WorkerType workerType;
  [CEReactions] attribute boolean useCache;
};
HTMLLinkElement implements LinkStyle;

Is there any reason to keep this extension?

@mkruisselbrink
Copy link
Collaborator

No reason. This should be cleaned up on the service worker side now they are defined in HTML. I just haven't gotten around to doing so yet.

@mkruisselbrink
Copy link
Collaborator

And this actually is a duplicate of #1073

This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants