IE11 crashes when the first column is resized:
https://cdn.vaadin.com/vaadin-grid/2.0.2/demo/columns.html#reordering-and-resizing-columns
IE11 crash required me to first reorder the first column and then resize it. Plain resize did not crash IE.
This can be worked around for now by adding a hidden column before the rest of the columns (in case the first column must be resizable):
<vaadin-grid-column hidden>
<template></template>
</vaadin-grid-column>
Doesn't reproduce anymore with the newest releases
Most helpful comment
This can be worked around for now by adding a hidden column before the rest of the columns (in case the first column must be resizable):