Skip to content
This repository was archived by the owner on Apr 22, 2020. It is now read-only.

Commit 1e3dc18

Browse files
normalizing list items in numberLines tests
1 parent bd9afb5 commit 1e3dc18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js-modules/numberLines_test.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ <h1>Number Lines Test</h1>
8080
setTimeout(function () {
8181
function normListItems(html) {
8282
// IE likes to leave out </li>s before <li>s.
83-
return html.replace(/<\/li>(<li\b)/g, '$1');
83+
return html.replace(/<\/li>(<li\b)/gi, '$1');
8484
}
8585

8686
var testInputs = Array.prototype.slice.call(
@@ -115,5 +115,5 @@ <h1>Number Lines Test</h1>
115115

116116
<hr>
117117
<address></address>
118-
<!-- hhmts start --> Last modified: Tue Mar 29 16:42:02 PDT 2011 <!-- hhmts end -->
118+
<!-- hhmts start --> Last modified: Tue Mar 29 16:42:41 PDT 2011 <!-- hhmts end -->
119119
</body> </html>

0 commit comments

Comments
 (0)