mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2025-12-06 03:05:29 -05:00
update test
This commit is contained in:
parent
8f32b67a03
commit
030d71ad72
2 changed files with 2 additions and 2 deletions
|
|
@ -6,7 +6,7 @@ let t1() =
|
||||||
head [] [];
|
head [] [];
|
||||||
body [] [
|
body [] [
|
||||||
ul [A.style "list-style: circle"] (
|
ul [A.style "list-style: circle"] (
|
||||||
li[][pre [] [txt "a"; txt "b"]] ::
|
li[][pre [] [txt "a"; pre[][txt "c"; txt"d"]; txt "b"]] ::
|
||||||
List.init 100 (fun i -> li [A.id (spf "l%d" i)] [txt (spf "item %d" i)])
|
List.init 100 (fun i -> li [A.id (spf "l%d" i)] [txt (spf "item %d" i)])
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<body>
|
<body>
|
||||||
<ul style="list-style: circle">
|
<ul style="list-style: circle">
|
||||||
<li>
|
<li>
|
||||||
<pre>ab</pre>
|
<pre>a<pre>cd</pre>b</pre>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li id="l0">
|
<li id="l0">
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue