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
Post a Comment