@soomo/wicg-inert
Version:
A polyfill for the proposed inert API
29 lines (24 loc) • 685 B
HTML
<!--
This work is licensed under the W3C Software and Document License
(http://www.w3.org/Consortium/Legal/2015/copyright-software-and-document).
-->
<html lang="en">
<head>
<title>tabindex fixture</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="container">
<button>Click me</button>
<button tabindex="0">Click me</button>
<button tabindex="-1">Click me</button>
<button tabindex="42">Click me</button>
<div>Click me</div>
<div tabindex="0">Click me</div>
<div tabindex="-1">Click me</div>
<div tabindex="42">Click me</div>
</div>
</body>
</html>