Eric Bidelman
Eric Bidelman
IIRC, vulcanize/crisper does this to make polyfill'd browsers like IE happy. I believe it also does things like stick a `hidden` attribute on the body so there's no possibility of...
@azakus in that case wdyt about accepting this PR?
What sort of race conditions? Defer will load but not execute until the parser is done. On Tue, Mar 15, 2016, 5:08 PM Rob Dodson [email protected] wrote: > If you...
@azakus this would help for the ES6 stuff we're doing for the Summit. WDYT?
Another repro. This demo should use geolocation to show your location on the map. Instead it doesn't do anything, fails silently. ```js const puppeteer = require('puppeteer'); const URL = require('url').URL;...
Thanks! I'll file that bug for `getUserMedia`. For geolocation, can we mention that in the docs? I also tried Canary but it still doesn't produce a result. ```js const puppeteer...
Another one that doesn't work is the `clipboard-read` API. ```js async function readClipboard(page, text) { return page.evaluate(() => navigator.clipboard.readText()); } ... context.overridePermissions(url.origin, ['clipboard-read']); ``` The API returns `undefined` from `readClipboard`...
I'm usually in favor of separate repos, but in this case it might be daunting to create a repo for each helper, maintain that, have users search over them, etc....
Want me to take a stab? I need to get more familiar with the lib codebase. Pointers are appreciated! On Tue, Jul 19, 2016, 7:07 AM Jeffrey Posnick [email protected] wrote:...
Sadly I'm not working on this stuff anymore. @robdodson who is looking after web components these days? Any resources on CSP + Web components you can think of?