Sha256: 98de4131136d994a2676ef0b26d3a23b44e8d7385aecc9cb20760baf2471fded

Contents?: true

Size: 1.42 KB

Versions: 6

Compression:

Stored size: 1.42 KB

Contents

<!--
 ! Excerpted from "Scripted GUI Testing With Ruby",
 ! published by The Pragmatic Bookshelf.
 ! Copyrights apply to this code. It may not be used to create training material, 
 ! courses, books, articles, and the like. Contact us if you are in doubt.
 ! We make no guarantees that this code is fit for any purpose. 
 ! Visit http://www.pragmaticprogrammer.com/titles/idgtr for more book information.
-->
<html>

<head>
  <title>Calculator Test</title>
  <style type="text/css">
    table {
        background: silver;
        margin: 2px;
        padding: 0px;
        border: solid grey;
        border-width: 1px 0px 0px 1px;
    }

    td {
        border: solid grey;
        border-width: 0px 1px 1px 0px;
        padding: 1px 3px 1px 3px;
    }
  </style>
</head>

<body>


<table border="1">
  <tbody>
    <tr><td colspan="8">CalculateTime</td></tr>
    <tr> <!-- (1) -->
      <td><em>days</em></td>
      <td><em>hours</em></td>
      <td><em>mins</em></td>
      <td><em>secs</em></td>

      <td><em>days()</em></td>
      <td><em>hours()</em></td>
      <td><em>mins()</em></td>
      <td><em>secs()</em></td>
    </tr>

    <tr>
      <td>1</td> <td>47</td> <td>59</td> <td>59</td>
      <td>2</td> <td>23</td> <td>59</td> <td>59</td>
    </tr>
    <tr>
      <td>1</td> <td>47</td> <td>59</td> <td>60</td>
      <td>3</td> <td>0</td>  <td>0</td>  <td>0</td>
    </tr>
    
    <!-- ... and so on -->
  </tbody>
</table>


</body>
</html>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
win_gui-0.1.6 book_code/tables/TestTimeSample.html
win_gui-0.1.4 book_code/tables/TestTimeSample.html
win_gui-0.1.3 book_code/tables/TestTimeSample.html
win_gui-0.1.2 book_code/tables/TestTimeSample.html
win_gui-0.1.1 book_code/tables/TestTimeSample.html
win_gui-0.1.0 book_code/tables/TestTimeSample.html