TableFilter/test/test-one-row.html

30 lines
840 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>TableFilter one row tests</title>
<link rel="stylesheet" href="libs/qunit/qunit.css">
<script src="libs/qunit/qunit.js"></script>
<script src="libs/polyfill.js"></script>
</head>
<body>
<table id="demo">
<thead>
<tr>
<th>From</th>
<th>Destination</th>
<th>Road Distance (km)</th>
<th>By Air (hrs)</th>
<th>By Rail (hrs)</th>
</tr>
</thead>
</table>
<script src="../dist/tablefilter/tablefilter.js"></script>
<script src="test-one-row.js"></script>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
</body>
</html>