├── .github └── workflows │ ├── api_test.yml │ ├── build_and_test.yml │ ├── publish_linux+windows.yml │ └── publish_macos.yml ├── .gitignore ├── CMakeLists.txt ├── README.md ├── README ├── API_AND_NAMESPACE.md ├── ATTRIBUTES.md ├── BRANCHES.md ├── BUILD.md ├── CHANGELOG.md ├── CODESTYLE.md ├── CONTRIBUTING.md ├── LICENSE.md ├── LICENSE.txt ├── LOCALIZE.md ├── MESSAGES.md ├── OPTIONS.md ├── README.html ├── RELEASE.md ├── TAGS.md ├── TESTING.md └── VERSION.md ├── build ├── cmake │ ├── .gitignore │ ├── build-api.sh │ ├── build-bins.bat │ ├── build-me.bat │ ├── build-me.sh │ ├── cmake-clean.sh │ ├── cmake-clean.txt │ ├── gen-html.sh │ ├── pub-bins.bat │ ├── pub-bins.sh │ ├── rentidy.sh │ └── updexe.bat ├── macos │ ├── Installer-Introduction.rtf │ └── Installer-License.rtf └── win64 │ ├── .gitignore │ ├── build-bins.bat │ ├── build-me-v14.bat │ ├── build-me.bat │ ├── cmake-clean.txt │ ├── gen-html.bat │ ├── pub-bins.bat │ └── updexe.bat ├── console ├── Info.plist.in ├── tab2space.c ├── test71.cxx └── tidy.c ├── experimental ├── TidyNodeIter.c ├── TidyNodeIter.h ├── httpio.c └── httpio.h ├── include ├── buffio.h ├── module.modulemap ├── platform.h ├── tidy.h ├── tidybuffio.h ├── tidyenum.h └── tidyplatform.h ├── localize ├── .gitignore ├── Gemfile ├── README.md ├── language_ll_cc.h.erb ├── poconvert.rb └── translations │ ├── language_de.po │ ├── language_en_gb.po │ ├── language_es.po │ ├── language_es_mx.po │ ├── language_fr.po │ ├── language_pt_br.po │ ├── language_zh_cn.po │ └── tidy.pot ├── man ├── .gitignore ├── README.md └── tidy1.xsl.in ├── regression_testing ├── Gemfile ├── Gemfile.lock ├── README.md ├── cases │ ├── access-cases │ │ ├── README.txt │ │ ├── case-10_1_1_1.conf │ │ ├── case-10_1_1_1@1.html │ │ ├── case-10_1_1_2.conf │ │ ├── case-10_1_1_2@0.html │ │ ├── case-11_2_1_1.conf │ │ ├── case-11_2_1_10.conf │ │ ├── case-11_2_1_10@0.html │ │ ├── case-11_2_1_1@0.html │ │ ├── case-11_2_1_2.conf │ │ ├── case-11_2_1_2@0.html │ │ ├── case-11_2_1_3.conf │ │ ├── case-11_2_1_3@0.html │ │ ├── case-11_2_1_4.conf │ │ ├── case-11_2_1_4@1.html │ │ ├── case-11_2_1_5.conf │ │ ├── case-11_2_1_5@0.html │ │ ├── case-11_2_1_6.conf │ │ ├── case-11_2_1_6@0.html │ │ ├── case-11_2_1_7.conf │ │ ├── case-11_2_1_7@1.html │ │ ├── case-11_2_1_8.conf │ │ ├── case-11_2_1_8@0.html │ │ ├── case-11_2_1_9.conf │ │ ├── case-11_2_1_9@0.html │ │ ├── case-12_1_1_1.conf │ │ ├── case-12_1_1_1@1.html │ │ ├── case-12_1_1_2.conf │ │ ├── case-12_1_1_2@1.html │ │ ├── case-12_1_1_3.conf │ │ ├── case-12_1_1_3@1.html │ │ ├── case-12_4_1_1.conf │ │ ├── case-12_4_1_1@0.html │ │ ├── case-12_4_1_2.conf │ │ ├── case-12_4_1_2@0.html │ │ ├── case-12_4_1_3.conf │ │ ├── case-12_4_1_3@0.html │ │ ├── case-13_10_1_1.conf │ │ ├── case-13_10_1_1@0.html │ │ ├── case-13_1_1_1.conf │ │ ├── case-13_1_1_1@0.html │ │ ├── case-13_1_1_2.conf │ │ ├── case-13_1_1_2@0.html │ │ ├── case-13_1_1_3.conf │ │ ├── case-13_1_1_3@0.html │ │ ├── case-13_1_1_4.conf │ │ ├── case-13_1_1_4@0.html │ │ ├── case-13_2_1_1.conf │ │ ├── case-13_2_1_1@0.html │ │ ├── case-13_2_1_3.conf │ │ ├── case-13_2_1_3@0.html │ │ ├── case-1_1_10_1.conf │ │ ├── case-1_1_10_1@0.html │ │ ├── case-1_1_12_1.conf │ │ ├── case-1_1_12_1@0.html │ │ ├── case-1_1_1_1.conf │ │ ├── case-1_1_1_10.conf │ │ ├── case-1_1_1_10@0.html │ │ ├── case-1_1_1_1@0.html │ │ ├── case-1_1_1_2.conf │ │ ├── case-1_1_1_2@0.html │ │ ├── case-1_1_1_3.conf │ │ ├── case-1_1_1_3@0.html │ │ ├── case-1_1_1_4.conf │ │ ├── case-1_1_1_4@0.html │ │ ├── case-1_1_2_1.conf │ │ ├── case-1_1_2_1@0.html │ │ ├── case-1_1_2_2.conf │ │ ├── case-1_1_2_2@0.html │ │ ├── case-1_1_2_3.conf │ │ ├── case-1_1_2_3@0.html │ │ ├── case-1_1_3_1.conf │ │ ├── case-1_1_3_1@0.html │ │ ├── case-1_1_4_1.conf │ │ ├── case-1_1_4_1@0.html │ │ ├── case-1_1_5_1.conf │ │ ├── case-1_1_5_1@0.html │ │ ├── case-1_1_6_1.conf │ │ ├── case-1_1_6_1@0.html │ │ ├── case-1_1_6_2.conf │ │ ├── case-1_1_6_2@0.html │ │ ├── case-1_1_6_3.conf │ │ ├── case-1_1_6_3@0.html │ │ ├── case-1_1_6_4.conf │ │ ├── case-1_1_6_4@0.html │ │ ├── case-1_1_6_5.conf │ │ ├── case-1_1_6_5@0.html │ │ ├── case-1_1_6_6.conf │ │ ├── case-1_1_6_6@0.html │ │ ├── case-1_1_8_1.conf │ │ ├── case-1_1_8_1@0.html │ │ ├── case-1_1_9_1.conf │ │ ├── case-1_1_9_1@0.html │ │ ├── case-1_2_1_1.conf │ │ ├── case-1_2_1_1@0.html │ │ ├── case-1_4_1_1.conf │ │ ├── case-1_4_1_1@0.html │ │ ├── case-1_5_1_1.conf │ │ ├── case-1_5_1_1@0.html │ │ ├── case-2_1_1_1.conf │ │ ├── case-2_1_1_1@0.html │ │ ├── case-2_1_1_2.conf │ │ ├── case-2_1_1_2@0.html │ │ ├── case-2_1_1_3.conf │ │ ├── case-2_1_1_3@0.html │ │ ├── case-2_1_1_4.conf │ │ ├── case-2_1_1_4@1.html │ │ ├── case-2_1_1_5.conf │ │ ├── case-2_1_1_5@1.html │ │ ├── case-2_2_1_1.conf │ │ ├── case-2_2_1_1@0.html │ │ ├── case-2_2_1_2.conf │ │ ├── case-2_2_1_2@0.html │ │ ├── case-2_2_1_3.conf │ │ ├── case-2_2_1_3@0.html │ │ ├── case-2_2_1_4.conf │ │ ├── case-2_2_1_4@0.html │ │ ├── case-3_2_1_1.conf │ │ ├── case-3_2_1_1@1.html │ │ ├── case-3_3_1_1.conf │ │ ├── case-3_3_1_1@0.html │ │ ├── case-3_5_1_1.conf │ │ ├── case-3_5_1_1@0.html │ │ ├── case-3_5_2_1.conf │ │ ├── case-3_5_2_1@0.html │ │ ├── case-3_5_2_2.conf │ │ ├── case-3_5_2_2@0.html │ │ ├── case-3_5_2_3.conf │ │ ├── case-3_5_2_3@0.html │ │ ├── case-3_6_1_1.conf │ │ ├── case-3_6_1_1@1.html │ │ ├── case-3_6_1_2.conf │ │ ├── case-3_6_1_2@1.html │ │ ├── case-3_6_1_4.conf │ │ ├── case-3_6_1_4@1.html │ │ ├── case-4_1_1_1.conf │ │ ├── case-4_1_1_1@0.html │ │ ├── case-4_3_1_1.conf │ │ ├── case-4_3_1_1@0.html │ │ ├── case-4_3_1_2.conf │ │ ├── case-4_3_1_2@0.html │ │ ├── case-5_1_2_1.conf │ │ ├── case-5_1_2_1@0.html │ │ ├── case-5_1_2_2.conf │ │ ├── case-5_1_2_2@0.html │ │ ├── case-5_1_2_3.conf │ │ ├── case-5_1_2_3@0.html │ │ ├── case-5_2_1_1.conf │ │ ├── case-5_2_1_1@0.html │ │ ├── case-5_2_1_2.conf │ │ ├── case-5_2_1_2@0.html │ │ ├── case-5_3_1_1.conf │ │ ├── case-5_3_1_1@0.html │ │ ├── case-5_4_1_1.conf │ │ ├── case-5_4_1_1@0.html │ │ ├── case-5_5_1_1.conf │ │ ├── case-5_5_1_1@0.html │ │ ├── case-5_5_1_2.conf │ │ ├── case-5_5_1_2@0.html │ │ ├── case-5_5_1_3.conf │ │ ├── case-5_5_1_3@0.html │ │ ├── case-5_5_1_6.conf │ │ ├── case-5_5_1_6@0.html │ │ ├── case-5_5_2_1.conf │ │ ├── case-5_5_2_1@0.html │ │ ├── case-5_6_1_1.conf │ │ ├── case-5_6_1_1@0.html │ │ ├── case-5_6_1_2.conf │ │ ├── case-5_6_1_2@0.html │ │ ├── case-5_6_1_3.conf │ │ ├── case-5_6_1_3@0.html │ │ ├── case-6_1_1_1.conf │ │ ├── case-6_1_1_1@0.html │ │ ├── case-6_1_1_2.conf │ │ ├── case-6_1_1_2@1.html │ │ ├── case-6_1_1_3.conf │ │ ├── case-6_1_1_3@0.html │ │ ├── case-6_2_1_1.conf │ │ ├── case-6_2_1_1@0.html │ │ ├── case-6_2_2_1.conf │ │ ├── case-6_2_2_1@0.html │ │ ├── case-6_2_2_2.conf │ │ ├── case-6_2_2_2@0.html │ │ ├── case-6_2_2_3.conf │ │ ├── case-6_2_2_3@0.html │ │ ├── case-6_3_1_1.conf │ │ ├── case-6_3_1_1@0.html │ │ ├── case-6_3_1_2.conf │ │ ├── case-6_3_1_2@0.html │ │ ├── case-6_3_1_3.conf │ │ ├── case-6_3_1_3@1.html │ │ ├── case-6_3_1_4.conf │ │ ├── case-6_3_1_4@0.html │ │ ├── case-6_5_1_1.conf │ │ ├── case-6_5_1_1@0.html │ │ ├── case-6_5_1_2.conf │ │ ├── case-6_5_1_2@1.html │ │ ├── case-6_5_1_3.conf │ │ ├── case-6_5_1_3@0.html │ │ ├── case-6_5_1_4.conf │ │ ├── case-6_5_1_4@1.html │ │ ├── case-7_1_1_1.conf │ │ ├── case-7_1_1_1@0.html │ │ ├── case-7_1_1_2.conf │ │ ├── case-7_1_1_2@0.html │ │ ├── case-7_1_1_3.conf │ │ ├── case-7_1_1_3@1.html │ │ ├── case-7_1_1_4.conf │ │ ├── case-7_1_1_4@0.html │ │ ├── case-7_1_1_5.conf │ │ ├── case-7_1_1_5@0.html │ │ ├── case-7_2_1_1.conf │ │ ├── case-7_2_1_1@1.html │ │ ├── case-7_4_1_1.conf │ │ ├── case-7_4_1_1@0.html │ │ ├── case-7_5_1_1.conf │ │ ├── case-7_5_1_1@0.html │ │ ├── case-8_1_1_1.conf │ │ ├── case-8_1_1_1@0.html │ │ ├── case-8_1_1_2.conf │ │ ├── case-8_1_1_2@0.html │ │ ├── case-8_1_1_3.conf │ │ ├── case-8_1_1_3@0.html │ │ ├── case-8_1_1_4.conf │ │ ├── case-8_1_1_4@1.html │ │ ├── case-9_1_1_1.conf │ │ ├── case-9_1_1_1@0.html │ │ ├── case-9_3_1_1.conf │ │ ├── case-9_3_1_1@0.html │ │ ├── case-9_3_1_2.conf │ │ ├── case-9_3_1_2@0.html │ │ ├── case-9_3_1_3.conf │ │ ├── case-9_3_1_3@0.html │ │ ├── case-9_3_1_4.conf │ │ ├── case-9_3_1_4@0.html │ │ ├── case-9_3_1_5.conf │ │ ├── case-9_3_1_5@0.html │ │ ├── case-9_3_1_6.conf │ │ ├── case-9_3_1_6@0.html │ │ └── config_default.conf │ ├── access-expects │ │ ├── case-10_1_1_1.html │ │ ├── case-10_1_1_1.txt │ │ ├── case-10_1_1_2.html │ │ ├── case-10_1_1_2.txt │ │ ├── case-11_2_1_1.html │ │ ├── case-11_2_1_1.txt │ │ ├── case-11_2_1_10.html │ │ ├── case-11_2_1_10.txt │ │ ├── case-11_2_1_2.html │ │ ├── case-11_2_1_2.txt │ │ ├── case-11_2_1_3.html │ │ ├── case-11_2_1_3.txt │ │ ├── case-11_2_1_4.html │ │ ├── case-11_2_1_4.txt │ │ ├── case-11_2_1_5.html │ │ ├── case-11_2_1_5.txt │ │ ├── case-11_2_1_6.html │ │ ├── case-11_2_1_6.txt │ │ ├── case-11_2_1_7.html │ │ ├── case-11_2_1_7.txt │ │ ├── case-11_2_1_8.html │ │ ├── case-11_2_1_8.txt │ │ ├── case-11_2_1_9.html │ │ ├── case-11_2_1_9.txt │ │ ├── case-12_1_1_1.html │ │ ├── case-12_1_1_1.txt │ │ ├── case-12_1_1_2.html │ │ ├── case-12_1_1_2.txt │ │ ├── case-12_1_1_3.html │ │ ├── case-12_1_1_3.txt │ │ ├── case-12_4_1_1.html │ │ ├── case-12_4_1_1.txt │ │ ├── case-12_4_1_2.html │ │ ├── case-12_4_1_2.txt │ │ ├── case-12_4_1_3.html │ │ ├── case-12_4_1_3.txt │ │ ├── case-13_10_1_1.html │ │ ├── case-13_10_1_1.txt │ │ ├── case-13_1_1_1.html │ │ ├── case-13_1_1_1.txt │ │ ├── case-13_1_1_2.html │ │ ├── case-13_1_1_2.txt │ │ ├── case-13_1_1_3.html │ │ ├── case-13_1_1_3.txt │ │ ├── case-13_1_1_4.html │ │ ├── case-13_1_1_4.txt │ │ ├── case-13_2_1_1.html │ │ ├── case-13_2_1_1.txt │ │ ├── case-13_2_1_3.html │ │ ├── case-13_2_1_3.txt │ │ ├── case-1_1_10_1.html │ │ ├── case-1_1_10_1.txt │ │ ├── case-1_1_12_1.html │ │ ├── case-1_1_12_1.txt │ │ ├── case-1_1_1_1.html │ │ ├── case-1_1_1_1.txt │ │ ├── case-1_1_1_10.html │ │ ├── case-1_1_1_10.txt │ │ ├── case-1_1_1_2.html │ │ ├── case-1_1_1_2.txt │ │ ├── case-1_1_1_3.html │ │ ├── case-1_1_1_3.txt │ │ ├── case-1_1_1_4.html │ │ ├── case-1_1_1_4.txt │ │ ├── case-1_1_2_1.html │ │ ├── case-1_1_2_1.txt │ │ ├── case-1_1_2_2.html │ │ ├── case-1_1_2_2.txt │ │ ├── case-1_1_2_3.html │ │ ├── case-1_1_2_3.txt │ │ ├── case-1_1_3_1.html │ │ ├── case-1_1_3_1.txt │ │ ├── case-1_1_4_1.html │ │ ├── case-1_1_4_1.txt │ │ ├── case-1_1_5_1.html │ │ ├── case-1_1_5_1.txt │ │ ├── case-1_1_6_1.html │ │ ├── case-1_1_6_1.txt │ │ ├── case-1_1_6_2.html │ │ ├── case-1_1_6_2.txt │ │ ├── case-1_1_6_3.html │ │ ├── case-1_1_6_3.txt │ │ ├── case-1_1_6_4.html │ │ ├── case-1_1_6_4.txt │ │ ├── case-1_1_6_5.html │ │ ├── case-1_1_6_5.txt │ │ ├── case-1_1_6_6.html │ │ ├── case-1_1_6_6.txt │ │ ├── case-1_1_8_1.html │ │ ├── case-1_1_8_1.txt │ │ ├── case-1_1_9_1.html │ │ ├── case-1_1_9_1.txt │ │ ├── case-1_2_1_1.html │ │ ├── case-1_2_1_1.txt │ │ ├── case-1_4_1_1.html │ │ ├── case-1_4_1_1.txt │ │ ├── case-1_5_1_1.html │ │ ├── case-1_5_1_1.txt │ │ ├── case-2_1_1_1.html │ │ ├── case-2_1_1_1.txt │ │ ├── case-2_1_1_2.html │ │ ├── case-2_1_1_2.txt │ │ ├── case-2_1_1_3.html │ │ ├── case-2_1_1_3.txt │ │ ├── case-2_1_1_4.html │ │ ├── case-2_1_1_4.txt │ │ ├── case-2_1_1_5.html │ │ ├── case-2_1_1_5.txt │ │ ├── case-2_2_1_1.html │ │ ├── case-2_2_1_1.txt │ │ ├── case-2_2_1_2.html │ │ ├── case-2_2_1_2.txt │ │ ├── case-2_2_1_3.html │ │ ├── case-2_2_1_3.txt │ │ ├── case-2_2_1_4.html │ │ ├── case-2_2_1_4.txt │ │ ├── case-3_2_1_1.html │ │ ├── case-3_2_1_1.txt │ │ ├── case-3_3_1_1.html │ │ ├── case-3_3_1_1.txt │ │ ├── case-3_5_1_1.html │ │ ├── case-3_5_1_1.txt │ │ ├── case-3_5_2_1.html │ │ ├── case-3_5_2_1.txt │ │ ├── case-3_5_2_2.html │ │ ├── case-3_5_2_2.txt │ │ ├── case-3_5_2_3.html │ │ ├── case-3_5_2_3.txt │ │ ├── case-3_6_1_1.html │ │ ├── case-3_6_1_1.txt │ │ ├── case-3_6_1_2.html │ │ ├── case-3_6_1_2.txt │ │ ├── case-3_6_1_4.html │ │ ├── case-3_6_1_4.txt │ │ ├── case-4_1_1_1.html │ │ ├── case-4_1_1_1.txt │ │ ├── case-4_3_1_1.html │ │ ├── case-4_3_1_1.txt │ │ ├── case-4_3_1_2.html │ │ ├── case-4_3_1_2.txt │ │ ├── case-5_1_2_1.html │ │ ├── case-5_1_2_1.txt │ │ ├── case-5_1_2_2.html │ │ ├── case-5_1_2_2.txt │ │ ├── case-5_1_2_3.html │ │ ├── case-5_1_2_3.txt │ │ ├── case-5_2_1_1.html │ │ ├── case-5_2_1_1.txt │ │ ├── case-5_2_1_2.html │ │ ├── case-5_2_1_2.txt │ │ ├── case-5_3_1_1.html │ │ ├── case-5_3_1_1.txt │ │ ├── case-5_4_1_1.html │ │ ├── case-5_4_1_1.txt │ │ ├── case-5_5_1_1.html │ │ ├── case-5_5_1_1.txt │ │ ├── case-5_5_1_2.html │ │ ├── case-5_5_1_2.txt │ │ ├── case-5_5_1_3.html │ │ ├── case-5_5_1_3.txt │ │ ├── case-5_5_1_6.html │ │ ├── case-5_5_1_6.txt │ │ ├── case-5_5_2_1.html │ │ ├── case-5_5_2_1.txt │ │ ├── case-5_6_1_1.html │ │ ├── case-5_6_1_1.txt │ │ ├── case-5_6_1_2.html │ │ ├── case-5_6_1_2.txt │ │ ├── case-5_6_1_3.html │ │ ├── case-5_6_1_3.txt │ │ ├── case-6_1_1_1.html │ │ ├── case-6_1_1_1.txt │ │ ├── case-6_1_1_2.html │ │ ├── case-6_1_1_2.txt │ │ ├── case-6_1_1_3.html │ │ ├── case-6_1_1_3.txt │ │ ├── case-6_2_1_1.html │ │ ├── case-6_2_1_1.txt │ │ ├── case-6_2_2_1.html │ │ ├── case-6_2_2_1.txt │ │ ├── case-6_2_2_2.html │ │ ├── case-6_2_2_2.txt │ │ ├── case-6_2_2_3.html │ │ ├── case-6_2_2_3.txt │ │ ├── case-6_3_1_1.html │ │ ├── case-6_3_1_1.txt │ │ ├── case-6_3_1_2.html │ │ ├── case-6_3_1_2.txt │ │ ├── case-6_3_1_3.html │ │ ├── case-6_3_1_3.txt │ │ ├── case-6_3_1_4.html │ │ ├── case-6_3_1_4.txt │ │ ├── case-6_5_1_1.html │ │ ├── case-6_5_1_1.txt │ │ ├── case-6_5_1_2.html │ │ ├── case-6_5_1_2.txt │ │ ├── case-6_5_1_3.html │ │ ├── case-6_5_1_3.txt │ │ ├── case-6_5_1_4.html │ │ ├── case-6_5_1_4.txt │ │ ├── case-7_1_1_1.html │ │ ├── case-7_1_1_1.txt │ │ ├── case-7_1_1_2.html │ │ ├── case-7_1_1_2.txt │ │ ├── case-7_1_1_3.html │ │ ├── case-7_1_1_3.txt │ │ ├── case-7_1_1_4.html │ │ ├── case-7_1_1_4.txt │ │ ├── case-7_1_1_5.html │ │ ├── case-7_1_1_5.txt │ │ ├── case-7_2_1_1.html │ │ ├── case-7_2_1_1.txt │ │ ├── case-7_4_1_1.html │ │ ├── case-7_4_1_1.txt │ │ ├── case-7_5_1_1.html │ │ ├── case-7_5_1_1.txt │ │ ├── case-8_1_1_1.html │ │ ├── case-8_1_1_1.txt │ │ ├── case-8_1_1_2.html │ │ ├── case-8_1_1_2.txt │ │ ├── case-8_1_1_3.html │ │ ├── case-8_1_1_3.txt │ │ ├── case-8_1_1_4.html │ │ ├── case-8_1_1_4.txt │ │ ├── case-9_1_1_1.html │ │ ├── case-9_1_1_1.txt │ │ ├── case-9_3_1_1.html │ │ ├── case-9_3_1_1.txt │ │ ├── case-9_3_1_2.html │ │ ├── case-9_3_1_2.txt │ │ ├── case-9_3_1_3.html │ │ ├── case-9_3_1_3.txt │ │ ├── case-9_3_1_4.html │ │ ├── case-9_3_1_4.txt │ │ ├── case-9_3_1_5.html │ │ ├── case-9_3_1_5.txt │ │ ├── case-9_3_1_6.html │ │ └── case-9_3_1_6.txt │ ├── dev-cases │ │ ├── README.txt │ │ ├── case-001.conf │ │ ├── case-001@0.html │ │ ├── case-002.conf │ │ ├── case-002@1.html │ │ ├── case-003.conf │ │ ├── case-003@1.html │ │ ├── case-004.conf │ │ ├── case-004@1.html │ │ ├── case-005.conf │ │ ├── case-005@0.xml │ │ └── config_default.conf │ ├── dev-expects │ │ ├── .gitkeep │ │ ├── case-001.html │ │ ├── case-001.txt │ │ ├── case-002.html │ │ ├── case-002.txt │ │ ├── case-003.html │ │ ├── case-003.txt │ │ ├── case-004.html │ │ ├── case-004.txt │ │ ├── case-005.txt │ │ └── case-005.xml │ ├── github-cases │ │ ├── README.txt │ │ ├── case-119a.conf │ │ ├── case-119a@1.html │ │ ├── case-119b.conf │ │ ├── case-119b@2.html │ │ ├── case-119c.conf │ │ ├── case-119c@1.html │ │ ├── case-119d.conf │ │ ├── case-119d@2.html │ │ ├── case-119e.conf │ │ ├── case-119e@1.html │ │ ├── case-119f.conf │ │ ├── case-119f@0.html │ │ ├── case-352.conf │ │ ├── case-352@1.html │ │ ├── case-365.conf │ │ ├── case-365@0.html │ │ ├── case-378a.conf │ │ ├── case-378a@1.html │ │ ├── case-378b.conf │ │ ├── case-378b@0.html │ │ ├── case-412@1.html │ │ ├── case-434.conf │ │ ├── case-434@1.html │ │ ├── case-464a.conf │ │ ├── case-464a@1.html │ │ ├── case-464b.conf │ │ ├── case-464b@1.html │ │ ├── case-476a.conf │ │ ├── case-476a@1.html │ │ ├── case-476b.conf │ │ ├── case-476b@1.html │ │ ├── case-483.conf │ │ ├── case-483@1.html │ │ ├── case-523.conf │ │ ├── case-523@1.html │ │ ├── case-525.conf │ │ ├── case-525@1.html │ │ ├── case-611a.conf │ │ ├── case-611a@1.html │ │ ├── case-611b.conf │ │ ├── case-611b@0.html │ │ ├── case-611c.conf │ │ ├── case-611c@1.html │ │ ├── case-629.conf │ │ ├── case-629@1.html │ │ ├── case-692@1.html │ │ ├── case-729a.conf │ │ ├── case-729a@2.html │ │ ├── case-729b.conf │ │ ├── case-729b@1.html │ │ ├── case-836.conf │ │ ├── case-836@0.html │ │ ├── case-839@1.html │ │ ├── case-938.conf │ │ ├── case-938@0.html │ │ ├── case-946.conf │ │ ├── case-946@1.html │ │ └── config_default.conf │ ├── github-expects │ │ ├── case-119a.html │ │ ├── case-119a.txt │ │ ├── case-119b.html │ │ ├── case-119b.txt │ │ ├── case-119c.html │ │ ├── case-119c.txt │ │ ├── case-119d.html │ │ ├── case-119d.txt │ │ ├── case-119e.html │ │ ├── case-119e.txt │ │ ├── case-119f.html │ │ ├── case-119f.txt │ │ ├── case-352.html │ │ ├── case-352.txt │ │ ├── case-365.html │ │ ├── case-365.txt │ │ ├── case-378a.html │ │ ├── case-378a.txt │ │ ├── case-378b.html │ │ ├── case-378b.txt │ │ ├── case-412.html │ │ ├── case-412.txt │ │ ├── case-434.html │ │ ├── case-434.txt │ │ ├── case-464a.html │ │ ├── case-464a.txt │ │ ├── case-464b.html │ │ ├── case-464b.txt │ │ ├── case-476a.html │ │ ├── case-476a.txt │ │ ├── case-476b.html │ │ ├── case-476b.txt │ │ ├── case-483.html │ │ ├── case-483.txt │ │ ├── case-523.html │ │ ├── case-523.txt │ │ ├── case-525.html │ │ ├── case-525.txt │ │ ├── case-611a.html │ │ ├── case-611a.txt │ │ ├── case-611b.html │ │ ├── case-611b.txt │ │ ├── case-611c.html │ │ ├── case-611c.txt │ │ ├── case-629.html │ │ ├── case-629.txt │ │ ├── case-692.html │ │ ├── case-692.txt │ │ ├── case-729a.txt │ │ ├── case-729b.html │ │ ├── case-729b.txt │ │ ├── case-836.html │ │ ├── case-836.txt │ │ ├── case-839.html │ │ ├── case-839.txt │ │ ├── case-938.html │ │ ├── case-938.txt │ │ ├── case-946.html │ │ └── case-946.txt │ ├── legacy-cases │ │ ├── README.txt │ │ ├── case-1002509@2.html │ │ ├── case-1003361@0.html │ │ ├── case-1004051@0.html │ │ ├── case-1004512.conf │ │ ├── case-1004512@0.html │ │ ├── case-1014993@1.html │ │ ├── case-1015959@1.html │ │ ├── case-1027888@1.html │ │ ├── case-1050673@1.html │ │ ├── case-1052758@0.html │ │ ├── case-1053626@1.html │ │ ├── case-1055304@1.html │ │ ├── case-1055398.conf │ │ ├── case-1055398@1.html │ │ ├── case-1056023@1.html │ │ ├── case-1056910@0.html │ │ ├── case-1062345@1.html │ │ ├── case-1062511@1.html │ │ ├── case-1062661@1.html │ │ ├── case-1063256@2.html │ │ ├── case-1067112.conf │ │ ├── case-1067112@1.html │ │ ├── case-1068087.conf │ │ ├── case-1068087@1.html │ │ ├── case-1069549@0.html │ │ ├── case-1069553@0.html │ │ ├── case-1072528@1.html │ │ ├── case-1078345.conf │ │ ├── case-1078345@0.html │ │ ├── case-1079820@1.html │ │ ├── case-1086083@1.html │ │ ├── case-1090318@1.html │ │ ├── case-1098012@1.html │ │ ├── case-1107622@1.html │ │ ├── case-1115094@1.html │ │ ├── case-1117013@0.html │ │ ├── case-1145571@1.html │ │ ├── case-1145572@0.html │ │ ├── case-1168193@1.html │ │ ├── case-1183751@0.html │ │ ├── case-1198501@0.html │ │ ├── case-1207443.conf │ │ ├── case-1207443@0.html │ │ ├── case-1210752.conf │ │ ├── case-1210752@1.html │ │ ├── case-1231279@1.html │ │ ├── case-1235296@0.html │ │ ├── case-1241723.conf │ │ ├── case-1241723@0.html │ │ ├── case-1263391@1.html │ │ ├── case-1266647.conf │ │ ├── case-1266647@1.html │ │ ├── case-1282835@0.html │ │ ├── case-1286029@0.html │ │ ├── case-1286278.conf │ │ ├── case-1286278@0.html │ │ ├── case-1316258@1.html │ │ ├── case-1316307a@1.html │ │ ├── case-1316307b@1.html │ │ ├── case-1326520@1.html │ │ ├── case-1331849@1.html │ │ ├── case-1333579@1.html │ │ ├── case-1359292.conf │ │ ├── case-1359292@1.html │ │ ├── case-1398397@1.html │ │ ├── case-1407266.conf │ │ ├── case-1407266@1.html │ │ ├── case-1408034.conf │ │ ├── case-1408034@1.html │ │ ├── case-1410061a.conf │ │ ├── case-1410061a@1.html │ │ ├── case-1410061b.conf │ │ ├── case-1410061b@1.html │ │ ├── case-1410061c.conf │ │ ├── case-1410061c@1.html │ │ ├── case-1415137@1.html │ │ ├── case-1423252.conf │ │ ├── case-1423252@1.html │ │ ├── case-1426419@1.html │ │ ├── case-1436578@0.html │ │ ├── case-1445570@1.html │ │ ├── case-1452744.conf │ │ ├── case-1452744@0.html │ │ ├── case-1503897@1.html │ │ ├── case-1586158@0.html │ │ ├── case-1590220a.conf │ │ ├── case-1590220a@1.html │ │ ├── case-1590220b.conf │ │ ├── case-1590220b@1.html │ │ ├── case-1603538a@1.html │ │ ├── case-1603538b@1.html │ │ ├── case-1610888a@0.html │ │ ├── case-1610888b@0.html │ │ ├── case-1632218@1.html │ │ ├── case-1632470@1.html │ │ ├── case-1638062@1.html │ │ ├── case-1642186b.conf │ │ ├── case-1642186b@0.html │ │ ├── case-1674502@1.html │ │ ├── case-1707836@1.html │ │ ├── case-1715153@1.html │ │ ├── case-1720953.conf │ │ ├── case-1720953@0.html │ │ ├── case-1773932@1.html │ │ ├── case-1986717a.conf │ │ ├── case-1986717a@0.html │ │ ├── case-1986717b.conf │ │ ├── case-1986717b@0.html │ │ ├── case-1986717c.conf │ │ ├── case-1986717c@0.html │ │ ├── case-2046048.conf │ │ ├── case-2046048@2.html │ │ ├── case-2085175.conf │ │ ├── case-2085175@0.html │ │ ├── case-2359929@1.html │ │ ├── case-2705873a.conf │ │ ├── case-2705873a@0.html │ │ ├── case-2705873b.conf │ │ ├── case-2705873b@0.html │ │ ├── case-2709860.conf │ │ ├── case-2709860@0.html │ │ ├── case-426885@1.html │ │ ├── case-427633@0.html │ │ ├── case-427662@1.html │ │ ├── case-427664@1.html │ │ ├── case-427664b.conf │ │ ├── case-427671@1.html │ │ ├── case-427672@1.html │ │ ├── case-427675@1.html │ │ ├── case-427676@2.html │ │ ├── case-427677@1.html │ │ ├── case-427810@1.html │ │ ├── case-427811@1.html │ │ ├── case-427813@1.html │ │ ├── case-427816@1.html │ │ ├── case-427818@1.html │ │ ├── case-427819@1.html │ │ ├── case-427820@1.html │ │ ├── case-427821.conf │ │ ├── case-427821@0.html │ │ ├── case-427822@1.html │ │ ├── case-427823@1.html │ │ ├── case-427825.conf │ │ ├── case-427825@1.html │ │ ├── case-427826.conf │ │ ├── case-427826@0.html │ │ ├── case-427827@1.html │ │ ├── case-427830@1.html │ │ ├── case-427833@0.html │ │ ├── case-427834@0.html │ │ ├── case-427835.conf │ │ ├── case-427835@1.html │ │ ├── case-427836@1.html │ │ ├── case-427837.conf │ │ ├── case-427837@0.xml │ │ ├── case-427838@1.html │ │ ├── case-427839.conf │ │ ├── case-427839@0.html │ │ ├── case-427840@1.html │ │ ├── case-427841@1.html │ │ ├── case-427845.conf │ │ ├── case-427845@0.html │ │ ├── case-427846@1.html │ │ ├── case-431716.conf │ │ ├── case-431716@0.html │ │ ├── case-431721.conf │ │ ├── case-431721@1.html │ │ ├── case-431731@1.html │ │ ├── case-431736.conf │ │ ├── case-431736@1.html │ │ ├── case-431739@1.html │ │ ├── case-431874@1.html │ │ ├── case-431889.conf │ │ ├── case-431889@1.html │ │ ├── case-431898@1.html │ │ ├── case-431964@1.html │ │ ├── case-432677.conf │ │ ├── case-432677@0.html │ │ ├── case-433012.conf │ │ ├── case-433012@1.html │ │ ├── case-433021@1.html │ │ ├── case-433040@0.html │ │ ├── case-433359@0.html │ │ ├── case-433360@1.html │ │ ├── case-433604.conf │ │ ├── case-433604@0.xml │ │ ├── case-433607.conf │ │ ├── case-433607@0.xml │ │ ├── case-433656@0.html │ │ ├── case-433666@1.html │ │ ├── case-433672@1.html │ │ ├── case-434047@0.html │ │ ├── case-434100.conf │ │ ├── case-434100@2.html │ │ ├── case-434940.conf │ │ ├── case-434940@0.html │ │ ├── case-435903@1.html │ │ ├── case-435917@1.html │ │ ├── case-435919@1.html │ │ ├── case-435920@1.html │ │ ├── case-435922@1.html │ │ ├── case-435923@0.html │ │ ├── case-437468@0.html │ │ ├── case-438650@1.html │ │ ├── case-438658@1.html │ │ ├── case-438954.conf │ │ ├── case-438954@0.html │ │ ├── case-438956@1.html │ │ ├── case-441508@1.html │ │ ├── case-441568@0.html │ │ ├── case-443362@1.html │ │ ├── case-443576.conf │ │ ├── case-443576@1.html │ │ ├── case-443678@1.html │ │ ├── case-445074@1.html │ │ ├── case-445394@1.html │ │ ├── case-445557.conf │ │ ├── case-445557@1.html │ │ ├── case-449348.conf │ │ ├── case-449348@0.html │ │ ├── case-470663.conf │ │ ├── case-470663@1.html │ │ ├── case-473490.conf │ │ ├── case-473490@1.html │ │ ├── case-480701.conf │ │ ├── case-480701@0.xml │ │ ├── case-487204@1.html │ │ ├── case-487283@1.html │ │ ├── case-501669@0.html │ │ ├── case-503436.conf │ │ ├── case-503436@1.xml │ │ ├── case-504206@1.html │ │ ├── case-505770@1.html │ │ ├── case-511243.conf │ │ ├── case-511243@0.xhtml │ │ ├── case-511679@1.html │ │ ├── case-533233.conf │ │ ├── case-533233@0.html │ │ ├── case-540571.conf │ │ ├── case-540571@1.html │ │ ├── case-543262.conf │ │ ├── case-543262@0.html │ │ ├── case-545772.conf │ │ ├── case-545772@0.html │ │ ├── case-553468@0.xhtml │ │ ├── case-566542@1.html │ │ ├── case-586555.conf │ │ ├── case-586555@1.html │ │ ├── case-586562@1.html │ │ ├── case-588061@1.html │ │ ├── case-590716.conf │ │ ├── case-590716@1.html │ │ ├── case-593705@0.html │ │ ├── case-609058@0.html │ │ ├── case-616744.conf │ │ ├── case-616744@0.xml │ │ ├── case-620531@1.html │ │ ├── case-629885@1.html │ │ ├── case-640473.conf │ │ ├── case-640473@1.html │ │ ├── case-640474.conf │ │ ├── case-640474@0.xml │ │ ├── case-646946.conf │ │ ├── case-647255.conf │ │ ├── case-647255@1.html │ │ ├── case-647900.conf │ │ ├── case-647900@2.html │ │ ├── case-649812.conf │ │ ├── case-649812@0.html │ │ ├── case-655338@1.html │ │ ├── case-656889.conf │ │ ├── case-656889@1.html │ │ ├── case-658230.conf │ │ ├── case-658230@1.html │ │ ├── case-660397.conf │ │ ├── case-660397@1.html │ │ ├── case-671087@0.html │ │ ├── case-676156.conf │ │ ├── case-676156@1.html │ │ ├── case-676205@1.xhtml │ │ ├── case-678268.conf │ │ ├── case-678268@1.html │ │ ├── case-688746.conf │ │ ├── case-688746@1.html │ │ ├── case-695408.conf │ │ ├── case-695408@1.html │ │ ├── case-696799@1.html │ │ ├── case-706260@0.html │ │ ├── case-765852@1.html │ │ ├── case-795643a.conf │ │ ├── case-795643a@1.html │ │ ├── case-795643b.conf │ │ ├── case-795643b@1.html │ │ ├── case-836462a@1.html │ │ ├── case-836462b@1.html │ │ ├── case-836462c@1.html │ │ ├── case-837023@1.html │ │ ├── case-978947@0.html │ │ ├── case-996484@0.html │ │ └── config_default.conf │ ├── legacy-expects │ │ ├── case-1002509.txt │ │ ├── case-1003361.html │ │ ├── case-1003361.txt │ │ ├── case-1004051.html │ │ ├── case-1004051.txt │ │ ├── case-1004512.html │ │ ├── case-1004512.txt │ │ ├── case-1014993.html │ │ ├── case-1014993.txt │ │ ├── case-1015959.html │ │ ├── case-1015959.txt │ │ ├── case-1027888.html │ │ ├── case-1027888.txt │ │ ├── case-1050673.html │ │ ├── case-1050673.txt │ │ ├── case-1052758.html │ │ ├── case-1052758.txt │ │ ├── case-1053626.html │ │ ├── case-1053626.txt │ │ ├── case-1055304.html │ │ ├── case-1055304.txt │ │ ├── case-1055398.html │ │ ├── case-1055398.txt │ │ ├── case-1056023.html │ │ ├── case-1056023.txt │ │ ├── case-1056910.html │ │ ├── case-1056910.txt │ │ ├── case-1062345.html │ │ ├── case-1062345.txt │ │ ├── case-1062511.html │ │ ├── case-1062511.txt │ │ ├── case-1062661.html │ │ ├── case-1062661.txt │ │ ├── case-1063256.txt │ │ ├── case-1067112.html │ │ ├── case-1067112.txt │ │ ├── case-1068087.html │ │ ├── case-1068087.txt │ │ ├── case-1069549.html │ │ ├── case-1069549.txt │ │ ├── case-1069553.html │ │ ├── case-1069553.txt │ │ ├── case-1072528.html │ │ ├── case-1072528.txt │ │ ├── case-1078345.html │ │ ├── case-1078345.txt │ │ ├── case-1079820.html │ │ ├── case-1079820.txt │ │ ├── case-1086083.html │ │ ├── case-1086083.txt │ │ ├── case-1090318.html │ │ ├── case-1090318.txt │ │ ├── case-1098012.html │ │ ├── case-1098012.txt │ │ ├── case-1107622.html │ │ ├── case-1107622.txt │ │ ├── case-1115094.html │ │ ├── case-1115094.txt │ │ ├── case-1117013.html │ │ ├── case-1117013.txt │ │ ├── case-1145571.html │ │ ├── case-1145571.txt │ │ ├── case-1145572.html │ │ ├── case-1145572.txt │ │ ├── case-1168193.html │ │ ├── case-1168193.txt │ │ ├── case-1183751.html │ │ ├── case-1183751.txt │ │ ├── case-1198501.html │ │ ├── case-1198501.txt │ │ ├── case-1207443.html │ │ ├── case-1207443.txt │ │ ├── case-1210752.html │ │ ├── case-1210752.txt │ │ ├── case-1231279.html │ │ ├── case-1231279.txt │ │ ├── case-1235296.html │ │ ├── case-1235296.txt │ │ ├── case-1241723.html │ │ ├── case-1241723.txt │ │ ├── case-1263391.html │ │ ├── case-1263391.txt │ │ ├── case-1266647.html │ │ ├── case-1266647.txt │ │ ├── case-1282835.html │ │ ├── case-1282835.txt │ │ ├── case-1286029.html │ │ ├── case-1286029.txt │ │ ├── case-1286278.html │ │ ├── case-1286278.txt │ │ ├── case-1316258.html │ │ ├── case-1316258.txt │ │ ├── case-1316307a.html │ │ ├── case-1316307a.txt │ │ ├── case-1316307b.html │ │ ├── case-1316307b.txt │ │ ├── case-1326520.html │ │ ├── case-1326520.txt │ │ ├── case-1331849.html │ │ ├── case-1331849.txt │ │ ├── case-1333579.html │ │ ├── case-1333579.txt │ │ ├── case-1359292.html │ │ ├── case-1359292.txt │ │ ├── case-1398397.html │ │ ├── case-1398397.txt │ │ ├── case-1407266.html │ │ ├── case-1407266.txt │ │ ├── case-1408034.html │ │ ├── case-1408034.txt │ │ ├── case-1410061a.html │ │ ├── case-1410061a.txt │ │ ├── case-1410061b.html │ │ ├── case-1410061b.txt │ │ ├── case-1410061c.html │ │ ├── case-1410061c.txt │ │ ├── case-1415137.html │ │ ├── case-1415137.txt │ │ ├── case-1423252.html │ │ ├── case-1423252.txt │ │ ├── case-1426419.html │ │ ├── case-1426419.txt │ │ ├── case-1436578.html │ │ ├── case-1436578.txt │ │ ├── case-1445570.html │ │ ├── case-1445570.txt │ │ ├── case-1452744.html │ │ ├── case-1452744.txt │ │ ├── case-1503897.html │ │ ├── case-1503897.txt │ │ ├── case-1586158.html │ │ ├── case-1586158.txt │ │ ├── case-1590220a.html │ │ ├── case-1590220a.txt │ │ ├── case-1590220b.html │ │ ├── case-1590220b.txt │ │ ├── case-1603538a.html │ │ ├── case-1603538a.txt │ │ ├── case-1603538b.html │ │ ├── case-1603538b.txt │ │ ├── case-1610888a.html │ │ ├── case-1610888a.txt │ │ ├── case-1610888b.html │ │ ├── case-1610888b.txt │ │ ├── case-1632218.html │ │ ├── case-1632218.txt │ │ ├── case-1632470.html │ │ ├── case-1632470.txt │ │ ├── case-1638062.html │ │ ├── case-1638062.txt │ │ ├── case-1642186b.html │ │ ├── case-1642186b.txt │ │ ├── case-1674502.html │ │ ├── case-1674502.txt │ │ ├── case-1707836.html │ │ ├── case-1707836.txt │ │ ├── case-1715153.html │ │ ├── case-1715153.txt │ │ ├── case-1720953.html │ │ ├── case-1720953.txt │ │ ├── case-1773932.html │ │ ├── case-1773932.txt │ │ ├── case-1986717a.html │ │ ├── case-1986717a.txt │ │ ├── case-1986717b.html │ │ ├── case-1986717b.txt │ │ ├── case-1986717c.html │ │ ├── case-1986717c.txt │ │ ├── case-2046048.txt │ │ ├── case-2085175.html │ │ ├── case-2085175.txt │ │ ├── case-2359929.html │ │ ├── case-2359929.txt │ │ ├── case-2705873a.html │ │ ├── case-2705873a.txt │ │ ├── case-2705873b.html │ │ ├── case-2705873b.txt │ │ ├── case-2709860.html │ │ ├── case-2709860.txt │ │ ├── case-426885.html │ │ ├── case-426885.txt │ │ ├── case-427633.html │ │ ├── case-427633.txt │ │ ├── case-427662.html │ │ ├── case-427662.txt │ │ ├── case-427664.html │ │ ├── case-427664.txt │ │ ├── case-427671.html │ │ ├── case-427671.txt │ │ ├── case-427672.html │ │ ├── case-427672.txt │ │ ├── case-427675.html │ │ ├── case-427675.txt │ │ ├── case-427676.txt │ │ ├── case-427677.html │ │ ├── case-427677.txt │ │ ├── case-427810.html │ │ ├── case-427810.txt │ │ ├── case-427811.html │ │ ├── case-427811.txt │ │ ├── case-427813.html │ │ ├── case-427813.txt │ │ ├── case-427816.html │ │ ├── case-427816.txt │ │ ├── case-427818.html │ │ ├── case-427818.txt │ │ ├── case-427819.html │ │ ├── case-427819.txt │ │ ├── case-427820.html │ │ ├── case-427820.txt │ │ ├── case-427821.html │ │ ├── case-427821.txt │ │ ├── case-427822.html │ │ ├── case-427822.txt │ │ ├── case-427823.html │ │ ├── case-427823.txt │ │ ├── case-427825.html │ │ ├── case-427825.txt │ │ ├── case-427826.html │ │ ├── case-427826.txt │ │ ├── case-427827.html │ │ ├── case-427827.txt │ │ ├── case-427830.html │ │ ├── case-427830.txt │ │ ├── case-427833.html │ │ ├── case-427833.txt │ │ ├── case-427834.html │ │ ├── case-427834.txt │ │ ├── case-427835.html │ │ ├── case-427835.txt │ │ ├── case-427836.html │ │ ├── case-427836.txt │ │ ├── case-427837.txt │ │ ├── case-427837.xml │ │ ├── case-427838.html │ │ ├── case-427838.txt │ │ ├── case-427839.html │ │ ├── case-427839.txt │ │ ├── case-427840.html │ │ ├── case-427840.txt │ │ ├── case-427841.html │ │ ├── case-427841.txt │ │ ├── case-427845.html │ │ ├── case-427845.txt │ │ ├── case-427846.html │ │ ├── case-427846.txt │ │ ├── case-431716.html │ │ ├── case-431716.txt │ │ ├── case-431721.html │ │ ├── case-431721.txt │ │ ├── case-431731.html │ │ ├── case-431731.txt │ │ ├── case-431736.html │ │ ├── case-431736.txt │ │ ├── case-431739.html │ │ ├── case-431739.txt │ │ ├── case-431874.html │ │ ├── case-431874.txt │ │ ├── case-431889.html │ │ ├── case-431889.txt │ │ ├── case-431898.html │ │ ├── case-431898.txt │ │ ├── case-431964.html │ │ ├── case-431964.txt │ │ ├── case-432677.html │ │ ├── case-432677.txt │ │ ├── case-433012.html │ │ ├── case-433012.txt │ │ ├── case-433021.html │ │ ├── case-433021.txt │ │ ├── case-433040.html │ │ ├── case-433040.txt │ │ ├── case-433359.html │ │ ├── case-433359.txt │ │ ├── case-433360.html │ │ ├── case-433360.txt │ │ ├── case-433604.txt │ │ ├── case-433604.xml │ │ ├── case-433607.txt │ │ ├── case-433607.xml │ │ ├── case-433656.html │ │ ├── case-433656.txt │ │ ├── case-433666.html │ │ ├── case-433666.txt │ │ ├── case-433672.html │ │ ├── case-433672.txt │ │ ├── case-434047.html │ │ ├── case-434047.txt │ │ ├── case-434100.txt │ │ ├── case-434940.html │ │ ├── case-434940.txt │ │ ├── case-435903.html │ │ ├── case-435903.txt │ │ ├── case-435917.html │ │ ├── case-435917.txt │ │ ├── case-435919.html │ │ ├── case-435919.txt │ │ ├── case-435920.html │ │ ├── case-435920.txt │ │ ├── case-435922.html │ │ ├── case-435922.txt │ │ ├── case-435923.html │ │ ├── case-435923.txt │ │ ├── case-437468.html │ │ ├── case-437468.txt │ │ ├── case-438650.html │ │ ├── case-438650.txt │ │ ├── case-438658.html │ │ ├── case-438658.txt │ │ ├── case-438954.html │ │ ├── case-438954.txt │ │ ├── case-438956.html │ │ ├── case-438956.txt │ │ ├── case-441508.html │ │ ├── case-441508.txt │ │ ├── case-441568.html │ │ ├── case-441568.txt │ │ ├── case-443362.html │ │ ├── case-443362.txt │ │ ├── case-443576.html │ │ ├── case-443576.txt │ │ ├── case-443678.html │ │ ├── case-443678.txt │ │ ├── case-445074.html │ │ ├── case-445074.txt │ │ ├── case-445394.html │ │ ├── case-445394.txt │ │ ├── case-445557.html │ │ ├── case-445557.txt │ │ ├── case-449348.html │ │ ├── case-449348.txt │ │ ├── case-470663.html │ │ ├── case-470663.txt │ │ ├── case-473490.html │ │ ├── case-473490.txt │ │ ├── case-480701.txt │ │ ├── case-480701.xml │ │ ├── case-487204.html │ │ ├── case-487204.txt │ │ ├── case-487283.html │ │ ├── case-487283.txt │ │ ├── case-501669.html │ │ ├── case-501669.txt │ │ ├── case-503436.txt │ │ ├── case-503436.xml │ │ ├── case-504206.html │ │ ├── case-504206.txt │ │ ├── case-505770.html │ │ ├── case-505770.txt │ │ ├── case-511243.txt │ │ ├── case-511243.xhtml │ │ ├── case-511679.html │ │ ├── case-511679.txt │ │ ├── case-533233.html │ │ ├── case-533233.txt │ │ ├── case-540571.html │ │ ├── case-540571.txt │ │ ├── case-543262.html │ │ ├── case-543262.txt │ │ ├── case-545772.html │ │ ├── case-545772.txt │ │ ├── case-553468.txt │ │ ├── case-553468.xhtml │ │ ├── case-566542.html │ │ ├── case-566542.txt │ │ ├── case-586555.html │ │ ├── case-586555.txt │ │ ├── case-586562.html │ │ ├── case-586562.txt │ │ ├── case-588061.html │ │ ├── case-588061.txt │ │ ├── case-590716.html │ │ ├── case-590716.txt │ │ ├── case-593705.html │ │ ├── case-593705.txt │ │ ├── case-609058.html │ │ ├── case-609058.txt │ │ ├── case-616744.txt │ │ ├── case-616744.xml │ │ ├── case-620531.html │ │ ├── case-620531.txt │ │ ├── case-629885.html │ │ ├── case-629885.txt │ │ ├── case-640473.html │ │ ├── case-640473.txt │ │ ├── case-640474.txt │ │ ├── case-640474.xml │ │ ├── case-647255.html │ │ ├── case-647255.txt │ │ ├── case-647900.html │ │ ├── case-647900.txt │ │ ├── case-649812.html │ │ ├── case-649812.txt │ │ ├── case-655338.html │ │ ├── case-655338.txt │ │ ├── case-656889.html │ │ ├── case-656889.txt │ │ ├── case-658230.html │ │ ├── case-658230.txt │ │ ├── case-660397.html │ │ ├── case-660397.txt │ │ ├── case-671087.html │ │ ├── case-671087.txt │ │ ├── case-676156.html │ │ ├── case-676156.txt │ │ ├── case-676205.txt │ │ ├── case-676205.xhtml │ │ ├── case-678268.html │ │ ├── case-678268.txt │ │ ├── case-688746.html │ │ ├── case-688746.txt │ │ ├── case-695408.html │ │ ├── case-695408.txt │ │ ├── case-696799.html │ │ ├── case-696799.txt │ │ ├── case-706260.html │ │ ├── case-706260.txt │ │ ├── case-765852.html │ │ ├── case-765852.txt │ │ ├── case-795643a.html │ │ ├── case-795643a.txt │ │ ├── case-795643b.html │ │ ├── case-795643b.txt │ │ ├── case-836462a.html │ │ ├── case-836462a.txt │ │ ├── case-836462b.html │ │ ├── case-836462b.txt │ │ ├── case-836462c.html │ │ ├── case-836462c.txt │ │ ├── case-837023.html │ │ ├── case-837023.txt │ │ ├── case-978947.html │ │ ├── case-978947.txt │ │ ├── case-996484.html │ │ └── case-996484.txt │ ├── special-cases │ │ ├── README.txt │ │ ├── case-evil.conf │ │ └── case-evil@1.html │ ├── xml-cases │ │ ├── README.txt │ │ ├── case-1003994.conf │ │ ├── case-1003994@2.xml │ │ ├── case-1004008.conf │ │ ├── case-1004008@1.xml │ │ ├── case-1030944.conf │ │ ├── case-1030944@0.xml │ │ ├── case-1365706.conf │ │ ├── case-1365706@0.xml │ │ ├── case-1448730.conf │ │ ├── case-1448730@0.xml │ │ ├── case-1510101.conf │ │ ├── case-1510101@0.xml │ │ ├── case-1573338.conf │ │ ├── case-1573338@0.xml │ │ ├── case-427837.conf │ │ ├── case-427837@0.xml │ │ ├── case-431956.conf │ │ ├── case-431956@0.xml │ │ ├── case-432677.conf │ │ ├── case-432677@0.html │ │ ├── case-433604.conf │ │ ├── case-433604@0.xml │ │ ├── case-433607.conf │ │ ├── case-433607@0.xml │ │ ├── case-433670.conf │ │ ├── case-433670@0.xml │ │ ├── case-434100.conf │ │ ├── case-434100@2.html │ │ ├── case-473490.conf │ │ ├── case-473490@1.html │ │ ├── case-480406.conf │ │ ├── case-480406@0.xml │ │ ├── case-480701.conf │ │ ├── case-480701@0.xml │ │ ├── case-500236.conf │ │ ├── case-500236@0.xml │ │ ├── case-503436.conf │ │ ├── case-503436@1.xml │ │ ├── case-537604.conf │ │ ├── case-537604@0.xml │ │ ├── case-540045.conf │ │ ├── case-540045@0.xhtml │ │ ├── case-542029.conf │ │ ├── case-542029@1.html │ │ ├── case-586555.conf │ │ ├── case-586555@1.html │ │ ├── case-616744.conf │ │ ├── case-616744@0.xml │ │ ├── case-634889.conf │ │ ├── case-634889@1.html │ │ ├── case-640474.conf │ │ ├── case-640474@0.xml │ │ ├── case-646946.conf │ │ ├── case-646946@0.xml │ │ └── config_default.conf │ └── xml-expects │ │ ├── case-1003994.txt │ │ ├── case-1004008.txt │ │ ├── case-1004008.xml │ │ ├── case-1030944.txt │ │ ├── case-1030944.xml │ │ ├── case-1365706.txt │ │ ├── case-1365706.xml │ │ ├── case-1448730.txt │ │ ├── case-1448730.xml │ │ ├── case-1510101.txt │ │ ├── case-1510101.xml │ │ ├── case-1573338.txt │ │ ├── case-1573338.xml │ │ ├── case-427837.txt │ │ ├── case-427837.xml │ │ ├── case-431956.txt │ │ ├── case-431956.xml │ │ ├── case-432677.html │ │ ├── case-432677.txt │ │ ├── case-433604.txt │ │ ├── case-433604.xml │ │ ├── case-433607.txt │ │ ├── case-433607.xml │ │ ├── case-433670.txt │ │ ├── case-433670.xml │ │ ├── case-434100.txt │ │ ├── case-473490.html │ │ ├── case-473490.txt │ │ ├── case-480406.txt │ │ ├── case-480406.xml │ │ ├── case-480701.txt │ │ ├── case-480701.xml │ │ ├── case-500236.txt │ │ ├── case-500236.xml │ │ ├── case-503436.txt │ │ ├── case-503436.xml │ │ ├── case-537604.txt │ │ ├── case-537604.xml │ │ ├── case-540045.txt │ │ ├── case-540045.xhtml │ │ ├── case-542029.html │ │ ├── case-542029.txt │ │ ├── case-586555.html │ │ ├── case-586555.txt │ │ ├── case-616744.txt │ │ ├── case-616744.xml │ │ ├── case-634889.html │ │ ├── case-634889.txt │ │ ├── case-640474.txt │ │ ├── case-640474.xml │ │ ├── case-646946.txt │ │ └── case-646946.xml └── test.rb ├── src ├── access.c ├── access.h ├── alloc.c ├── attrdict.c ├── attrdict.h ├── attrs.c ├── attrs.h ├── buffio.c ├── charsets.c ├── charsets.h ├── clean.c ├── clean.h ├── config.c ├── config.h ├── entities.c ├── entities.h ├── fileio.c ├── fileio.h ├── forward.h ├── gdoc.c ├── gdoc.h ├── istack.c ├── language.c ├── language.h ├── language_de.h ├── language_en.h ├── language_en_gb.h ├── language_es.h ├── language_es_mx.h ├── language_fr.h ├── language_pt_br.h ├── language_zh_cn.h ├── lexer.c ├── lexer.h ├── mappedio.c ├── mappedio.h ├── message.c ├── message.h ├── messageobj.c ├── messageobj.h ├── parser.c ├── parser.h ├── pprint.c ├── pprint.h ├── sprtf.c ├── sprtf.h ├── streamio.c ├── streamio.h ├── tagask.c ├── tags.c ├── tags.h ├── tidy-int.h ├── tidylib.c ├── tmbstr.c ├── tmbstr.h ├── utf8.c ├── utf8.h └── version.h ├── tidy.pc.cmake.in └── version.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /autom4te.cache/ 2 | /console/.deps/ 3 | /console/.libs/ 4 | /src/.deps/ 5 | /src/.libs/ 6 | *.user 7 | *.suo 8 | *.sdf 9 | /test 10 | /test/testall.log 11 | /test/tmp/ 12 | /test/tmp2/ 13 | *~ 14 | temp* 15 | *.bak 16 | .DS_Store 17 | .idea 18 | *.old 19 | /regression_testing/cases/*-results/ 20 | -------------------------------------------------------------------------------- /build/win64/cmake-clean.txt: -------------------------------------------------------------------------------- 1 | bldlog-1.txt 2 | CPackConfig.cmake 3 | CPackSourceConfig.cmake 4 | directories.wixobj 5 | features.wixobj 6 | files.wixobj 7 | install_manifest.txt 8 | main.wixobj 9 | Tidy5-4.9.23-Source.zip 10 | Tidy5-4.9.23-win64.exe 11 | Tidy5-4.9.23-win64.msi 12 | Tidy5-4.9.23-win64.zip 13 | _CPack_Packages 14 | -------------------------------------------------------------------------------- /include/module.modulemap: -------------------------------------------------------------------------------- 1 | module CLibTidy { 2 | header "tidy.h" 3 | header "tidybuffio.h" 4 | header "tidyenum.h" 5 | header "tidyplatform.h" 6 | export * 7 | } 8 | -------------------------------------------------------------------------------- /localize/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore user-generated files: 2 | Gemfile.lock 3 | *.pot 4 | *.po 5 | *.h 6 | translations/*.* 7 | !translations/tidy.pot 8 | !translations/*.po 9 | -------------------------------------------------------------------------------- /localize/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'thor' 4 | gem 'i18n' 5 | gem 'git' 6 | -------------------------------------------------------------------------------- /man/README.md: -------------------------------------------------------------------------------- 1 | man 2 | === 3 | 4 | This directory consists of file required for generating Tidy's documentation: 5 | 6 | - `tidy.1`, which is Tidy's `man` page on Unix-like systems. 7 | 8 | Please consult the main project README file for more information. 9 | -------------------------------------------------------------------------------- /regression_testing/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'thor' 4 | gem "tty-editor" 5 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-10_1_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-10_1_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_10.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_10@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 | x 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_2@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_3@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 |
Hello
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_4.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_4@1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 | Hello 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_5.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_5@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | Hello 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_6.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_6@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_7.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_7@1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_8.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_8@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | x 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_9.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-11_2_1_9@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | x 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-12_1_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-12_1_1_1@1.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/12.1.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-12_1_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-12_1_1_2@1.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/12.1.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-12_1_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-12_1_1_3@1.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/12.1.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-12_4_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-12_4_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-12_4_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-13_10_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-13_1_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-13_1_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-13_1_1_2@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/13.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-13_1_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-13_1_1_4.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-13_1_1_4@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/13.1.1 5 | 6 | 7 | click here 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-13_2_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-13_2_1_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-13_2_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_10_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_10_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.10 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_12_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_1_10.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_1_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.1 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_1_2@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.1 5 | 6 | 7 | gifimage.gif 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_1_3@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.1 5 | 6 | 7 | 34K bytes 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_1_4.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_2_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_2_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_2_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_3_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_4_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_4_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.4 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_5_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_6_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_6_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_6_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_6_4.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_6_5.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_6_6.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_8_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_1_9_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_2_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_4_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_4_1_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.4.1 5 | 6 | 7 | Baby Walking 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-1_5_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-2_1_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-2_1_1_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/2.1.1 5 | 6 | 7 | big cat 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-2_1_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-2_1_1_2@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/2.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-2_1_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-2_1_1_3@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/2.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-2_1_1_4.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-2_1_1_4@1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/2.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-2_1_1_5.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-2_2_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-2_2_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-2_2_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-2_2_1_4.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_2_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_2_1_1@1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Document missing doctype 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_3_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_3_1_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/3.3.1 5 | 6 | 7 | Does not use stylesheets. 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_5_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_5_2_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_5_2_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/3.5.2 5 | 6 | 7 |

This may be a header.

8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_5_2_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_5_2_2@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/3.5.2 5 | 6 | 7 |

This may be a header.

8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_5_2_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_5_2_3@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/3.5.2 5 | 6 | 7 |

This may be a header.

8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_6_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_6_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_6_1_4.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-3_6_1_4@1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/3.6.1 5 | 6 | 7 |
  • Just an li by itself
  • 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-4_1_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-4_3_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-4_3_1_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | aert1.0/4.3.1 - The HTML element does not contain a lang attribute 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-4_3_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-4_3_1_2@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/4.3.1 - The HTML element does not contain a valid lang attribute 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_1_2_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_1_2_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_1_2_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_2_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_2_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_3_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_4_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_5_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_5_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_5_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_5_1_6.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_5_2_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_6_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_6_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-5_6_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_1_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_1_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_1_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_1_1_3@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.1.1 5 | 6 | 7 | 8 |

    hello

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_2_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_2_1_1@0.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/6.2.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_2_2_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_2_2_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.2.2 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_2_2_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_2_2_2@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.2.2 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_2_2_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_2_2_3@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.2.2 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_3_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_3_1_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.3.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_3_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_3_1_2@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.3.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_3_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_3_1_3@1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.3.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_3_1_4.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_3_1_4@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.3.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_5_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_5_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_5_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-6_5_1_4.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-7_1_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-7_1_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-7_1_1_2@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/7.1.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-7_1_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-7_1_1_3@1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/7.1.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-7_1_1_4.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-7_1_1_4@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/7.1.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-7_1_1_5.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-7_2_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-7_4_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-7_4_1_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Test 7.4.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-7_5_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-8_1_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-8_1_1_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/8.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-8_1_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-8_1_1_2@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/8.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-8_1_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-8_1_1_3@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/8.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-8_1_1_4.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-8_1_1_4@1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/8.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-9_1_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 1 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-9_3_1_1.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-9_3_1_1@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/9.3.1 5 | 6 | 7 |

    8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-9_3_1_2.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-9_3_1_2@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/9.3.1 5 | 6 | 7 |

    8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-9_3_1_3.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-9_3_1_3@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/9.3.1 5 | 6 | 7 |

    8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-9_3_1_4.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-9_3_1_4@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/9.3.1 5 | 6 | 7 |

    8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-9_3_1_5.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-9_3_1_5@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/9.3.1 5 | 6 | 7 |

    8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-9_3_1_6.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 2 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/case-9_3_1_6@0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/9.3.1 5 | 6 | 7 |

    8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-cases/config_default.conf: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | accessibility-check: 3 3 | show-info: no -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-10_1_1_2.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 7 column 1 - Access: [10.1.1.2]: new windows require warning (_blank). 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_1.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/11.2.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_10.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/11.2.1 6 | 7 | 8 | x 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_10.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 8 column 1 - Access: [11.2.1.10]: replace deprecated html . 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_2.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/11.2.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_2.txt: -------------------------------------------------------------------------------- 1 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 2 | line 7 column 1 - Access: [11.2.1.2]: replace deprecated html . 3 | No warnings or errors were found. 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_3.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/11.2.1 6 | 7 | 8 |
    Hello
    9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_3.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 8 column 1 - Access: [11.2.1.3]: replace deprecated html
    . 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_4.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/11.2.1 6 | 7 | 8 |
    Hello
    9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_5.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/11.2.1 6 | 7 | 8 | Hello 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_5.txt: -------------------------------------------------------------------------------- 1 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 2 | line 7 column 1 - Access: [11.2.1.5]: replace deprecated html . 3 | No warnings or errors were found. 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_6.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 7 column 1 - Access: [11.2.1.6]: replace deprecated html . 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_7.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/11.2.1 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_8.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/11.2.1 6 | 7 | 8 | x 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_8.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 7 column 1 - Access: [11.2.1.8]: replace deprecated html . 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_9.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/11.2.1 6 | 7 | 8 | x 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-11_2_1_9.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 7 column 1 - Access: [11.2.1.9]: replace deprecated html . 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-12_1_1_1.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/12.1.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-12_1_1_2.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/12.1.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-12_1_1_3.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/12.1.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-13_1_1_2.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/13.1.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-13_1_1_2.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 7 column 1 - Access: [13.1.1.2]: link text missing. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-13_1_1_3.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 7 column 1 - Access: [13.1.1.3]: link text too long. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-13_1_1_4.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/13.1.1 6 | 7 | 8 | click here 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-13_1_1_4.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 7 column 1 - Access: [13.1.1.4]: link text not meaningful (click here). 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-13_2_1_1.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-13_2_1_1.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | No warnings or errors were found. 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_12_1.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 7 column 1 - Access: [1.1.12.1]: ascii art requires description. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_1_1.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/1.1.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_1_2.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/1.1.1 6 | 7 | 8 | gifimage.gif 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_1_3.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/1.1.1 6 | 7 | 8 | 34K bytes 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_2_1.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [2.1.1.1]: ensure information not conveyed through color alone (image). 2 | line 7 column 66 - Access: [1.1.2.1]: missing 'longdesc' and d-link. 3 | No warnings or errors were found. 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_2_2.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [2.1.1.1]: ensure information not conveyed through color alone (image). 2 | line 7 column 92 - Access: [1.1.2.2]: missing d-link. 3 | No warnings or errors were found. 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_2_3.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [2.1.1.1]: ensure information not conveyed through color alone (image). 2 | line 8 column 1 - Access: [1.1.2.3]: missing 'longdesc'. 3 | No warnings or errors were found. 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_3_1.txt: -------------------------------------------------------------------------------- 1 | line 8 column 1 - Access: [2.1.1.5]: ensure information not conveyed through color alone (input). 2 | line 8 column 1 - Access: [1.1.3.1]: (button) missing 'alt' text. 3 | No warnings or errors were found. 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_4_1.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/1.1.4 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_6_1.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [1.1.6.1]: audio missing text transcript (wav). 2 | No warnings or errors were found. 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_6_2.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [1.1.6.2]: audio missing text transcript (au). 2 | No warnings or errors were found. 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_6_3.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [1.1.6.3]: audio missing text transcript (aiff). 2 | No warnings or errors were found. 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_6_4.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [1.1.6.4]: audio missing text transcript (snd). 2 | No warnings or errors were found. 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_6_5.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [1.1.6.5]: audio missing text transcript (ra). 2 | No warnings or errors were found. 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_6_6.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [1.1.6.6]: audio missing text transcript (rm). 2 | No warnings or errors were found. 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_8_1.txt: -------------------------------------------------------------------------------- 1 | line 5 column 1 - Access: [6.5.1.1]: missing section. 2 | line 6 column 4 - Access: [12.1.1.1]: <frame> missing title. 3 | line 8 column 4 - Access: [1.1.8.1]: <frame> may require 'longdesc'. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_1_9_1.txt: -------------------------------------------------------------------------------- 1 | line 9 column 1 - Access: [1.1.9.1]: <area> missing 'alt' text. 2 | line 13 column 1 - Access: [2.1.1.1]: ensure information not conveyed through color alone (image). 3 | line 13 column 76 - Access: [1.1.2.2]: <img> missing d-link. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_4_1_1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/1.4.1</title> 6 | </head> 7 | <body> 8 | <a href="babywalk.mpg">Baby Walking</a> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-1_4_1_1.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [1.4.1.1]: multimedia requires synchronized text equivalents. 2 | No warnings or errors were found. 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-2_1_1_1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/2.1.1</title> 6 | </head> 7 | <body> 8 | <img src="rex.jpg" alt="big cat"> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-2_1_1_2.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/2.1.1</title> 6 | </head> 7 | <body> 8 | <applet></applet> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-2_1_1_3.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/2.1.1</title> 6 | </head> 7 | <body> 8 | <object></object> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-2_1_1_4.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/2.1.1</title> 6 | </head> 7 | <body> 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-2_1_1_5.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/2.1.1</title> 6 | </head> 7 | <body> 8 | <form action=""><input></form> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-2_2_1_1.txt: -------------------------------------------------------------------------------- 1 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 2 | line 6 column 1 - Access: [2.2.1.1]: poor color contrast (text). 3 | No warnings or errors were found. 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-2_2_1_2.txt: -------------------------------------------------------------------------------- 1 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 2 | line 6 column 1 - Access: [2.2.1.2]: poor color contrast (link). 3 | No warnings or errors were found. 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-2_2_1_3.txt: -------------------------------------------------------------------------------- 1 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 2 | line 6 column 1 - Access: [2.2.1.3]: poor color contrast (active link). 3 | No warnings or errors were found. 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-2_2_1_4.txt: -------------------------------------------------------------------------------- 1 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 2 | line 6 column 1 - Access: [2.2.1.4]: poor color contrast (visited link). 3 | No warnings or errors were found. 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-3_2_1_1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html lang="en"> 3 | <head> 4 | <title>Document missing doctype</title> 5 | </head> 6 | <body> 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-3_3_1_1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/3.3.1</title> 6 | </head> 7 | <body> 8 | Does not use stylesheets. 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-3_3_1_1.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | No warnings or errors were found. 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-3_5_1_1.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 7 column 1 - Access: [3.5.1.1]: headers improperly nested. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-3_5_2_1.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 7 column 1 - Access: [3.5.2.1]: potential header (bold). 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-3_5_2_2.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/3.5.2</title> 6 | </head> 7 | <body> 8 | <p><em>This may be a header.</em></p> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-3_5_2_2.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 7 column 1 - Access: [3.5.2.2]: potential header (italics). 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-3_5_2_3.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/3.5.2</title> 6 | </head> 7 | <body> 8 | <p><u>This may be a header.</u></p> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-4_1_1_1.txt: -------------------------------------------------------------------------------- 1 | No warnings or errors were found. 2 | 3 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-4_3_1_1.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [4.3.1.1]: language not identified. 3 | line 4 column 1 - Access: [13.2.1.1]: Metadata missing. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-4_3_1_2.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 2 column 1 - Access: [4.3.1.2]: language attribute invalid. 3 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-5_1_2_1.txt: -------------------------------------------------------------------------------- 1 | line 8 column 1 - Access: [5.1.2.1]: data <table> missing row/column headers (all). 2 | No warnings or errors were found. 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-5_1_2_2.txt: -------------------------------------------------------------------------------- 1 | line 8 column 1 - Access: [5.1.2.2]: data <table> missing row/column headers (1 col). 2 | No warnings or errors were found. 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-5_1_2_3.txt: -------------------------------------------------------------------------------- 1 | line 8 column 1 - Access: [5.1.2.3]: data <table> missing row/column headers (1 row). 2 | No warnings or errors were found. 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-5_4_1_1.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 7 column 1 - Access: [5.4.1.1]: invalid markup used in layout <table>. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-6_1_1_1.txt: -------------------------------------------------------------------------------- 1 | line 5 column 1 - Access: [6.1.1.1]: style sheets require testing (link). 2 | No warnings or errors were found. 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-6_1_1_3.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/6.1.1</title> 6 | </head> 7 | <body> 8 | <p style="color: green">hello</p> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-6_1_1_3.txt: -------------------------------------------------------------------------------- 1 | line 8 column 1 - Access: [6.1.1.3]: style sheets require testing (style attribute). 2 | No warnings or errors were found. 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-6_2_1_1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" 2 | "http://www.w3.org/TR/html4/frameset.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/6.2.1</title> 6 | </head> 7 | <frameset> 8 | <frame src="rex.jpg"> 9 | </frameset> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-6_2_1_1.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [6.5.1.1]: <frameset> missing <noframes> section. 2 | line 8 column 1 - Access: [6.2.1.1]: <frame> source invalid. 3 | line 8 column 1 - Access: [12.1.1.1]: <frame> missing title. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-6_2_2_1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/6.2.2</title> 6 | </head> 7 | <body> 8 | <applet code="applet.class"></applet> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-6_2_2_3.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/6.2.2</title> 6 | </head> 7 | <body> 8 | <object></object> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-6_3_1_2.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/6.3.1</title> 6 | </head> 7 | <body> 8 | <object></object> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-6_3_1_3.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/6.3.1</title> 6 | </head> 7 | <body> 8 | <embed> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-6_3_1_4.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/6.3.1</title> 6 | </head> 7 | <body> 8 | <applet><!-- the applet --></applet> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-6_5_1_2.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" 2 | "http://www.w3.org/TR/html4/frameset.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/6.5.1</title> 6 | </head> 7 | <frameset> 8 | <frame src="f1.html"> 9 | </frameset> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-6_5_1_3.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 4 column 1 - Access: [13.2.1.1]: Metadata missing. 3 | line 9 column 9 - Access: [6.5.1.3]: <noframes> section invalid (content). 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-7_1_1_2.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/7.1.1</title> 6 | </head> 7 | <body> 8 | <object></object> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-7_1_1_3.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/7.1.1</title> 6 | </head> 7 | <body> 8 | <embed> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-7_1_1_4.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/7.1.1</title> 6 | </head> 7 | <body> 8 | <applet></applet> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-7_1_1_5.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/7.1.1</title> 6 | </head> 7 | <body> 8 | <img src="flicker.gif" alt="flicker"> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-7_4_1_1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>Test 7.4.1</title> 6 | <meta http-equiv="refresh" content="60"> 7 | </head> 8 | <body> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-7_4_1_1.txt: -------------------------------------------------------------------------------- 1 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 2 | line 5 column 1 - Access: [7.4.1.1]: remove auto-refresh. 3 | line 5 column 1 - Access: [13.2.1.3]: Metadata missing (redirect/auto-refresh). 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-8_1_1_2.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/8.1.1</title> 6 | </head> 7 | <body> 8 | <object></object> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-8_1_1_3.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/8.1.1</title> 6 | </head> 7 | <body> 8 | <applet></applet> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-8_1_1_4.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/8.1.1</title> 6 | </head> 7 | <body> 8 | <embed> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-9_3_1_1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/9.3.1</title> 6 | </head> 7 | <body> 8 | <p onmousedown="blah"></p> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-9_3_1_1.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [9.3.1.1]: <script> not keyboard accessible (onMouseDown). 2 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 3 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-9_3_1_2.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/9.3.1</title> 6 | </head> 7 | <body> 8 | <p onmouseup="blah"></p> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-9_3_1_2.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [9.3.1.2]: <script> not keyboard accessible (onMouseUp). 2 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 3 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-9_3_1_3.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/9.3.1</title> 6 | </head> 7 | <body> 8 | <p onclick="blah"></p> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-9_3_1_3.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [9.3.1.3]: <script> not keyboard accessible (onClick). 2 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 3 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-9_3_1_4.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/9.3.1</title> 6 | </head> 7 | <body> 8 | <p onmouseover="blah"></p> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-9_3_1_4.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [9.3.1.4]: <script> not keyboard accessible (onMouseOver). 2 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 3 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-9_3_1_5.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/9.3.1</title> 6 | </head> 7 | <body> 8 | <p onmouseout="blah"></p> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-9_3_1_5.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [9.3.1.5]: <script> not keyboard accessible (onMouseOut). 2 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 3 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-9_3_1_6.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 2 | "http://www.w3.org/TR/REC-html40/loose.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>aert1.0/9.3.1</title> 6 | </head> 7 | <body> 8 | <p onmousemove="blah"></p> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/access-expects/case-9_3_1_6.txt: -------------------------------------------------------------------------------- 1 | line 7 column 1 - Access: [9.3.1.6]: <script> not keyboard accessible (onMouseMove). 2 | line 1 column 1 - Access: [3.3.1.1]: use style sheets to control presentation. 3 | line 3 column 1 - Access: [13.2.1.1]: Metadata missing. 4 | No warnings or errors were found. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/dev-cases/case-001.conf: -------------------------------------------------------------------------------- 1 | # Config for test case. 2 | tidy-mark: no 3 | indent: yes 4 | wrap: 999 5 | -------------------------------------------------------------------------------- /regression_testing/cases/dev-cases/case-002.conf: -------------------------------------------------------------------------------- 1 | # Config for test case. 2 | tidy-mark: no 3 | indent: yes 4 | wrap: 999 5 | -------------------------------------------------------------------------------- /regression_testing/cases/dev-cases/case-003.conf: -------------------------------------------------------------------------------- 1 | # Config for test case. 2 | tidy-mark: no 3 | indent: yes 4 | wrap: 999 5 | -------------------------------------------------------------------------------- /regression_testing/cases/dev-cases/case-004.conf: -------------------------------------------------------------------------------- 1 | # Config for test case. 2 | tidy-mark: no 3 | indent: yes 4 | wrap: 999 5 | -------------------------------------------------------------------------------- /regression_testing/cases/dev-cases/case-005.conf: -------------------------------------------------------------------------------- 1 | # Config for test case. 2 | tidy-mark: no 3 | indent: yes 4 | wrap: 999 5 | input-xml: yes 6 | -------------------------------------------------------------------------------- /regression_testing/cases/dev-cases/config_default.conf: -------------------------------------------------------------------------------- 1 | // HTML Tidy configuration - 20151217 2 | indent: auto 3 | char-encoding: latin1 4 | tidy-mark: no 5 | clean: yes 6 | logical-emphasis: yes 7 | indent-attributes: yes 8 | -------------------------------------------------------------------------------- /regression_testing/cases/dev-expects/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/dev-expects/.gitkeep -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-119a.conf: -------------------------------------------------------------------------------- 1 | new-blocklevel-tags: pizzerias, jets-pizza 2 | force-output: yes 3 | custom-tags: blocklevel 4 | wrap: 0 5 | indent: yes 6 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-119b.conf: -------------------------------------------------------------------------------- 1 | new-blocklevel-tags: pizzerias, jets-pizza 2 | force-output: yes 3 | custom-tags: no 4 | wrap: 0 5 | indent: yes 6 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-119c.conf: -------------------------------------------------------------------------------- 1 | new-blocklevel-tags: pizzerias, jets-pizza 2 | force-output: no 3 | custom-tags: inline 4 | wrap: 0 5 | indent: yes 6 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-119d.conf: -------------------------------------------------------------------------------- 1 | new-blocklevel-tags: pizzerias, jets-pizza 2 | force-output: yes 3 | custom-tags: no 4 | wrap: 0 5 | indent: yes 6 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-119e.conf: -------------------------------------------------------------------------------- 1 | new-blocklevel-tags: pizzerias, jets-pizza 2 | force-output: no 3 | custom-tags: inline 4 | wrap: 0 5 | indent: yes 6 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-119f.conf: -------------------------------------------------------------------------------- 1 | force-output: no 2 | custom-tags: blocklevel 3 | wrap: 0 4 | indent: yes 5 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-352.conf: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | fix-uri: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-365.conf: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | uppercase-attributes: preserve 3 | warn-proprietary-attributes: yes 4 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-365@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <title>Issue 365</title> 5 | </head> 6 | <body> 7 | <p style="">Original was lower case "style".</p> 8 | <p STYLE="">Original was upper case "STYLE".</p> 9 | <p Style="">Original was mixed case "Style".</p> 10 | </body> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-378a.conf: -------------------------------------------------------------------------------- 1 | fix-uri: no 2 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-378b.conf: -------------------------------------------------------------------------------- 1 | fix-uri: no 2 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-434.conf: -------------------------------------------------------------------------------- 1 | sort-attributes: none 2 | priority-attributes: id, style, class 3 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-464a.conf: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | wrap: 0 3 | indent: yes 4 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-464b.conf: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | wrap: 0 3 | indent: yes 4 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-476a.conf: -------------------------------------------------------------------------------- 1 | fix-bad-comments: yes 2 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-476b.conf: -------------------------------------------------------------------------------- 1 | fix-bad-comments: no 2 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-483.conf: -------------------------------------------------------------------------------- 1 | show-info: no 2 | indent: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-523.conf: -------------------------------------------------------------------------------- 1 | # Config for test case. 2 | tidy-mark: no 3 | indent: no 4 | wrap: 99999 5 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-525.conf: -------------------------------------------------------------------------------- 1 | sort-attributes: none 2 | priority-attributes: id, style, class 3 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-611a.conf: -------------------------------------------------------------------------------- 1 | indent: auto 2 | tidy-mark: no 3 | clean: yes 4 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-611a@1.html: -------------------------------------------------------------------------------- 1 | <template><tr><td>1</td></tr></template> 2 | 3 | 4 | <template><td>1</td></template> 5 | 6 | 7 | <template><li>1</li></template> 8 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-611b.conf: -------------------------------------------------------------------------------- 1 | indent: auto 2 | tidy-mark: no 3 | clean: yes 4 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-611b@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <meta charset="utf-8"> 5 | <title>Issue #611-1</title> 6 | </head> 7 | <body> 8 | <template><tr><td>1</td></tr></template> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-611c.conf: -------------------------------------------------------------------------------- 1 | indent: auto 2 | tidy-mark: no 3 | clean: yes 4 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-629.conf: -------------------------------------------------------------------------------- 1 | # Sample config for PR_629. 2 | mute-id: yes 3 | mute: FAKE_TAG, 4 | MISSING_ENDTAG_OPTIONAL, 5 | MISSING_ENDTAG_FOR, 6 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-729a.conf: -------------------------------------------------------------------------------- 1 | # Sample config for 729a. 2 | strict-tags-attributes: yes -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-729b.conf: -------------------------------------------------------------------------------- 1 | # Sample config for 729b. 2 | strict-tags-attributes: no 3 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-836.conf: -------------------------------------------------------------------------------- 1 | # Sample config for 938. 2 | indent: yes 3 | wrap: 999 4 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-938.conf: -------------------------------------------------------------------------------- 1 | # Sample config for 938. 2 | indent: yes 3 | wrap: 999 4 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-946.conf: -------------------------------------------------------------------------------- 1 | # Sample config for 946 2 | gdoc: yes 3 | wrap: 999 4 | -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/case-946@1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/github-cases/case-946@1.html -------------------------------------------------------------------------------- /regression_testing/cases/github-cases/config_default.conf: -------------------------------------------------------------------------------- 1 | // HTML Tidy configuration - 20151217 2 | indent: auto 3 | char-encoding: latin1 4 | tidy-mark: no 5 | clean: yes 6 | logical-emphasis: yes 7 | indent-attributes: yes 8 | -------------------------------------------------------------------------------- /regression_testing/cases/github-expects/case-611b.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <meta charset="utf-8"> 5 | <title>Issue #611-1</title> 6 | </head> 7 | <body> 8 | <template> 9 | <tr> 10 | <td>1</td> 11 | </tr> 12 | </template> 13 | </body> 14 | </html> 15 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1004051@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> 2 | <html> 3 | <head> 4 | <title>font</title> 5 | </head> 6 | <body> 7 | <font size="+1">yy</font> 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1004512.conf: -------------------------------------------------------------------------------- 1 | indent: auto 2 | char-encoding: latin1 3 | tidy-mark: no 4 | clean: yes 5 | logical-emphasis: yes 6 | indent-attributes: yes 7 | 8 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1004512@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 | <html> 3 | <head> 4 | <title>font tag with -clean</title> 5 | </head> 6 | <body> 7 | <ul><li><font size="+1">y2</font></ul> 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1014993@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 | <html> 3 | <head> 4 | <title>php-like tag</title> 5 | </head> 6 | <table summary=""> 7 | <tr> 8 | <td><font <?font></td> 9 | </tr> 10 | </table> 11 | </body> 12 | </html> 13 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1015959@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> 2 | <html> 3 | <head> 4 | <title>[ #1015959 ] inline propagation</title> 5 | </head> 6 | <body> 7 | <font size="2"> 8 | <p>1</p> 9 | <p>2</p> 10 | </font> 11 | </body> 12 | </html> 13 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1050673@1.html: -------------------------------------------------------------------------------- 1 | <B> 2 | <UL> 3 | <NOFRAMES> 4 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1053626@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 | <html> 3 | <head></head> 4 | <body> 5 | <UL><LI> 6 | <COLGROUP> 7 | <NOFRAMES> 8 | <HR> 9 | </LI> 10 | </body> 11 | </html> 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1055398.conf: -------------------------------------------------------------------------------- 1 | clean: yes 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1055398@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 | <html> 3 | <head> 4 | <title>test whether repairing duplicate attributes works</title> 5 | </head> 6 | <body> 7 | <br> 8 | <font onLoad=L1 style=S1 style=S2 onLoad=L2> 9 | <br> 10 | </body> 11 | </html> 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1056023@1.html: -------------------------------------------------------------------------------- 1 | <TFOOT> 2 | </TBODY> 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1062345@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 | <HTML> 3 | <HEAD><title></title></HEAD> 4 | <BODY> 5 | <br STYLE="&#TA;" STYLE="2"> 6 | </BODY> 7 | </HTML> 8 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1062511@1.html: -------------------------------------------------------------------------------- 1 | <HEAD> 2 | <TITLE> 3 | <MARQUEE> 4 | </BASEFONT> 5 | </BODY> 6 | <B> 7 | <BASE> 8 | <HR> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1062661@1.html: -------------------------------------------------------------------------------- 1 | <html><head> 2 | <title>Google</title> 3 | </head> 4 | <body> 5 | <script> 6 | </script><a id=1a href="/imghp?hl=en&tab=wi">Images</a> 7 | </body></html> 8 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1063256@2.html: -------------------------------------------------------------------------------- 1 | <HEAD> 2 | <FRAMESET> 3 | </FRAMESET> 4 | <FRAME> 5 | <OVERLAY> 6 | <BGSOUND> 7 | </BODY> 8 | <TR> 9 | <SPACER> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1068087.conf: -------------------------------------------------------------------------------- 1 | indent: auto 2 | char-encoding: latin1 3 | tidy-mark: no 4 | clean: yes 5 | logical-emphasis: yes 6 | indent-attributes: yes 7 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1068087@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 | <html> 3 | <head><title>bad font size</title></head> 4 | <body> 5 | <font SIZE="&#;" >b 6 | <p>a</p> 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1069549@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 | <html> 3 | <head><title>test NestedList()</title></head> 4 | <body> 5 | <ul> 6 | <li><p>q</p></li> 7 | </ul> 8 | <ol> 9 | <li><ol id="b"></ol></li> 10 | </ol> 11 | </body> 12 | </html> 13 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1069553@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 | <html> 3 | <head><title>test NestedList()</title></head> 4 | <body> 5 | <ol id="a"></ol> 6 | <ul> 7 | <li> 8 | <ul id="b"></ul> 9 | </li> 10 | </ul> 11 | </body> 12 | </html> 13 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1072528@1.html: -------------------------------------------------------------------------------- 1 | <!D y="" x=''''''''' > 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1078345.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #540045 2 | enclose-block-text: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1090318@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"> 2 | <HTML> 3 | <HEAD><title></title></HEAD> 4 | <FRAMESET> 5 | <FRAMESET> 6 | <NOFRAMES> 7 | <BODY> 8 | </BODY> 9 | <P> 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1098012@1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
    6 | 7 | 8 | <HR> 9 | </DD> 10 | </body> 11 | </html> 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1115094@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> 2 | <html> 3 | <head> 4 | <title></title> 5 | </head> 6 | <body> 7 | <p>xx<b><span> </span></b>yy</p> 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1145571@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 | <html> 3 | <head> 4 | <title>invalid name to id</title> 5 | </head> 6 | <body> 7 | <p> 8 | <a name="a b">a</a> 9 | </p> 10 | </body> 11 | </html> 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1145572@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" 2 | "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 3 | <html> 4 | <head> 5 | <title>name vs id in anchor elements</title> 6 | </head> 7 | <body> 8 | <p><a id="ab">a</a></p> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1207443.conf: -------------------------------------------------------------------------------- 1 | output-xhtml: yes 2 | tidy-mark: no 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1210752.conf: -------------------------------------------------------------------------------- 1 | output-encoding: raw 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1210752@1.html: -------------------------------------------------------------------------------- 1 | <p> 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1235296@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 | <html> 3 | <head> 4 | <title>1235296</title> 5 | </head> 6 | <body> 7 | <p>x<sub>a<sub>1</sub></sub></p> 8 | <p>x<sup>a<sup>1</sup></sup></p> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1241723.conf: -------------------------------------------------------------------------------- 1 | indent: auto 2 | char-encoding: latin1 3 | tidy-mark: no 4 | clean: yes 5 | indent-attributes: yes 6 | 7 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1266647.conf: -------------------------------------------------------------------------------- 1 | char-encoding: utf8 2 | tidy-mark: no 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1266647@1.html: -------------------------------------------------------------------------------- 1 | <!----【----> 2 | <!-- This is just padding: SourceForge dislikes files under 20 bytes long --> 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1286278.conf: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | drop-empty-paras: no 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1316307b@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 2 | <html> 3 | <head><title>1316307-2</title></head> 4 | <body> 5 | <table> 6 | <tr> 7 | <ul> 8 | <td> 9 | Cell Data 10 | </td> 11 | </ul> 12 | </tr> 13 | </table> 14 | </body> 15 | </html> 16 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1333579@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head><title>1333579</title></head> 3 | <body> 4 | <td>inferred table</td> 5 | <div style="text-indent: 3%"> 6 | <p>Paragraph Text nested in a DIV</p> 7 | </div> 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1398397@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <table> 3 | <ul> 4 | <tr> 5 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1407266.conf: -------------------------------------------------------------------------------- 1 | #Ÿ 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1407266@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head><title>1407266</title></head> 3 | <body></body> 4 | </html> 5 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1408034.conf: -------------------------------------------------------------------------------- 1 | tab-size:0 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1408034@1.html: -------------------------------------------------------------------------------- 1 | x xxx xx -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1410061a.conf: -------------------------------------------------------------------------------- 1 | decorate-inferred-ul: yes 2 | clean: yes -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1410061b.conf: -------------------------------------------------------------------------------- 1 | decorate-inferred-ul: yes 2 | clean: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1410061b@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>1410061 - issue 1 inferred ul</title> 4 | </head> 5 | <body> 6 | <b><font size="6">In bold</b> 7 | <li>Not in bold</li> 8 | <li>With font size 6</li> 9 | <li>But should NOT be indented</li> 10 | </body> 11 | </html> 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1410061c.conf: -------------------------------------------------------------------------------- 1 | clean: yes 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1410061c@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> 2 | <html> 3 | <head> 4 | <title>1410061 - issue 2 - inline propagation</title> 5 | </head> 6 | <body> 7 | <b><font size="6">In bold</b> 8 | <ul> 9 | <li>Not in bold</li> 10 | </ul> 11 | </body> 12 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1415137@1.html: -------------------------------------------------------------------------------- 1 | <frameset> 2 | <noframes /> 3 | </frameset> 4 | abc 5 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1423252.conf: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1423252@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 | <html> 3 | <head> 4 | <title>[1423252] missing text node, and font propagation</title> 5 | </head> 6 | <body> 7 | <font color="red">a 8 | <dl>b</dl> 9 | <dt>c 10 | </body> 11 | </html> 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1436578@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 | <html> 3 | <head> 4 | <title>1436578</title> 5 | </head> 6 | <body> 7 | 8 | <p class='MsoSignature' style='margin-top:5.0pt'></p> 9 | 10 | </body> 11 | </html> 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1445570@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> 2 | <html> 3 | <head> 4 | <title>1445570</title> 5 | </head> 6 | <body> 7 | <a href="Water lilies.jpg">This is a picture of 'Water Lilly'</a> 8 | <img src="Water lillies.jpg" alt=""> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1452744.conf: -------------------------------------------------------------------------------- 1 | accessibility-check: 3 2 | doctype: strict 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1452744@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" 2 | "http://www.w3.org/TR/html4/strict.dtd"> 3 | <html lang="en"> 4 | <head> 5 | <title>1452744</title> 6 | </head> 7 | <body> 8 | <h1>Test</h1> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1503897@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>1503897</title> 4 | </head> 5 | <body> 6 | <pre> 7 | PrintString("</TD><TR>\n"); 8 | </pre> 9 | <pre> 10 | PrintString("</TD><TR>\n"); 11 | </pre> 12 | </body> 13 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1590220a.conf: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1590220b.conf: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1603538a@1.html: -------------------------------------------------------------------------------- 1 | <html xmlns="http://www.w3.org/1999/xhtml"> 2 | <body> 3 | <ul> 4 | <li> 5 | <a href="/oldcrap/013747.html">1111</li> 6 | <hr> 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1603538b@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <table> 3 | <tr> 4 | <td>Norway</th> 5 | </tr> 6 | <tr> 7 | <td>Sweden</th> 8 | </tr> 9 | <tr> 10 | <td>Switzerland</th> 11 | </tr> 12 | <tr> 13 | <td>Turkey</th> 14 | </tr> 15 | </table> 16 | </html> 17 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1632218@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>1632218 - entity parsing</title> 4 | </head> 5 | 6 | <body> 7 | <a href="file://&#128:/foo">link</a> 8 | <a href="file://&#x128:/foo">link</a> 9 | <a href="file://&#X128:/foo">link</a> 10 | </body> 11 | </html> 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1632470@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <hr> 4 | <title>1632470</title> 5 | </head> 6 | <body> 7 | </body> 8 | </html> 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1642186b.conf: -------------------------------------------------------------------------------- 1 | // not really required since this is defaul 2 | skip-nested: yes 3 | indent: auto 4 | tidy-mark: no 5 | clean: yes 6 | logical-emphasis: yes 7 | indent-attributes: yes 8 | show-info: no 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1674502@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title></title> 4 | </head> 5 | <body> 6 | <?xml ?> 7 | <?xml ?> 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1707836@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head /> 3 | <body> 4 | 5 | <ol> 6 | <p /> 7 | <li /> 8 | <p /> 9 | <li /> 10 | <p /> 11 | </ol> 12 | 13 | </body> 14 | </html> 15 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1720953.conf: -------------------------------------------------------------------------------- 1 | sort-attributes: alpha 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1773932@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title></title> 4 | </head> 5 | <body> 6 | 7 | <font color="black"> 8 | <ol><li>Foo 9 | </li><li>Bar 10 | </li><li>Xyzzy</li></ol> 11 | 12 | </body> 13 | </html> 14 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1986717a.conf: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | anchor-as-name: no 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1986717b.conf: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | anchor-as-name: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1986717c.conf: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | anchor-as-name: no 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-1986717c@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> 2 | <html> 3 | <head> 4 | <title>1986717</title> 5 | </head> 6 | <body> 7 | <a name="a2"></a> 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-2046048.conf: -------------------------------------------------------------------------------- 1 | accessibility-check: 2 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-2085175.conf: -------------------------------------------------------------------------------- 1 | // Oct.2008 HTML Tidy configuration file for test 2085175 2 | indent: auto 3 | tidy-mark: no 4 | clean: yes 5 | bare: yes 6 | word-2000: yes 7 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-2705873a.conf: -------------------------------------------------------------------------------- 1 | accessibility-check: 2 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-2705873b.conf: -------------------------------------------------------------------------------- 1 | accessibility-check: 2 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-2709860.conf: -------------------------------------------------------------------------------- 1 | accessibility-check: 1 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427662@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[#427662] BLOCK/INLINE before TABLE parsed wrong</title> 4 | </head> 5 | <body> 6 | <table border="1" summary=""> 7 | <a href="111"><font size="+3"><b>Big and bold</b> Big</font></a> 8 | </table> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427664@1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-cases/case-427664@1.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427664b.conf: -------------------------------------------------------------------------------- 1 | // HTML Tidy configuration - 427664-1.conf - is utf-8 2 | indent: auto 3 | char-encoding: utf8 4 | tidy-mark: no 5 | clean: yes 6 | logical-emphasis: yes 7 | indent-attributes: yes 8 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427672@1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-cases/case-427672@1.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427675@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title></title> 4 | </head> 5 | <frameset> 6 | <frame name="name" src="one.html"> 7 | </frameset> 8 | <frame name="ignored-by-browsers" src="two.html"> 9 | This text belongs in a noframes element. 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427676@2.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title></title> 4 | </head> 5 | <body> 6 | <p>This is a <spanstyle="color:#FF0000">Red</span> <a href-"foo">link</a></p> 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427813@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[#427813] Missing = from attr value segfaults</title> 4 | </head> 5 | <body width"100%"> 6 | text 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427816@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[ #427816 ] Mismatched quotes for attr segfaults</title> 4 | </head> 5 | <body> 6 | <a href=mailto:"user@host">blah</a> 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427818@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> 2 | <html> 3 | <head> 4 | <title>[ #427818 ] Missing quotes cause segfaults</title> 5 | </head> 6 | <body> 7 | <a href="test.html>link</a> <a 8 | href="test.html">link</a> 9 | </body> 10 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427821.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427821 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427822@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[ #427822 ] PopInLine() doesn't check stack</title> 4 | </head> 5 | <body> 6 | <dl> 7 | <dd><i>abc</dd></i> 8 | </dl> 9 | </body> 10 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427825.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427825 2 | new-inline-tags: lm:xcode 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427825@1.html: -------------------------------------------------------------------------------- 1 | <!-- new-inline-tags: lm:xcode --> 2 | <html> 3 | <head> 4 | <title>Test user defined tags - bug #427825</title> 5 | </head> 6 | <body> 7 | <strong><lm:xcode>Test-1</lm:xcode>Test-3</strong> 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427826.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427826 2 | indent: auto 3 | char-encoding: latin1 4 | tidy-mark: no 5 | clean: yes 6 | logical-emphasis: yes 7 | indent-attributes: yes 8 | output-xhtml: yes 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427827@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[ #427827 ] Nested anchor elements allowed</title> 4 | </head> 5 | <body> 6 | <a href="1">link-1 <a href="2">link-2</a> 7 | plain</a> 8 | </body> 9 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427834@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC 2 | "-//W3C//DTD HTML 4.01//EN" 3 | "http://www.w3.org/TR/html4/strict.dtd"> 4 | <html> 5 | <head> 6 | <title>[ #427834 ] Warning given for newline in DOCTYPE</title> 7 | </head> 8 | <body> 9 | </body> 10 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427835.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427835 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427836@1.html: -------------------------------------------------------------------------------- 1 | <!-- [ #427836 ] OBJECT should be wrapped in BODY --> 2 | <object width=288 height=122 data="1.xml" 3 | type="text/xml"><img 4 | src="file://q:/css/source/intro/images/xml-example. 5 | gif"/></object> 6 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427837.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427837 2 | // add-xml-decl: yes 3 | input-xml: yes 4 | output-xml: yes 5 | char-encoding: latin1 6 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427837@0.xml: -------------------------------------------------------------------------------- 1 | <names> 2 | <name>Bj&#246;rn H&#246;hrmann</name> 3 | <name>Marc-Andr&#233; Lemburg</name> 4 | </names> 5 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427839.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427839 2 | output-xhtml: yes 3 | doctype: omit -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427839@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> 2 | <HTML> 3 | <HEAD> 4 | <TITLE>Test Input For Bug #427839</TITLE> 5 | </HEAD> 6 | <BODY> 7 | This is a test. Use "-asxhtml --doctype omit" on the command line. 8 | </BODY> 9 | </HTML> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427840@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <title>[ #427840 ] Span causes infinite loop</title> 3 | <body> 4 | <span class=<ArticleBody"> 5 | <p>Inside a span.</p> 6 | </span> 7 | </body> 8 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427845.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427845 2 | wrap: 60 -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427845@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"> 2 | <html> 3 | <head> 4 | <title>[ #427845 ] Doctypes are output on multiple lines</title> 5 | </head> 6 | <body> 7 | Use "--wrap 60" on the command line 8 | </body> 9 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-427846@1.html: -------------------------------------------------------------------------------- 1 | <HTML> 2 | <HEAD> 3 | <TITLE>Test Input For Bug #427846</TITLE> 4 | </HEAD> 5 | <BODY> 6 | <font size="+1"> 7 | <blockquote> 8 | text-one 9 | </blockquote> 10 | text-two 11 | </font> 12 | </BODY> 13 | </HTML> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-431716.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #431716 2 | split: yes -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-431721.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #431721 2 | indent: auto 3 | new-inline-tags: o:p 4 | char-encoding: latin1 5 | tidy-mark: no 6 | clean: yes 7 | logical-emphasis: yes 8 | word-2000: yes 9 | indent-attributes: yes 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-431721@1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-cases/case-431721@1.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-431736.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #431736 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-431736@1.html: -------------------------------------------------------------------------------- 1 | <?xml version="1.0"> 2 | <html xmlns="http://www.w3.org/1999/xhtml"> 3 | <head> 4 | <title>[#431736] Doctype decl added before XML decl</title> 5 | </head> 6 | <body> 7 | <p>Run tidy w/ -asxhtml or -asxml options...</p> 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-431739@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[#431739] Spaces carried into empty block tags</title> 4 | </head> 5 | <body> 6 | <font size="2"><font face="Arial">This is a test </font> 7 | <hr>Example 8 | </body> 9 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-431874@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <title>Test for bug #431874</title> 3 | <body> 4 | <a name="top"><a href="http://www.genuki.org.uk">Test for bug #431874</a></a> 5 | </body> 6 | </html> 7 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-431889.conf: -------------------------------------------------------------------------------- 1 | // Config file for bug [ #431889 ] Config file options w/"param" don't work 2 | doctype: "-//ACME//DTD HTML 3.14159//EN" 3 | alt-text: "Alternate" -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-432677.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #432677 2 | output-xml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-433012.conf: -------------------------------------------------------------------------------- 1 | indent: auto 2 | indent-attributes: yes 3 | tidy-mark: no 4 | clean: yes 5 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-433040@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 | <html> 3 | <head> 4 | <title>[ #433040 ] Anchor tag without attributes deleted</title> 5 | </head> 6 | <body> 7 | <a>Tidy strips Anchor tags when there are no attributes</a> 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-433604.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #433604 2 | input-xml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-433604@0.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0"?> 2 | <text>[ #433604 ] Tidy inserts &amp;nbsp; entity in -xml mode. 3 | Use -xml on command line. 4 | Test of &#160;</text> 5 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-433607.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #433607 2 | input-xml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-433607@0.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0"?> 2 | <text>[ #433607 ] No warning for omitted end tag with -xml. 3 | Use -xml on command line. 4 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-433656@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 | <html> 3 | <head> 4 | <title>[ #433656 ] Improve support for PHP</title> 5 | </head> 6 | <body> 7 | (some text) 8 | <?php mkfooter(); ?> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-434100.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #434100 2 | input-xml: yes -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-434940.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #434940 2 | show-body-only: yes -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-434940@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> 2 | <html> 3 | <head> 4 | <title>[ #434940 ] --show-body-only: print only body contents</title> 5 | </head> 6 | <body> 7 | Use "--show-body-only yes" on the command line 8 | </body> 9 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-435919@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[ #435919 ] Nested &lt;q&gt;&lt;/q&gt;'s not handled correctly</title> 4 | </head> 5 | <body> 6 | <q>So then I said to him, <q>don't go there.</q></q> 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-435920@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[ #435920 ] Space inserted before &lt;/td&gt; causes probs</title> 4 | </head> 5 | <body> 6 | bla 7 | <table summary="none"> 8 | <tr> 9 | <td><font>&nbsp;</font></td> 10 | </tr> 11 | </table> 12 | </body> 13 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-435922@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[ #435922 ] Missing &lt;form&gt; around &lt;input&gt; no warning</title> 4 | </head> 5 | <body> 6 | <input type='text' name='test'> 7 | <br> 8 | <input type='submit'> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-435923@0.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 | <html> 3 | <head> 4 | <title>[ #435923 ] Preserve case of attribute names</title> 5 | </head> 6 | <body> 7 | <TextArea>Blah Blah Blah</TextArea> 8 | 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-437468@0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-cases/case-437468@0.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-438650@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[ #438650 ] Newline in URL attr value becomes space</title> 4 | </head> 5 | <body> 6 | <a href="http://www.someverylongurl 7 | .com">This is a test</a> 8 | </body> 9 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-438658@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[ #438658 ] Missing / in title endtag makes 2 titles<title> 4 | </head> 5 | <body> 6 | Test 7 | </body> 8 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-438954.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #438954 2 | omit-optional-tags: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-438956@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[ #438956 ] Bad head-endtag reported incorrectly</title> 4 | </</head> 5 | <body> 6 | Test 7 | </body> 8 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-441508@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <title>[ #441508 ] parser.c: BadForm() function broken</title> 3 | <body> 4 | <table align="right" border="0" 5 | cellspacing="0" cellpadding="0" 6 | align="left" bgcolor="#000000"> 7 | <td>Test</td> 8 | </table> 9 | </body> 10 | </html 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-445394@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[ #445394 ] Improve handling of missing trailing "</title> 4 | </head> 5 | <body> 6 | <a href="test.html>link</a> <a href="test.html">link</a> 7 | </body> 8 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-445557.conf: -------------------------------------------------------------------------------- 1 | // HTML Tidy configuration - 20171117 2 | indent: auto 3 | char-encoding: latin1 4 | tidy-mark: no 5 | clean: yes 6 | logical-emphasis: yes 7 | indent-attributes: yes 8 | numeric-entities: yes 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-445557@1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-cases/case-445557@1.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-449348.conf: -------------------------------------------------------------------------------- 1 | output-xhtml: yes 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-470663.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #470663 2 | word-2000: yes 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-473490.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #473490 2 | tidy-mark: no 3 | wrap: 0 4 | output-xhtml: yes 5 | doctype: auto 6 | quote-nbsp: yes 7 | uppercase-tags: yes 8 | quote-ampersand: yes 9 | add-xml-space: no 10 | show-warnings:no 11 | quiet: yes 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-473490@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> 2 | <HTML> 3 | <HEAD> 4 | <TITLE>[ #473490 ] DOCTYPE for Proprietary HTML to XHTML bad</TITLE> 5 | </HEAD> 6 | <BODY> 7 | <nolayer> 8 | <p>Test</p> 9 | </nolayer> 10 | </BODY> 11 | </HTML> 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-480701.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #480701 2 | input-xml: yes 3 | output-xhtml: yes 4 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-503436.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #503436 2 | input-xml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-503436@1.xml: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>Testcase #503436</title> 4 | </head> 5 | <body> 6 | <img src="image.gif" alt="first" alt="second" /> 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-511243.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #511243 2 | char-encoding: utf8 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-511679@1.html: -------------------------------------------------------------------------------- 1 | <title>[ 511679 ] Block level elements in a &lt;pre&gt; section</title> 2 | <table summary="No end tag for PRE"> 3 | <tr> 4 | <td><pre><span class="foo">foo</span></td> 5 | </tr> 6 | </table> 7 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-533233.conf: -------------------------------------------------------------------------------- 1 | output-xhtml: yes 2 | indent: auto 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-540571.conf: -------------------------------------------------------------------------------- 1 | // Config for bug #540571 Inconsistent behaviour with span inline element 2 | output-xhtml: yes 3 | wrap: 255 4 | clean: no 5 | indent: auto 6 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-543262.conf: -------------------------------------------------------------------------------- 1 | doctype: omit 2 | output-xhtml: yes 3 | char-encoding: latin1 4 | numeric-entities: yes 5 | quiet: yes 6 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-545772.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #547057 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-590716.conf: -------------------------------------------------------------------------------- 1 | preserve-entities: yes 2 | tidy-mark: no 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-616744.conf: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | new-pre-tags: programlisting 3 | new-inline-tags: literal 4 | indent: no 5 | indent-spaces: 0 6 | wrap: 999999 7 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-620531@1.html: -------------------------------------------------------------------------------- 1 | <title>[ 620531 ] br in pre must not cause line break</title> 2 | <p class=foo>foo</p> 3 | <pre>bar<br>baz</pre> 4 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-629885@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[629885] - Unbalanced quote in CSS Scrambles Doc</title> 4 | <style type="text/css"> 5 | ' 6 | </style> 7 | </head> 8 | <body> 9 | <h1>Test</h1> 10 | </body> 11 | </html> 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-640473@1.html: -------------------------------------------------------------------------------- 1 | <title>[ 640473 ] new-empty-tags doesn't work, breaks doc</title> 2 | <body> 3 | <foo>Foo <bar>bar</bar> foo foo<zippo /> foo</foo> 4 | <p>This is a test</p> 5 | <zippo> 6 | <baz> 7 | This is a pre-formatted Baz! 8 | </baz> 9 | </body> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-640474.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #640474 2 | // add-xml-decl: yes 3 | input-xml: yes 4 | output-xml: yes 5 | char-encoding: latin1 6 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-640474@0.xml: -------------------------------------------------------------------------------- 1 | <names> 2 | <name>Bj&#246;rn H&#246;hrmann</name> 3 | <name>Marc-Andr&#233; Lemburg</name> 4 | </names> 5 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-646946.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #640474 2 | // add-xml-decl: yes 3 | input-xml: yes 4 | output-xml: yes 5 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-647255.conf: -------------------------------------------------------------------------------- 1 | char-encoding: utf16le 2 | newline: LF 3 | output-xhtml: yes 4 | indent: auto 5 | indent-attributes: yes 6 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-647255@1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-cases/case-647255@1.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-647900.conf: -------------------------------------------------------------------------------- 1 | // HTML Tidy configuration file created by TidyGUI 2 | indent: auto 3 | tidy-mark: no 4 | clean: yes 5 | logical-emphasis: yes 6 | indent-attributes: yes 7 | force-output: yes 8 | 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-649812.conf: -------------------------------------------------------------------------------- 1 | char-encoding: utf16le 2 | newline: CR 3 | output-xhtml: yes 4 | indent: auto 5 | indent-attributes: yes 6 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-649812@0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-cases/case-649812@0.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-655338@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 2 | <?xml version="1.0" encoding="iso-8859-1"?> 3 | <html lang=en xml:lang="en"> 4 | <head> 5 | <title>[ 655338 ] Tidy leaves XML decl in wrong place</title> 6 | </head> 7 | <p>foo 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-656889.conf: -------------------------------------------------------------------------------- 1 | indent: auto 2 | wrap: 55555 3 | alt-text: pic 4 | tidy-mark: no 5 | clean: yes 6 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-658230.conf: -------------------------------------------------------------------------------- 1 | char-encoding: big5 2 | doctype: strict 3 | tidy-mark: no 4 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-658230@1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-cases/case-658230@1.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-660397.conf: -------------------------------------------------------------------------------- 1 | char-encoding: ibm858 2 | indent: auto 3 | tidy-mark: no 4 | output-xhtml: yes 5 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-660397@1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-cases/case-660397@1.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-676156.conf: -------------------------------------------------------------------------------- 1 | char-encoding: utf8 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-676156@1.html: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | <!-- [ 676156 ] tidy --input-encoding is broken. 4 | When run with file I/O and -utf8, foo gets truncated to "fo" 5 | --> 6 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-678268.conf: -------------------------------------------------------------------------------- 1 | indent: auto 2 | char-encoding: latin1 3 | tidy-mark: no 4 | clean: yes 5 | logical-emphasis: yes 6 | indent-attributes: yes 7 | output-xhtml: yes 8 | 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-688746.conf: -------------------------------------------------------------------------------- 1 | char-encoding: utf8 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-695408.conf: -------------------------------------------------------------------------------- 1 | indent: auto 2 | indent-attributes: yes 3 | tidy-mark: no 4 | clean: yes 5 | drop-proprietary-attributes: no 6 | 7 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-696799@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[ 696799 ] Crash: &lt;script language=&quot;&quot;&gt;</title> 4 | </head> 5 | <body> 6 | <script language=""> 7 | <!-- 8 | document.write("<p>foo!<\/p>"); 9 | //--> 10 | </script> 11 | </body> 12 | </html> 13 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-765852@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <title>#765852 Empty tag striping</title> 3 | <p>Text following <i>italics<B> </B></I>without a blank after the i end tag is not cleaned up correctly (the bold blank is eliminated).</p> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-795643a.conf: -------------------------------------------------------------------------------- 1 | show-body-only: auto 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-795643a@1.html: -------------------------------------------------------------------------------- 1 | <p>Hi</p> 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-795643b.conf: -------------------------------------------------------------------------------- 1 | show-body-only: auto 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-795643b@1.html: -------------------------------------------------------------------------------- 1 | <body><p>Hi</p> 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-836462c@1.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 | <html><head><title>test</title></head> 3 | <body> 4 | <ol> 5 | <!-- comment --> 6 | <br /> 7 | </ol> 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/case-837023@1.html: -------------------------------------------------------------------------------- 1 | <html> 2 | <head> 3 | <title>[ 837023 ] segfault on doctype-like element</title> 4 | </head> 5 | <body> 6 | 7 | Just text. 8 | 9 | <!done> 10 | 11 | </body> 12 | </html> -------------------------------------------------------------------------------- /regression_testing/cases/legacy-cases/config_default.conf: -------------------------------------------------------------------------------- 1 | // HTML Tidy configuration - 20151217 2 | indent: auto 3 | char-encoding: latin1 4 | tidy-mark: no 5 | clean: yes 6 | logical-emphasis: yes 7 | indent-attributes: yes 8 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1004051.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> 2 | <html> 3 | <head> 4 | <title>font</title> 5 | <style type="text/css"> 6 | span.c1 {font-size: 120%} 7 | </style> 8 | </head> 9 | <body> 10 | <span class="c1">yy</span> 11 | </body> 12 | </html> 13 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1014993.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 | <html> 3 | <head> 4 | <title>php-like tag</title> 5 | </head> 6 | <body> 7 | <table summary=""> 8 | <tr> 9 | <td></td> 10 | </tr> 11 | </table> 12 | </body> 13 | </html> 14 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1050673.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <title></title> 5 | </head> 6 | <body> 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1052758.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-expects/case-1052758.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1056023.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <title></title> 5 | </head> 6 | <body> 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1062345.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 | <html> 3 | <head> 4 | <title></title> 5 | <style type="text/css"> 6 | br.c1 {&#TA; 2} 7 | </style> 8 | </head> 9 | <body> 10 | <br class="c1"> 11 | </body> 12 | </html> 13 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1062511.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <title></title> 5 | <base> 6 | </head> 7 | <body> 8 | <hr> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1062661.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <title>Google</title> 5 | </head> 6 | <body> 7 | <a id="1a" 8 | href="/imghp?hl=en&amp;tab=wi">Images</a> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1067112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-expects/case-1067112.txt -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1069549.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 | <html> 3 | <head> 4 | <title>test NestedList()</title> 5 | </head> 6 | <body> 7 | <ul> 8 | <li> 9 | <p>q</p> 10 | <ol id="b"></ol> 11 | </li> 12 | </ul> 13 | </body> 14 | </html> 15 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1069553.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 | <html> 3 | <head> 4 | <title>test NestedList()</title> 5 | </head> 6 | <body> 7 | <ol id="a"></ol> 8 | <ul id="b"></ul> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1072528.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <title></title> 5 | </head> 6 | <body> 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1098012.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 | <html> 3 | <head> 4 | <title></title> 5 | </head> 6 | <body> 7 | <dl> 8 | <dd></dd> 9 | </dl> 10 | <hr> 11 | </body> 12 | </html> 13 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1115094.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 2 | <html> 3 | <head> 4 | <title></title> 5 | </head> 6 | <body> 7 | <p>xx yy</p> 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1145571.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 | <html> 3 | <head> 4 | <title>invalid name to id</title> 5 | </head> 6 | <body> 7 | <p><a name="a b">a</a></p> 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1210752.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html xmlns="http://www.w3.org/1999/xhtml"> 3 | <head> 4 | <title></title> 5 | </head> 6 | <body> 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1235296.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 | <html> 3 | <head> 4 | <title>1235296</title> 5 | </head> 6 | <body> 7 | <p>x<sub>a<sub>1</sub></sub></p> 8 | <p>x<sup>a<sup>1</sup></sup></p> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1266647.html: -------------------------------------------------------------------------------- 1 | <!----【----> 2 | <!-- This is just padding: SourceForge dislikes files under 20 bytes long --> 3 | <!DOCTYPE html> 4 | <html> 5 | <head> 6 | <title></title> 7 | </head> 8 | <body> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1316307b.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 2 | <html> 3 | <head> 4 | <title>1316307-2</title> 5 | </head> 6 | <body> 7 | <table> 8 | <tr> 9 | <td>Cell Data</td> 10 | </tr> 11 | </table> 12 | </body> 13 | </html> 14 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1359292.html: -------------------------------------------------------------------------------- 1 | <?xml version="1.0"?> 2 | <!DOCTYPE html> 3 | <html xmlns="http://www.w3.org/1999/xhtml"> 4 | <head> 5 | <title>1359292 - Word 2000</title> 6 | </head> 7 | <body> 8 | <p></p> 9 | </body> 10 | </html> 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1398397.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <title></title> 5 | </head> 6 | <body> 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1407266.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <title>1407266</title> 5 | </head> 6 | <body> 7 | </body> 8 | </html> 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1408034.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <title></title> 5 | </head> 6 | <body> 7 | x xxx xx 8 | </body> 9 | </html> 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1415137.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <title></title> 5 | </head> 6 | <frameset> 7 | <noframes> 8 | <body> 9 | abc 10 | </body> 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1436578.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1436578 5 | 8 | 9 | 10 |

    11 | 12 | 13 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1452744.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 1452744 6 | 7 | 8 |

    Test

    9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1503897.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1503897 5 | \n"); 6 |
     7 |  PrintString("
    \n"); 8 | 9 |
    10 |  PrintString("
    11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1603538a.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
      8 |
    • 9 | 1111 10 |
    • 11 |
      12 |
    13 | 14 | 15 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1632470.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
    8 | 1632470 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1642186b.txt: -------------------------------------------------------------------------------- 1 | No warnings or errors were found. 2 | 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1674502.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1707836.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1986717a.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 1986717 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-1986717c.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1986717 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-2085175.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 2085175 5 | 6 | 7 |

    some text [2]

    8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-427664.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [#427664] Missing attr values cause NULL segfault 5 | 6 | 7 | text 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-427672.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [#427672] Non-std attrs w/multibyte names segfault 5 | 6 | 7 | text 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-427813.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [#427813] Missing = from attr value segfaults 5 | 6 | 7 | text 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-427816.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #427816 ] Mismatched quotes for attr segfaults 5 | 6 | 7 | blah 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-427818.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #427818 ] Missing quotes cause segfaults 5 | 6 | 7 | link 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-427822.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #427822 ] PopInLine() doesn't check stack 5 | 6 | 7 |
    8 |
    abc
    9 |
    10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-427825.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Test user defined tags - bug #427825 6 | 7 | 8 | Test-1Test-3 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-427827.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #427827 ] Nested anchor elements allowed 5 | 6 | 7 | link-1link-2 plain 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-427834.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | [ #427834 ] Warning given for newline in DOCTYPE 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-427837.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-expects/case-427837.xml -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-427839.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test Input For Bug #427839 4 | 5 | 6 | This is a test. Use "-asxhtml --doctype omit" on the command line. 7 | 8 | 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-427840.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #427840 ] Span causes infinite loop 5 | 6 | 7 |

    Inside a span.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-431736.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | [#431736] Doctype decl added before XML decl 6 | 7 | 8 |

    Run tidy w/ -asxhtml or -asxml options...

    9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-431874.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Test for bug #431874 5 | 6 | 7 | Test for 9 | bug #431874 10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-433359.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #433359 ] Empty iframe elements trimmed 5 | 6 | 7 | This is a test 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-433604.xml: -------------------------------------------------------------------------------- 1 | 2 | [ #433604 ] Tidy inserts &nbsp; entity in -xml mode. Use 3 | -xml on command line. Test of   4 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-433607.xml: -------------------------------------------------------------------------------- 1 | 2 | [ #433607 ] No warning for omitted end tag with -xml. Use 3 | -xml on command line. 4 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-433656.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #433656 ] Improve support for PHP 5 | 6 | 7 | (some text) 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-434940.html: -------------------------------------------------------------------------------- 1 | Use "--show-body-only yes" on the command line 2 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-435919.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #435919 ] Nested <q></q>'s not handled 5 | correctly 6 | 7 | 8 | So then I said to him, don't go there. 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-435922.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #435922 ] Missing <form> around <input> no 5 | warning 6 | 7 | 8 |
    10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-435923.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #435923 ] Preserve case of attribute names 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-437468.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-expects/case-437468.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-438650.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #438650 ] Newline in URL attr value becomes 5 | space 6 | 7 | 8 | This is a test 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-438658.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #438658 ] Missing / in title endtag makes 2 5 | titles 6 | 7 | 8 | Test 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-438954.html: -------------------------------------------------------------------------------- 1 | 2 | [ #438954 ] Body tag w/attributes omitted w/hide-end 3 | 4 | Use "--hide-endtags yes" on command line 5 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-438956.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #438956 ] Bad head-endtag reported incorrectly 5 | 6 | 7 | </</head> Test 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-445394.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #445394 ] Improve handling of missing trailing " 5 | 6 | 7 | link 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-445557.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-expects/case-445557.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-470663.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Test Input For Bug #470663 5 | 6 | 7 |

    Body doesn't matter. Problem occurs parsing <head> 8 | element.

    9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-473490.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | [ #473490 ] DOCTYPE for Proprietary HTML to XHTML bad 4 | 5 | 6 | 7 |

    Test

    8 |
    9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-473490.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-expects/case-473490.txt -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-503436.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Testcase #503436 4 | 5 | 6 | second 7 | 8 | 9 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-543262.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-expects/case-543262.txt -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-586555.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-expects/case-586555.txt -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-620531.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ 620531 ] br in pre must not cause line break 5 | 6 | 7 |

    foo

    8 |
    bar
    baz
    9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-629885.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [629885] - Unbalanced quote in CSS Scrambles Doc 5 | 8 | 9 | 10 |

    Test

    11 | 12 | 13 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-640474.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-expects/case-640474.xml -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-647255.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-expects/case-647255.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-649812.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-expects/case-649812.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-658230.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-expects/case-658230.html -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-676156.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | foo bar 10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-795643a.html: -------------------------------------------------------------------------------- 1 |

    Hi

    2 | 3 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-795643b.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

    Hi

    8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-837023.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ 837023 ] segfault on doctype-like element 5 | 6 | 7 | Just text. 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/legacy-expects/case-978947.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/legacy-expects/case-978947.html -------------------------------------------------------------------------------- /regression_testing/cases/special-cases/case-evil.conf: -------------------------------------------------------------------------------- 1 | # Config for test case. 2 | tidy-mark: no 3 | indent: yes 4 | wrap: 999 5 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-1003994.conf: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-1003994@2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-1004008.conf: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-1004008@1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | " 4 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-1030944.conf: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | output-xml: yes 3 | char-encoding: latin1 4 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-1030944@0.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-1365706.conf: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | output-xml: yes 3 | indent: auto 4 | wrap: 0 5 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-1448730.conf: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | output-xml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-1448730@0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | here is some bold text and here's a customtag 4 | content who's preceding space will be stripped. 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-1510101.conf: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | output-xml: yes 3 | indent: auto 4 | wrap: 0 5 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-1573338.conf: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | output-xml: yes 3 | indent: auto 4 | literal-attributes: yes 5 | indent-attributes: yes 6 | wrap: 78 7 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-1573338@0.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-427837.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427837 2 | // add-xml-decl: yes 3 | input-xml: yes 4 | output-xml: yes 5 | char-encoding: latin1 6 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-427837@0.xml: -------------------------------------------------------------------------------- 1 | 2 | Björn Höhrmann 3 | Marc-André Lemburg 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-431956.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #431956 2 | input-xml: yes 3 | output-xml: yes 4 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-432677.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #432677 2 | output-xml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-433604.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #433604 2 | input-xml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-433604@0.xml: -------------------------------------------------------------------------------- 1 | 2 | [ #433604 ] Tidy inserts &nbsp; entity in -xml mode. 3 | Use -xml on command line. 4 | Test of   5 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-433607.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #433607 2 | input-xml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-433607@0.xml: -------------------------------------------------------------------------------- 1 | 2 | [ #433607 ] No warning for omitted end tag with -xml. 3 | Use -xml on command line. 4 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-433670.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #433670 2 | input-xml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-433670@0.xml: -------------------------------------------------------------------------------- 1 | 2 | [ #433670 ] &apos not recognized as valid XML entity. 3 | Use -xml on command line. 4 | Test of ' 5 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-434100.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #434100 2 | input-xml: yes -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-473490.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #473490 2 | tidy-mark: no 3 | wrap: 0 4 | output-xhtml: yes 5 | doctype: auto 6 | quote-nbsp: yes 7 | uppercase-tags: yes 8 | quote-ampersand: yes 9 | add-xml-space: no 10 | show-warnings:no 11 | quiet: yes 12 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-473490@1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #473490 ] DOCTYPE for Proprietary HTML to XHTML bad 5 | 6 | 7 | 8 |

    Test

    9 |
    10 | 11 | 12 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-480406.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #480406 2 | input-xml: yes 3 | output-xml: yes 4 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-480406@0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-480701.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #480701 2 | input-xml: yes 3 | output-xhtml: yes 4 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-500236.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #500236 2 | word-2000: yes 3 | input-xml: yes 4 | output-xml: yes 5 | 6 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-503436.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #503436 2 | input-xml: yes 3 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-503436@1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Testcase #503436 4 | 5 | 6 | first 7 | 8 | 9 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-537604.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #537604 2 | input-xml: yes 3 | clean: no 4 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-537604@0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | this is a test of ©. &, <, >, ', " must be recognized. 6 | 7 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-540045.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #540045 2 | wrap: 64 3 | indent: no 4 | indent-spaces: 4 5 | add-xml-decl: yes 6 | #output-xhtml: yes 7 | break-before-br: yes 8 | clean: yes 9 | logical-emphasis: yes 10 | enclose-text: yes 11 | enclose-block-text: yes 12 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-542029.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #542029 2 | add-xml-decl: yes 3 | output-xml: yes 4 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-542029@1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ 542029 ] PPrintXmlDecl reads outside array range 5 | 6 | 7 | Test 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-616744.conf: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | new-pre-tags: programlisting 3 | new-inline-tags: literal 4 | indent: no 5 | indent-spaces: 0 6 | wrap: 999999 7 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-634889@1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | [ 634889 ] Problem with <o:p> ms word tag 4 | 5 | 6 |

    Probably OK, now that ParseTagNames() is fixed.

    7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-640474.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #640474 2 | // add-xml-decl: yes 3 | input-xml: yes 4 | output-xml: yes 5 | char-encoding: latin1 6 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-640474@0.xml: -------------------------------------------------------------------------------- 1 | 2 | Björn Höhrmann 3 | Marc-André Lemburg 4 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-646946.conf: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #640474 2 | // add-xml-decl: yes 3 | input-xml: yes 4 | output-xml: yes 5 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/case-646946@0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-cases/config_default.conf: -------------------------------------------------------------------------------- 1 | // HTML Tidy configuration - 20151217 2 | indent: auto 3 | char-encoding: latin1 4 | tidy-mark: no 5 | clean: yes 6 | logical-emphasis: yes 7 | indent-attributes: yes 8 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-1004008.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-1030944.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-1448730.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | here is some 4 | boldtext and here's a 5 | customtag contentwho's preceding space will 6 | be stripped. 7 | 8 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-1573338.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-427837.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/xml-expects/case-427837.xml -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-433604.xml: -------------------------------------------------------------------------------- 1 | 2 | [ #433604 ] Tidy inserts &nbsp; entity in -xml mode. Use 3 | -xml on command line. Test of   4 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-433607.xml: -------------------------------------------------------------------------------- 1 | 2 | [ #433607 ] No warning for omitted end tag with -xml. Use 3 | -xml on command line. 4 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-433670.xml: -------------------------------------------------------------------------------- 1 | 2 | [ #433670 ] &apos not recognized as valid XML entity. Use 3 | -xml on command line. Test of ' 4 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-473490.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | [ #473490 ] DOCTYPE for Proprietary HTML to XHTML bad 4 | 5 | 6 | 7 |

    Test

    8 |
    9 | 10 | 11 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-473490.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/xml-expects/case-473490.txt -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-480406.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-503436.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Testcase #503436 4 | 5 | 6 | second 7 | 8 | 9 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-537604.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | this is a test of ©. &, <, >, ', " must be 5 | recognized. 6 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-542029.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | [ 542029 ] PPrintXmlDecl reads outside array range 6 | 7 | Test 8 | 9 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-586555.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/xml-expects/case-586555.txt -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-634889.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | [ 634889 ] Problem with <o:p> ms word tag 4 | 5 | 6 |

    Probably OK, now that ParseTagNames() is fixed.

    7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-640474.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htacg/tidy-html5/d08ddc2860aa95ba8e301343a30837f157977cba/regression_testing/cases/xml-expects/case-640474.xml -------------------------------------------------------------------------------- /regression_testing/cases/xml-expects/case-646946.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 5.9.20 2 | 2022.01.25 3 | --------------------------------------------------------------------------------