html5 - Invalid location of html tag <command> in Eclipse -


given code:

<!doctype html> <html> <body> <menu id="html5menu" type="context" style="display:none" class="showcase">   <command label="rotate" onclick="alert('rotate')"></command>   <command label="resize" onclick="alert('resize')"></command>   <menu label="share">     <command label="twitter" onclick="alert('twitter')"></command>     <hr>     <command label="facebook" onclick="alert('facebook')"></command>   </menu> </menu> </body> </html> 

i warning in eclipse:

invalid location of tag (command). 

according examples have found in web tag being used correctly. eclipse 'false' warning or missing something?


Comments

Popular posts from this blog

How to access named pipes using JavaScript in Firefox add-on? -

multithreading - OPAL (Open Phone Abstraction Library) Transport not terminated when reattaching thread? -

node.js - req param returns an empty array -