1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <!--
| To change this template, choose Tools | Templates
| and open the template in the editor.
| -->
| <!DOCTYPE html>
| <html>
| <head>
| <script type="text/javascript">
| alert('pointerEvents' in document.documentElement.style);
| alert('outline' in document.documentElement.style);
| </script>
| </head>
| <body>
| <button style="inline:2px solid blue">Foo</button>
| </body>
| </html>
|
|