--- /dev/null
+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x600
+ RenderBlock {HTML} at (0,0) size 800x600
+ RenderBody {BODY} at (8,8) size 784x584
+ RenderFlexibleBox {DIV} at (0,0) size 300x100 [bgcolor=#0000FF]
+ RenderBlock {DIV} at (0,0) size 400x100 [bgcolor=#FF0000]
+ RenderText {#text} at (0,0) size 63x18
+ text run at (0,0) width 63: "Some text"
+ RenderBlock {DIV} at (400,0) size 0x100 [bgcolor=#008000]
+ RenderText {#text} at (0,0) size 36x54
+ text run at (0,0) width 36: "Some"
+ text run at (0,18) width 32: "more"
+ text run at (0,36) width 23: "text"
--- /dev/null
+<style type="text/css">
+ #file {
+ display: -moz-box;
+ display: -khtml-box;
+ display: box;
+ background-color: blue;
+ width: 300px;
+ height: 100px;
+ }
+
+ #but {
+ -moz-box-flex: 2;
+ -khtml-box-flex: 2;
+ box-flex: 2;
+ height: 100px;
+ background-color: red;
+ max-width: 400px;
+ min-width: 400px;
+ }
+
+ #name {
+ -moz-box-flex: 3;
+ -khtml-box-flex: 3;
+ box-flex: 3;
+ height: 100px;
+ background-color: green;
+ }
+</style>
+<div id="file"><div id="but">Some text</div><div id="name">Some more text</div></div>
\ No newline at end of file