pai e filho com posição fixa, estouro de pai: bug oculto

Eu não sei se há um problema, mas eu estava me perguntando por que ooverflow:hidden não funciona emfixed elemento pai / filho.

Aqui está um exemplo:

CSS e HTML:

.parent{
  position:fixed;
  overflow:hidden;
  width:300px;
  height:300px;
  background:#555;
}
.children{
  position:fixed;
  top:200px;
  left:200px;
  width:150px;
  height:150px;
  background:#333;
}
<div class="parent">
  <div class="children">
  </div>
</div>

Demonstração ao vivo:jsFiddle

questionAnswers(7)

yourAnswerToTheQuestion