10 -moz-box-orient: vertical;
11 -webkit-box-orient: vertical;
13 -webkit-line-clamp:
50%;
17 if (window
.testRunner
)
18 testRunner
.dumpAsText();
22 <p>Remove last block content from a flexbox, leaving only inline content. This should not crash
</p>
24 <div id=
"flexbox"><div id=remove
></div>text
</div>
26 var flexbox
= document
.getElementById('flexbox');
27 flexbox
.removeChild(flexbox
.firstChild
);