Aleksandar Totic

Results 43 comments of Aleksandar Totic

It is just a URL change. It might be achievable through the existing API, but I do not see it. How would you do it?

I call this feature "resume". How about something like this: ``` history.onbeforenavigate = (e) => { // create a history token we can navigate to resume = history.createResume(onBeforeNavigateEvent); e.preventDefault(); };...

Anecdotal datapoint: I've been assigned several clusterfuzzes a week for a while now. Each one starts as a ~1000 lines, and I spend one to two hours minimizing it to...

Just got one today. Unminimized case is 1MB, 7900LOC https://bugs.chromium.org/p/chromium/issues/detail?id=1204348#c2 Clusterfuzz did not minimize it at all. I was also unable to minimize the testcase. DCHECK was only hit on...

I've just ran into a particularly tough reduction: https://clusterfuzz.com/testcase-detail/6452246536323072 The problem is buildDOM() javascript routine. What it does is randomly create elements and insert them by indexing into document.all. elemTree.push(document.createElement('div'))...

If you update the spec, this test will be useful. It would be useful to expand it to cover a few more cases. In the spec discussion, the elements with...

Can you create a self-contained example? jsbin, or a gist.

Two things: - you are not using the API as intended. google-map-markers are supposed to be direct children of google-map. If they are, this might fix your bug. - as...

It looks like an issue with google auth2 library. google-signin element does not directly use sessionStorage. If you'd like to pursue this bug, you should file a bug with a...

Could you use oauth2 the way it is intended for installed applications in this use case? https://developers.google.com/identity/protocols/OAuth2InstalledApp That would be a nice addition to google-signin, it is not an uncommon...