testpointerevents.html 424 B

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