update test

This commit is contained in:
Simon Cruanes 2022-03-17 23:23:59 -04:00
parent 8f32b67a03
commit 030d71ad72
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
2 changed files with 2 additions and 2 deletions

View file

@ -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)])
) )
] ]

View file

@ -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">