Skip to content

Commit

Permalink
update test cases #1472
Browse files Browse the repository at this point in the history
  • Loading branch information
shunguoy committed Aug 22, 2023
1 parent 7eb155d commit cbdb982
Show file tree
Hide file tree
Showing 14 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1166,7 +1166,7 @@ export class RPTUtil {
lastRow = rows[r];
passed = RPTUtil.isTableRowEmpty(lastRow);
}

console.log("passed=" +passed +", lastRow=" + lastRow.innerHTML);
if (passed) //shouldn't happen!
return true;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,30 +19,29 @@

<head>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Data table</title>
</head>
<body>
<table>
<caption>
Council budget 2018
</caption>
<tbody>

<tr>
<td>Donuts</th>
<td>Donuts</td>
<td>3,000</td>
<td>2,000</td>
</tr>
<tr>
<td>Stationery</th>
<td>Stationery</td>
<td>18,000</td>
<td>8,000</td>
</tr>
<tr>
<th >Items</th>
<th >Expenditure</th>
<th >Other</th>
<th>Items</th>
<th>Expenditure</th>
<th>Other</th>
</tr>
</tbody>

</table>
<script>
UnitTest = {
Expand Down

0 comments on commit cbdb982

Please sign in to comment.