When I place a textarea inside a table cell...
<table style="height:200px">
<tr>
<td>Some<br>nifty<br>text<br>filler</td>
<td style="padding:0px">
<div style="height:100% !important">
<textarea style="resize:none; height:100% !important; width:100% !important" data-ng-model="modelLogin.inpMtext">
</div>
</td>
</tr>
</table>
...and I take extra care to make sure that both the textarea and the containing div have an important height of 100%... the textarea indeed covers all the cell's height under Chrome, but not under Firefox.
Any idea why and/or how to fix the situation under Firefox?