Skip to content

Commit

Permalink
Fix <link>.workerType IDL
Browse files Browse the repository at this point in the history
9c7da49 removed the idea of using
enumerations in the IDL to case-sensitively reflect properties, but
forgot to switch <link>'s workerType attribute to DOMString.
  • Loading branch information
domenic committed Jun 6, 2017
1 parent 822a911 commit 22d594b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source
Original file line number Diff line number Diff line change
Expand Up @@ -12928,7 +12928,7 @@ interface <dfn>HTMLLinkElement</dfn> : <span>HTMLElement</span> {
[SameObject, PutForwards=<span data-x="dom-DOMTokenList-value">value</span>] readonly attribute <span>DOMTokenList</span> <span data-x="dom-link-sizes">sizes</span>;
[<span>CEReactions</span>] attribute DOMString <span data-x="dom-link-referrerPolicy">referrerPolicy</span>;
[<span>CEReactions</span>] attribute USVString <span data-x="dom-link-scope">scope</span>;
[<span>CEReactions</span>] attribute <span>WorkerType</span> <span data-x="dom-link-workertype">workerType</span>;
[<span>CEReactions</span>] attribute DOMString <span data-x="dom-link-workertype">workerType</span>;
[<span>CEReactions</span>] attribute boolean <span data-x="dom-link-useCache">useCache</span>;
};
<span>HTMLLinkElement</span> implements <span>LinkStyle</span>;</pre>
Expand Down

0 comments on commit 22d594b

Please sign in to comment.