When overriding the size of the border-bottom in a div that already has a 1px border, Firefox and Chrome render the border-left and border-right incorrectly:
HTML
<div></div>
CSS
div{
width: 300px;
height: 200px;
border: 1px solid #9fd;
border-bottom: 50px solid #333;
}
jsFiddle link: http://jsfiddle.net/azSrQ/
Expected result (Safari 6.0.1)

Actual result (Firefox 15.0.1 and Chrome 22)

The left and right border always stop halfway down the border-bottom in the latest Chrome and Firefox. I couldn't find any reports of this in Bugzilla or Chromium's issues page.
Is there a workaround?