modalariavisibilityhelper_test.html 794 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2015 The Closure Library Authors. All Rights Reserved.
  5. Use of this source code is governed by the Apache License, Version 2.0.
  6. See the COPYING file for details.
  7. -->
  8. <head>
  9. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  10. <meta charset="UTF-8" />
  11. <title>
  12. Closure Unit Tests - goog.ui.ModalAriaVisibilityHelper
  13. </title>
  14. <script src="../base.js">
  15. </script>
  16. <script>
  17. goog.require('goog.ui.ModalAriaVisibilityHelperTest');
  18. </script>
  19. </head>
  20. <body>
  21. <div id="div-1">
  22. Red
  23. </div>
  24. <div id="div-2">
  25. <div id="div-2-1">
  26. Blue
  27. </div>
  28. </div>
  29. <div id="div-3" aria-hidden="false">
  30. Indigo
  31. </div>
  32. <div id="div-4">
  33. Yellow
  34. </div>
  35. <div id="div-5" aria-hidden="true">
  36. Orange
  37. </div>
  38. </body>
  39. </html>