browser_toolbar_basic.html 549 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!doctype html>
  2. <!-- Any copyright is dedicated to the Public Domain.
  3. http://creativecommons.org/publicdomain/zero/1.0/ -->
  4. <html>
  5. <head>
  6. <meta charset="UTF-8">
  7. <title>Developer Toolbar Tests</title>
  8. <style type="text/css">
  9. #single { color: red; }
  10. </style>
  11. <script type="text/javascript">
  12. /* eslint-disable */
  13. var a = 1;
  14. </script>
  15. </head>
  16. <body>
  17. <p id=single>
  18. 1
  19. </p>
  20. <p class=twin>
  21. 2a
  22. </p>
  23. <p class=twin>
  24. 2b
  25. </p>
  26. <style>
  27. .twin { color: blue; }
  28. </style>
  29. <script>
  30. /* eslint-disable */
  31. var b = 2;
  32. </script>
  33. </body>
  34. </html>