tor-browser

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

nav-dir-missing-4.html (932B)


      1 <!DOCTYPE html>
      2 <title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title>
      3 <link rel="author" title="Florian Rivoal" href="mailto:florian@rivoal.net">
      4 <link rel="help" href="https://drafts.csswg.org/css-ui-4/#nav-dir">
      5 <meta name="flags" content="interact">
      6 <meta name="assert" content="Test checks that an unknow element id used as the value of the 'nav-up' property value does not hinder normal spacial navigation.">
      7 <style>
      8 #start {
      9    nav-up: #foo;
     10 }
     11 </style>
     12 </head>
     13 <body>
     14    <p>First, use directional navigation to navigate the focus to the "START" link below.</p>
     15    <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>.
     16         In the SmartTV emulator, use the keypad in the GUI. -->
     17    <p>Test passes if navigating up moves the focus to the "FINISH" link.</p>
     18 
     19    <a href="" id="finish">FINISH</a><br>
     20    <a href="" id="start">START</a>
     21 </body></html>