Por que os elementos “inline-block” em um overflow de “nowrap” div?

O código a seguir faz #headline estourar #wrapper e não entendo por que isso está acontecendo.

HTML:

<div id="wrapper">
    <div id="logo">
        <img src="/test.png">
    </div>
    <div id="headline">
        <h1>This headline overflows its wrapping div. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #</h1>
    </div>
</div>

CSS:

#wrapper {
    background: #fea;
    white-space: nowrap;
    width: 50%;
}

#logo {
    display: inline-block;
    vertical-align: middle;
}

#logo img {
       width: 6em; 
}

#headline {
     display: inline-block;
     vertical-align: middle;
     white-space: normal;
}

Exemplo de código:http://jsfiddle.net/XjstZ/21/ ouhttp://tinkerbin.com/XvSAEfrK

questionAnswers(4)

yourAnswerToTheQuestion