Alexander Petros d1288d202a
Remove old tests from the website (#1733)
The website used to host every past test suite, copied into the www
directory. We no longer need that on the website (and it makes the
codebase impossible to search) so I removed all the old tests and the
new tests are hosted simply at /test.

I also replaced the www.js script with a simpler www.sh one (since we no
longer need to do anything besides copying, really), which allowed me to
remove a node dependency that was only used in that script.
2023-09-19 11:07:24 -05:00

27 lines
700 B
HTML

<html lang="en">
<head>
<meta charset="utf-8" />
<script type="application/javascript" src="../../../src/htmx.js"></script>
<script type="application/javascript" src="../../../src/ext/restored.js"></script>
<title>Restored - Index</title>
<script>
//htmx.logAll();
</script>
</head>
<body style="padding:20px;font-family: sans-serif" hx-boost="true">
<h1>Restored Test</h1>
<p>Every popstate event on this page should display a success message below.</p>
<p id="message"
hx-ext="restored"
hx-trigger="restored"
hx-get="success.html"
></p>
<a href="1.html">1</a>
<a href="2.html">2</a>
<a href="3.html">3</a>
<a href="4.html">4</a>
<h3>3</h3>
</body>
</html>