Re: [css-houdini-drafts] [worklets] <script> tag import feature design.

Yes, inline scripts are desirable if html modules get off the ground again, e.g. if this was used inside the [&lt;paper-ripple&gt;](https://github.com/PolymerElements/paper-ripple/blob/master/paper-ripple.html) web component:
```html
<!-- paper-ripple.html web component file -->
<link rel="import" href="../polymer/polymer.html">
<script type="paintworklet">
  // code specific to the paper-ripple web component...
</script>
<template>
  <div id="foo"></div>
</template>
<script>
   // actual web component code....
</script>
``` 

`type="paintworklet"` makes sense, updated the initial comment to reflect that.

-- 
GitHub Notification of comment by bfgeek
Please view or discuss this issue at https://github.com/w3c/css-houdini-drafts/issues/376#issuecomment-292580560 using your GitHub account

Received on Friday, 7 April 2017 16:13:50 UTC