Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / focus-ring-outline-width.html
blob6fb823a81159d6883d757152f4314afd68aa1c3a
1 <html>
2 <head>
3 <style>
4 a:focus { outline-width: 10px; }
5 </style>
6 <script>
7 window.onload = function()
9 document.getElementById("link").focus();
11 </script>
12 </head>
13 <body>
14 <p>Assuming the port-specific theme draws focus rings, this test can be used to ensure that a focus ring is drawn with an outline width of 10 px.</p>
15 <a id="link" href="#"/>Test</a>
16 </body>
17 </html>