Results 146 comments of François REMY

Btw I think what I just proposed would be to add ```js d.element.dispatchEvent(new Event("gridLayoutUpdated")); // actually Event is not constructible in IE11 so we would need to use the older...

Are you using images, web fonts, or loading content dynamically? I guess what you want is for those to be ready and a relayout has happened after that; how to...

Okay if that also apply to IE11 I'll take a look at it. Please provide a reduced test case I can run in both browsers to find out the difference...

From what I can see the problem is in your code. In IE, there are no element matching a rule creating a region at all. For some reason `````` never...

Could this be a race condition? IE uses additional polyfills to work, maybe something fires too early or too late and messes up with your flow but I don't really...

I haven't looked at the code for a long time but I do have the vague feeling that should actually work. I guess it is a bug if it doesn't...

Thanks for investigating! If someone want to take this issue, here is the code that parses that value: https://github.com/FremyCompany/css-grid-polyfill/blob/master/src/css-grid/lib/grid-layout.js#L233 This should be an easy fix if the polyfill doesn't match...

If someone want to tackle this issue, here is a game plan! A good start for that one would be to add support for the properties and parse their values...

Thanks, sounds useful! I will try to spend some time on the polyfill when Edge releases its native grid implementation.