1174332-1.html (272B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <meta charset="utf-8"> 4 <title>Testcase for filters on canvas</title> 5 6 <style> 7 8 #checkbox { 9 box-shadow: 0 0 0 5px blue; 10 } 11 12 </style> 13 14 <input type="checkbox" id="checkbox"> 15 16 <script> 17 18 document.getElementById("checkbox").focus(); 19 20 </script>