tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

optgroup-role.tentative.html (857B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4  <title>HTMLOptGroupElement Role Verification Tests</title>
      5  <script src="/resources/testharness.js"></script>
      6  <script src="/resources/testharnessreport.js"></script>
      7  <script src="/resources/testdriver.js"></script>
      8  <script src="/resources/testdriver-vendor.js"></script>
      9  <script src="/resources/testdriver-actions.js"></script>
     10  <script src="/wai-aria/scripts/aria-utils.js"></script>
     11 </head>
     12 <body>
     13 
     14 <select>
     15  <optgroup label="x" data-testname="el-optgroup" data-expectedrole="group" class="ex">
     16    <option>x1</option>
     17    <option>x2</option>
     18  </optgroup>
     19  <optgroup data-testname="el-optgroup-no-label" data-expectedrole="not defined in spec?" class="ex-todo">
     20    <option>y1</option>
     21    <option>y2</option>
     22  </optgroup>
     23 </select>
     24 
     25 <script>
     26 AriaUtils.verifyRolesBySelector(".ex");
     27 </script>
     28 
     29 </body>
     30 </html>