test/script/markdown/table-basic.js.EXPECTED

Fri, 05 Jun 2015 12:38:53 +0200

author
mhaupt
date
Fri, 05 Jun 2015 12:38:53 +0200
changeset 1398
2f1b9f4daec1
parent 963
e2497b11a021
permissions
-rw-r--r--

8080087: Nashorn $ENV.PWD is originally undefined
Summary: On Windows, the PWD environment variable does not exist and cannot be imported in scripting mode, so it is set explicitly.
Reviewed-by: lagergren, sundar

     1 <table>
     2 <thead>
     3 <tr>
     4 <th id="first_header" style="text-align:left;"> First Header  </th>
     5 <th id="second_header" style="text-align:left;"> Second Header </th>
     6 </tr>
     7 </thead>
     9 <tbody>
    10 <tr>
    11 <td style="text-align:left;"><p>Row 1 Cell 1  </p></td>
    12 <td style="text-align:left;"><p>Row 1 Cell 2  </p></td>
    13 </tr>
    15 <tr>
    16 <td style="text-align:left;"><p>Row 2 Cell 1  </p></td>
    17 <td style="text-align:left;"><p>Row 2 Cell 2  </p></td>
    18 </tr>
    20 </tbody>
    21 </table>

mercurial