Table inside inline-block Firefox issue

HTML

<span id="a">
  <span id="b">b b b b b b b b</span>
  <span id="c">c c c c c c c c c c c c c c c c c c c c c c c c c c</span>
</span>

CSS

#a { display: inline-block; white-space: nowrap; }
#b { float: left;           }
#c { display: inline-table; white-space: normal; }