error code when insering a video using video tag

Hi all,
I'm trying to insert a video in an HTML page.
I've tried a w3school code example :


<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  <source src="movie.webm" type="video/webm">
 
	<object data="movie.mp4" 
	width="320" height="240">
    <embed src="movie.swf" width="320" 
	height="240">
 
	</object> 
</video> 


See: http://www.w3schools.com/html/html_videos.asp

Unfortunatly, Amaya returns "an error code": invalid token
It seems it is the "s" of controls which generate the error.

Do you know what I should do to avoid this error ?

Antoine

Received on Friday, 4 January 2013 17:44:03 UTC