Sha256: c74ae3f2d03f5243d278303a9764a44736009430e97dcdf323ccf868a7dfcc28

Contents?: true

Size: 583 Bytes

Versions: 8

Compression:

Stored size: 583 Bytes

Contents

<html>
  <head>
    <title>Async Page</title>
    <script type="text/javascript">
      function unhide() {
        document.getElementById("target").style.display="block";
      }

      function hide() {
        document.getElementById("target").style.display="none";
      }
    </script>
  </head>
  <body>
    <input type="button" id="target" value="Target"/>
    <input type="button" onclick="setTimeout(function() {hide();}, 2000);" value="Hide Button"/>
    <input type="button" onclick="setTimeout(function() {unhide();}, 2000);" value="Unhide Button"/>
  </body>
</html>


Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
page-object-0.6.5 features/html/async.html
page-object-0.6.4 features/html/async.html
page-object-0.6.3 features/html/async.html
page-object-0.6.2 features/html/async.html
page-object-0.6.1 features/html/async.html
page-object-0.6 features/html/async.html
page-object-0.5.5 features/html/async.html
page-object-0.5.4 features/html/async.html