nav-dir-missing-4

Directional Focus Navigation - unkown element id

WeasyPrint

This browser

Flags
interact
Assertion
Test checks that an unknow element id used as the value of the 'nav-up' property value does not hinder normal spacial navigation.

Source

 1 <!DOCTYPE html>
 2 <html><head><title>CSS Basic User Interface Test: Directional Focus Navigation - unkown element id</title>
 3 <link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal">
 4 <link href="http://www.w3.org/TR/css3-ui/#nav-dir" rel="help">
 5 <meta content="interact" name="flags">
 6 <meta content="Test checks that an unknow element id used as the value of the 'nav-up' property value does not hinder normal spacial navigation." name="assert">
 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 
22 </body></html>