Opera にバグが見つかりました: ボックスのサイズ変更は、フレックス表示モードのテキストエリアでは機能しません。
b {
display: flex;
flex-direction: row;
}
textarea {
float: right;
width: 50%;
height: 50px;
padding: 15px;
box-sizing: border-box;
}
div {
width: 50%;
height: 50px;
padding: 15px;
box-sizing: border-box;
background: red;
}
例: http://jsfiddle.net/pJc5v/3/
何をすべきか?