menu.html - webdump_tests - Testfiles for webdump
 (HTM) git clone git://git.codemadness.org/webdump_tests
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       menu.html (526B)
       ---
            1 <!--
            2 "The <menu> HTML element is described in the HTML specification as a semantic alternative to <ul>,
            3 but treated by browsers (and exposed through the accessibility tree) as no different than <ul>.
            4 It represents an unordered list of items (which are represented by <li> elements)."
            5 -->
            6 
            7 <div class="news">
            8   <a href="#">NASA’s Webb Delivers Deepest Infrared Image of Universe Yet</a>
            9   <menu>
           10     <li><button id="save">Save for later</button></li>
           11     <li><button id="share">Share this news</button></li>
           12   </menu>
           13 </div>