From 3bcb5452aa91e527d04cbfc33f81395618db4959 Mon Sep 17 00:00:00 2001 From: "Zachary J. Rollyson" Date: Sat, 10 Oct 2020 11:23:07 -0400 Subject: Add HTML syntax test sample --- tests/syntax-tests/highlighted/HTML/test.html | 115 ++++++++++++++++++++++++++ tests/syntax-tests/source/HTML/test.html | 115 ++++++++++++++++++++++++++ 2 files changed, 230 insertions(+) create mode 100644 tests/syntax-tests/highlighted/HTML/test.html create mode 100644 tests/syntax-tests/source/HTML/test.html (limited to 'tests') diff --git a/tests/syntax-tests/highlighted/HTML/test.html b/tests/syntax-tests/highlighted/HTML/test.html new file mode 100644 index 00000000..3df49d03 --- /dev/null +++ b/tests/syntax-tests/highlighted/HTML/test.html @@ -0,0 +1,115 @@ + +<html> +  + <head> + <title>Bat Syntax Test + <meta charset="utf-8">  + <script> + const x = 'world'; + function logGreeting() { + console.log(`Hello, ${x}`); + } +  +  + <body> + <div> + <h1>Here find some simple tags + <br /> + <p center style="color: rebeccapurple;"> + Lorem <strong>ipsum dolor sit amet consectetur adipisicing + elit. A quo, autem quaerat explicabo impedit mollitia amet molestiae + nulla cum architecto ducimus itaque sit blanditiis quasi animi optio ab + facilis nihil? +  + <p> + Here are some escaped characters: &amp; (ampersand), &agrave; (a with grave), &#8470; (numero sign). +  +  + <div> + <h1>This is a form that demonstrates loose attribute formatting + <form action="POST"> + <input + disabled + type="text" + name="text input" + id="specificTextInput" + value="yes" + /> +  +  + <div> + <h1>A table with normal closing tags + <table> + <caption> + Pet Features +  + <colgroup> + <col /> + <col /> + <col /> +  + <thead> + <tr> + <th>Feature + <th>Cat + <th>Dog +  +  + <tbody> + <tr> + <td>Tail + <td>✔ + <td>✔ +  + <tr> + <td>Eyes + <td>✔ + <td>✔ +  + <tr> + <td>Ears + <td>✔ + <td>✔ +  + <tr> + <td>Barking + <td> + <td>✔ +  + <tr> + <td>Litter Box + <td>✔ + <td> +  +  +  +  + <div> + <h1>A table without closing tags + <table> + <caption>Pet Features + <colgroup><col><col><col> + <thead> + <tr> <th>Feature <th>Cat <th>Dog + <tbody> + <tr> <td>Tail <td>✔ <td>✔ + <tr> <td>Eyes <td>✔ <td>✔ + <tr> <td>Ears <td>✔ <td>✔ + <tr> <td>Barking <td> <td>✔ + <tr> <td>Litter Box <td>✔ <td> +  +  +  + <div> + <h1>A math section with CDATA + <p>You can add a string to a number, but this stringifies the number: + <math> + <ms> + <mo>- + <mn>7 + <mo>= + <ms> +  +  +  + diff --git a/tests/syntax-tests/source/HTML/test.html b/tests/syntax-tests/source/HTML/test.html new file mode 100644 index 00000000..ccddb797 --- /dev/null +++ b/tests/syntax-tests/source/HTML/test.html @@ -0,0 +1,115 @@ + + + + + Bat Syntax Test + + + + +
+

Here find some simple tags

+
+

+ Lorem ipsum dolor sit amet consectetur adipisicing + elit. A quo, autem quaerat explicabo impedit mollitia amet molestiae + nulla cum architecto ducimus itaque sit blanditiis quasi animi optio ab + facilis nihil? +

+

+ Here are some escaped characters: & (ampersand), à (a with grave), № (numero sign). +

+
+
+

This is a form that demonstrates loose attribute formatting

+
+ +
+
+
+

A table with normal closing tags

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Pet Features +
FeatureCatDog
Tail✔✔
Eyes✔✔
Ears✔✔
Barking✔
Litter Box✔
+
+
+

A table without closing tags

+ + + + + +
Pet Features +
Feature Cat Dog +
Tail ✔ ✔ +
Eyes ✔ ✔ +
Ears ✔ ✔ +
Barking ✔ +
Litter Box ✔ +
+
+
+

A math section with CDATA

+

You can add a string to a number, but this stringifies the number:

+ + a / b + - + 7 + = + a / b - 7 + +
+ + -- cgit v1.2.3