Re: [slightlyoff/ServiceWorker] Specify serviceworker link type for link element and link header. (#828)

> +      <pre class="lang-html">
> +        &lt;link rel="serviceworker" href="/js/sw.js" scope="/"&gt;
> +      </pre>
> +      which is more or less equivalent to the page containing javascript code like:
> +      <pre class="lang-js">
> +        navigator.serviceworker.register("/js/sw.js", { scope: "/" });
> +      </pre>
> +    </div>
> +  </section>
> +
> +  <section>
> +    <h3 id="link-element-interface-section">Link element interface extensions</h3>
> +
> +    <pre class="idl">
> +      partial interface HTMLLinkElement {
> +        attribute USVString scope;

Can you add [CEReactions] to this, per https://github.com/w3c/webcomponents/issues/186 ?

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/slightlyoff/ServiceWorker/pull/828/files/21aac244c26b81d49bd1337fa1eb924c176d2f5a#r60476898

Received on Wednesday, 20 April 2016 20:00:05 UTC