Is there a way to force content plugin to behave with large content that does not fit in the declared dimensions?

i.e.:

titleBar: { 
	url: '/flash/flowplayer.content-3.1.0.swf',
	backgroundColor: '#000000',
	border: '0px none',
	padding: 10,
	html: '<p>Some long paragraph text that will not fit in width or height in the container</p>',
	display: 'block',
	height: 50,
	width: '100%',
	top: 0,
	left: 0,
	style: {
		'p' : {
			color: '#ffffff',
			fontSize: 21,
		}
	}
}

.. Despite the given height, if the width is too low the text inside container will wrap down and jump out of the black box.

Naturally there should be a way to control it. In css container we could use height:auto, overflow: hidden or at least (cheap workaround) white-space:nowrap.

If it's not implemented, any ideas how to emulate it ?

ps: please stop messing with js on flowplayer page :) My left/right arrow keys are not working, so there must be some background event handler capturing those.