aboutsummaryrefslogtreecommitdiff
path: root/tests/recursive/src/second.html
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-04-20 19:30:28 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2026-04-20 19:30:28 +0200
commite371c801fed71bb73bc7c027e3de5ad2a6116673 (patch)
treee6818b34fed4723d8c44d71f8c6d1a68e44c4c8d /tests/recursive/src/second.html
parent47a5607a691a576928896f21bcf563c011dc64e5 (diff)
add tests and fix path resolution bugHEADmaster
Diffstat (limited to 'tests/recursive/src/second.html')
-rw-r--r--tests/recursive/src/second.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/recursive/src/second.html b/tests/recursive/src/second.html
new file mode 100644
index 0000000..e03a249
--- /dev/null
+++ b/tests/recursive/src/second.html
@@ -0,0 +1,15 @@
+<!DOCTYPE "html">
+<html>
+ <head>
+ <title>@{name()}</title>
+ </head>
+ <body>
+ @{function()
+ local text = ""
+ for i=1,50 do
+ text = text .. ' ' .. tostring(i)
+ end
+ return text
+ end}
+ </body>
+</html>