/g, "")
+ .replace(/<\/code>[ \r\n]*<\/pre>/g, " ");
+ }, 0)
+ }
+ // childrenAvailableCallback() {
+ // let converted = marked.parse(this.innerHTML);
+ // this.innerHTML = converted
+ // .replace(/<(\/?)ul>/g, "<$1bx-unordered-list>")
+ // .replace(/<(\/?)li>/g, "<$1bx-list-item>")
+ // .replace(/[ \r\n]*/g, "")
+ // .replace(/<\/code>[ \r\n]*<\/pre>/g, " ");
+ // }
+ }
+);
+
+customElements.define(
+ "code-snippet",
+ class extends HTMLBaseElement {
+ childrenAvailableCallback() {
+ let oldCode = this.innerHTML;
+ this.innerHTML = "";
+ // const shadowRoot = this.attachShadow({mode: 'open'});
+ const shadowRoot = this;
+ let snip = document.createElement("cds-code-snippet");
+ snip.setAttribute("type", "multi");
+ snip.innerHTML = oldCode.replace(/ ruleInfo.msgArgs[matchedNum]);
+ document.querySelector("#ruleMessage").innerHTML = ruleMessage.replace(/&/g, "&").replace(//g, ">")
+ }
+ setTimeout(() => {
+ if (ruleInfo.snippet) {
+ let snip = ruleInfo.snippet;
+ snip = snip.replace(/( [a-zA-Z-]+="[^"]*")/g, "\n $1");
+ let snipElem = document.createElement("code-snippet");
+ for (let line of snip.split("\n")) {
+ snipElem.appendChild(document.createTextNode(line+"\n"));
+ }
+ let locSnippet = document.querySelector("#locSnippet");
+ locSnippet.innerHTML = `Element location
`;
+ locSnippet.appendChild(snipElem);
+ }
+ }, 0);
+ if (ruleInfo.value) {
+ let value = ruleInfo.value;
+ const val = valueMap[value[0]][value[1]];
+ let icon = "";
+ if (val === "Violation") icon = ``;
+ if (val === "Needs review") icon = ``;
+ if (val === "Recommendation") icon = ``;
+ let level = document.querySelector("#locLevel");
+ let parent = level.parentElement;
+ level = parent.removeChild(level);
+ parent.insertBefore(level, parent.firstElementChild);
+ document.querySelector("#locLevel").innerHTML = `${val}`;
+ }
+ if (RULE_ID) {
+ document.querySelector("#ruleInfo").innerHTML = `Rule ID: ${RULE_ID}${ruleInfo.reasonId ? `
Reason ID: ${ruleInfo.reasonId}
` : ""}`;
+ }
+ }
+}
+
+if ("onhashchange" in window) {// does the browser support the hashchange event?
+ window.onhashchange = function () {
+ let ruleInfo = JSON.parse(decodeURIComponent(window.location.hash.substring(1)));
+ updateWithRuleInfo(ruleInfo);
+ }
+}
+
+window.addEventListener("DOMContentLoaded", (evt) => {
+ let groupMsg = typeof RULE_MESSAGES !== "undefined" && (RULE_MESSAGES["en-US"].group || RULE_MESSAGES["en-US"][0]) || "";
+ groupMsg = groupMsg.replace(/&/g, "&").replace(//g, ">");
+ document.querySelector("#groupLabel").innerHTML = groupMsg;
+ let ruleInfo;
+ if (window.location.search && window.location.search.length > 0) {
+ const searchParams = new URLSearchParams(window.location.search);
+ ruleInfo = JSON.parse(decodeURIComponent(searchParams.get("issue")));
+ } else if (window.location.hash && window.location.hash.length > 0) {
+ ruleInfo = JSON.parse(decodeURIComponent(window.location.hash.substring(1)));
+ }
+ updateWithRuleInfo(ruleInfo);
+
+ if (isDarkMode()) {
+ document.body.setAttribute("class", "dds-theme-zone-g90");
+ } else {
+ document.body.setAttribute("class", "dds-theme-zone-g10");
+ }
+
+})
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/common/rules.css b/rule-server/src/static/archives/2026.07.13/doc/common/rules.css
new file mode 100644
index 000000000..d74ec347e
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/common/rules.css
@@ -0,0 +1,29 @@
+/******************************************************************************
+ Copyright:: 2022- IBM, Inc
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ http://www.apache.org/licenses/LICENSE-2.0
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ *****************************************************************************/
+@import url('https://unpkg.com/carbon-components@10.58.15/css/carbon-components.min.css');
+
+html, body, .toolHelp .bx--row:nth-child(2) {
+ height: 100%;
+}
+
+body {
+ font-family: 'IBM Plex Sans', sans-serif;
+ padding: 1rem;
+}
+
+h2 {
+ margin-top: 1rem;
+ font-size: 16px;
+ line-height: 24px;
+ font-weight: 600;
+}
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/IBMA_Color_Contrast_WCAG2AA_PV.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/IBMA_Color_Contrast_WCAG2AA_PV.html
new file mode 100644
index 000000000..26752ccd5
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/IBMA_Color_Contrast_WCAG2AA_PV.html
@@ -0,0 +1,90 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/Rpt_Aria_ArticleRoleLabel_Implicit.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/Rpt_Aria_ArticleRoleLabel_Implicit.html
new file mode 100644
index 000000000..6268a62d3
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/Rpt_Aria_ArticleRoleLabel_Implicit.html
@@ -0,0 +1,95 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/Rpt_Aria_GroupRoleLabel_Implicit.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/Rpt_Aria_GroupRoleLabel_Implicit.html
new file mode 100644
index 000000000..c0ce87a3f
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/Rpt_Aria_GroupRoleLabel_Implicit.html
@@ -0,0 +1,107 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/a_target_warning.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/a_target_warning.html
new file mode 100644
index 000000000..401cc783e
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/a_target_warning.html
@@ -0,0 +1,91 @@
+
+
+
+ a_target_warning - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/a_text_purpose.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/a_text_purpose.html
new file mode 100644
index 000000000..91669b4be
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/a_text_purpose.html
@@ -0,0 +1,108 @@
+
+
+
+ a_text_purpose - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/applet_alt_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/applet_alt_exists.html
new file mode 100644
index 000000000..c3d9286cb
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/applet_alt_exists.html
@@ -0,0 +1,103 @@
+
+
+
+ applet_alt_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/application_content_accessible.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/application_content_accessible.html
new file mode 100644
index 000000000..a9677444a
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/application_content_accessible.html
@@ -0,0 +1,97 @@
+
+
+
+ application_content_accessible - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/area_alt_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/area_alt_exists.html
new file mode 100644
index 000000000..37ae2cbbf
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/area_alt_exists.html
@@ -0,0 +1,101 @@
+
+
+
+ area_alt_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_accessiblename_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_accessiblename_exists.html
new file mode 100644
index 000000000..91335faae
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_accessiblename_exists.html
@@ -0,0 +1,112 @@
+
+
+
+ aria_accessiblename_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_activedescendant_tabindex_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_activedescendant_tabindex_valid.html
new file mode 100644
index 000000000..2bee6008d
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_activedescendant_tabindex_valid.html
@@ -0,0 +1,107 @@
+
+
+
+ aria_activedescendant_tabindex_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_activedescendant_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_activedescendant_valid.html
new file mode 100644
index 000000000..532651e4f
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_activedescendant_valid.html
@@ -0,0 +1,103 @@
+
+
+
+ aria_activedescendant_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_application_label_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_application_label_unique.html
new file mode 100644
index 000000000..67d10ec6d
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_application_label_unique.html
@@ -0,0 +1,103 @@
+
+
+
+ aria_application_label_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_application_labelled.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_application_labelled.html
new file mode 100644
index 000000000..171f230f3
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_application_labelled.html
@@ -0,0 +1,100 @@
+
+
+
+ aria_application_labelled - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_article_label_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_article_label_unique.html
new file mode 100644
index 000000000..bf8a3d43d
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_article_label_unique.html
@@ -0,0 +1,104 @@
+
+
+
+ aria_article_label_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_allowed.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_allowed.html
new file mode 100644
index 000000000..79912adaf
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_allowed.html
@@ -0,0 +1,97 @@
+
+
+
+ aria_attribute_allowed - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_conflict.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_conflict.html
new file mode 100644
index 000000000..092e293ab
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_conflict.html
@@ -0,0 +1,109 @@
+
+
+
+ aria_attribute_conflict - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_deprecated.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_deprecated.html
new file mode 100644
index 000000000..5887d4224
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_deprecated.html
@@ -0,0 +1,103 @@
+
+
+
+ aria_attribute_deprecated - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_exists.html
new file mode 100644
index 000000000..f2b4e6257
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_exists.html
@@ -0,0 +1,93 @@
+
+
+
+ aria_attribute_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_redundant.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_redundant.html
new file mode 100644
index 000000000..226b11a32
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_redundant.html
@@ -0,0 +1,98 @@
+
+
+
+ aria_attribute_redundant - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_required.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_required.html
new file mode 100644
index 000000000..377b82900
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_required.html
@@ -0,0 +1,106 @@
+
+
+
+ aria_attribute_required - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_valid.html
new file mode 100644
index 000000000..7cd3f832f
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_valid.html
@@ -0,0 +1,102 @@
+
+
+
+ aria_attribute_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_value_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_value_valid.html
new file mode 100644
index 000000000..8fd74f9af
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_attribute_value_valid.html
@@ -0,0 +1,94 @@
+
+
+
+ aria_attribute_value_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_banner_label_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_banner_label_unique.html
new file mode 100644
index 000000000..3a484f85d
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_banner_label_unique.html
@@ -0,0 +1,104 @@
+
+
+
+ aria_banner_label_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_banner_single.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_banner_single.html
new file mode 100644
index 000000000..bb68f82c8
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_banner_single.html
@@ -0,0 +1,98 @@
+
+
+
+ aria_banner_single - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_child_tabbable.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_child_tabbable.html
new file mode 100644
index 000000000..2a0c5e3e4
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_child_tabbable.html
@@ -0,0 +1,98 @@
+
+
+
+ aria_child_tabbable - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_child_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_child_valid.html
new file mode 100644
index 000000000..48b81fffa
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_child_valid.html
@@ -0,0 +1,121 @@
+
+
+
+ aria_child_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_complementary_label_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_complementary_label_unique.html
new file mode 100644
index 000000000..87070a0bb
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_complementary_label_unique.html
@@ -0,0 +1,103 @@
+
+
+
+ aria_complementary_label_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_complementary_label_visible.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_complementary_label_visible.html
new file mode 100644
index 000000000..73bd67c37
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_complementary_label_visible.html
@@ -0,0 +1,100 @@
+
+
+
+ aria_complementary_label_visible - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_complementary_labelled.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_complementary_labelled.html
new file mode 100644
index 000000000..cd1390031
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_complementary_labelled.html
@@ -0,0 +1,100 @@
+
+
+
+ aria_complementary_labelled - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_content_in_landmark.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_content_in_landmark.html
new file mode 100644
index 000000000..0374df352
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_content_in_landmark.html
@@ -0,0 +1,91 @@
+
+
+
+ aria_content_in_landmark - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_contentinfo_label_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_contentinfo_label_unique.html
new file mode 100644
index 000000000..5341e0311
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_contentinfo_label_unique.html
@@ -0,0 +1,104 @@
+
+
+
+ aria_contentinfo_label_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_contentinfo_misuse.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_contentinfo_misuse.html
new file mode 100644
index 000000000..ba6718bf6
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_contentinfo_misuse.html
@@ -0,0 +1,105 @@
+
+
+
+ aria_contentinfo_misuse - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_contentinfo_single.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_contentinfo_single.html
new file mode 100644
index 000000000..6aeb1034a
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_contentinfo_single.html
@@ -0,0 +1,100 @@
+
+
+
+ aria_contentinfo_single - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_descendant_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_descendant_valid.html
new file mode 100644
index 000000000..097af8984
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_descendant_valid.html
@@ -0,0 +1,101 @@
+
+
+
+ aria_descendant_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_document_label_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_document_label_unique.html
new file mode 100644
index 000000000..0722eb544
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_document_label_unique.html
@@ -0,0 +1,91 @@
+
+
+
+ aria_document_label_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_eventhandler_role_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_eventhandler_role_valid.html
new file mode 100644
index 000000000..7ee73775f
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_eventhandler_role_valid.html
@@ -0,0 +1,92 @@
+
+
+
+ aria_eventhandler_role_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_form_label_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_form_label_unique.html
new file mode 100644
index 000000000..f607ba24c
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_form_label_unique.html
@@ -0,0 +1,112 @@
+
+
+
+ aria_form_label_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_graphic_labelled.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_graphic_labelled.html
new file mode 100644
index 000000000..b7351e445
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_graphic_labelled.html
@@ -0,0 +1,99 @@
+
+
+
+ aria_graphic_labelled - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_hidden_nontabbable.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_hidden_nontabbable.html
new file mode 100644
index 000000000..400c4fb13
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_hidden_nontabbable.html
@@ -0,0 +1,113 @@
+
+
+
+ aria_hidden_nontabbable - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_id_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_id_unique.html
new file mode 100644
index 000000000..b297b7d37
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_id_unique.html
@@ -0,0 +1,98 @@
+
+
+
+ aria_id_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_img_labelled.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_img_labelled.html
new file mode 100644
index 000000000..fa71286d5
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_img_labelled.html
@@ -0,0 +1,100 @@
+
+
+
+ aria_img_labelled - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_keyboard_handler_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_keyboard_handler_exists.html
new file mode 100644
index 000000000..e3a218788
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_keyboard_handler_exists.html
@@ -0,0 +1,103 @@
+
+
+
+ aria_keyboard_handler_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_landmark_name_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_landmark_name_unique.html
new file mode 100644
index 000000000..653a54a1a
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_landmark_name_unique.html
@@ -0,0 +1,110 @@
+
+
+
+ aria_landmark_name_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_main_label_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_main_label_unique.html
new file mode 100644
index 000000000..2bb38d716
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_main_label_unique.html
@@ -0,0 +1,111 @@
+
+
+
+ aria_main_label_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_main_label_visible.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_main_label_visible.html
new file mode 100644
index 000000000..53a3d8383
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_main_label_visible.html
@@ -0,0 +1,102 @@
+
+
+
+ aria_main_label_visible - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_navigation_label_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_navigation_label_unique.html
new file mode 100644
index 000000000..237c3a36d
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_navigation_label_unique.html
@@ -0,0 +1,106 @@
+
+
+
+ aria_navigation_label_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_parent_required.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_parent_required.html
new file mode 100644
index 000000000..dc9f9721b
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_parent_required.html
@@ -0,0 +1,98 @@
+
+
+
+ aria_parent_required - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_region_label_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_region_label_unique.html
new file mode 100644
index 000000000..37b85a946
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_region_label_unique.html
@@ -0,0 +1,102 @@
+
+
+
+ aria_region_label_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_region_labelled.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_region_labelled.html
new file mode 100644
index 000000000..c30526a1d
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_region_labelled.html
@@ -0,0 +1,102 @@
+
+
+
+ aria_region_labelled - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_role_allowed.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_role_allowed.html
new file mode 100644
index 000000000..0509df7a1
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_role_allowed.html
@@ -0,0 +1,105 @@
+
+
+
+ aria_role_allowed - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_role_redundant.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_role_redundant.html
new file mode 100644
index 000000000..b17cb4d39
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_role_redundant.html
@@ -0,0 +1,107 @@
+
+
+
+ aria_role_redundant - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_role_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_role_valid.html
new file mode 100644
index 000000000..31ad6442a
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_role_valid.html
@@ -0,0 +1,90 @@
+
+
+
+ aria_role_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_search_label_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_search_label_unique.html
new file mode 100644
index 000000000..02979c267
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_search_label_unique.html
@@ -0,0 +1,100 @@
+
+
+
+ aria_search_label_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_toolbar_label_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_toolbar_label_unique.html
new file mode 100644
index 000000000..af0b1f253
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_toolbar_label_unique.html
@@ -0,0 +1,102 @@
+
+
+
+ aria_toolbar_label_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_widget_labelled.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_widget_labelled.html
new file mode 100644
index 000000000..7a051f8b6
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/aria_widget_labelled.html
@@ -0,0 +1,102 @@
+
+
+
+ aria_widget_labelled - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/asciiart_alt_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/asciiart_alt_exists.html
new file mode 100644
index 000000000..c7f4f07db
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/asciiart_alt_exists.html
@@ -0,0 +1,91 @@
+
+
+
+ asciiart_alt_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/blink_css_review.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/blink_css_review.html
new file mode 100644
index 000000000..2cc08e8e1
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/blink_css_review.html
@@ -0,0 +1,94 @@
+
+
+
+ blink_css_review - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/blink_elem_deprecated.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/blink_elem_deprecated.html
new file mode 100644
index 000000000..cdcdc906b
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/blink_elem_deprecated.html
@@ -0,0 +1,94 @@
+
+
+
+ blink_elem_deprecated - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/blockquote_cite_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/blockquote_cite_exists.html
new file mode 100644
index 000000000..a583f938a
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/blockquote_cite_exists.html
@@ -0,0 +1,91 @@
+
+
+
+ blockquote_cite_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/canvas_content_described.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/canvas_content_described.html
new file mode 100644
index 000000000..df4b31924
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/canvas_content_described.html
@@ -0,0 +1,115 @@
+
+
+
+ canvas_content_described - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/caption_track_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/caption_track_exists.html
new file mode 100644
index 000000000..108a60628
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/caption_track_exists.html
@@ -0,0 +1,100 @@
+
+
+
+ caption_track_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_active_descendant.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_active_descendant.html
new file mode 100644
index 000000000..2d5d32179
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_active_descendant.html
@@ -0,0 +1,109 @@
+
+
+
+ combobox_active_descendant - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_autocomplete_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_autocomplete_valid.html
new file mode 100644
index 000000000..23e35fa1e
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_autocomplete_valid.html
@@ -0,0 +1,136 @@
+
+
+
+ combobox_autocomplete_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_design_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_design_valid.html
new file mode 100644
index 000000000..e8dd1934a
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_design_valid.html
@@ -0,0 +1,93 @@
+
+
+
+ combobox_design_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_focusable_elements.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_focusable_elements.html
new file mode 100644
index 000000000..bc52cb3c0
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_focusable_elements.html
@@ -0,0 +1,92 @@
+
+
+
+ combobox_focusable_elements - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_haspopup_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_haspopup_valid.html
new file mode 100644
index 000000000..dc7ade53a
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_haspopup_valid.html
@@ -0,0 +1,107 @@
+
+
+
+ combobox_haspopup_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_popup_reference.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_popup_reference.html
new file mode 100644
index 000000000..6e177bda2
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/combobox_popup_reference.html
@@ -0,0 +1,109 @@
+
+
+
+ combobox_popup_reference - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/dir_attribute_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/dir_attribute_valid.html
new file mode 100644
index 000000000..0d0c62e22
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/dir_attribute_valid.html
@@ -0,0 +1,89 @@
+
+
+
+ dir_attribute_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/download_keyboard_controllable.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/download_keyboard_controllable.html
new file mode 100644
index 000000000..ab67dc93d
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/download_keyboard_controllable.html
@@ -0,0 +1,92 @@
+
+
+
+ download_keyboard_controllable - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/draggable_alternative_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/draggable_alternative_exists.html
new file mode 100644
index 000000000..86df2dd70
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/draggable_alternative_exists.html
@@ -0,0 +1,105 @@
+
+
+
+ draggable_alternative_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/element_accesskey_labelled.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_accesskey_labelled.html
new file mode 100644
index 000000000..f73590225
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_accesskey_labelled.html
@@ -0,0 +1,97 @@
+
+
+
+ element_accesskey_labelled - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/element_accesskey_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_accesskey_unique.html
new file mode 100644
index 000000000..a47bd9c16
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_accesskey_unique.html
@@ -0,0 +1,100 @@
+
+
+
+ element_accesskey_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/element_attribute_deprecated.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_attribute_deprecated.html
new file mode 100644
index 000000000..7c456299c
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_attribute_deprecated.html
@@ -0,0 +1,103 @@
+
+
+
+ element_attribute_deprecated - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/element_id_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_id_unique.html
new file mode 100644
index 000000000..419e18bf9
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_id_unique.html
@@ -0,0 +1,102 @@
+
+
+
+ element_id_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/element_lang_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_lang_valid.html
new file mode 100644
index 000000000..a58981480
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_lang_valid.html
@@ -0,0 +1,108 @@
+
+
+
+ element_lang_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/element_mouseevent_keyboard.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_mouseevent_keyboard.html
new file mode 100644
index 000000000..35f557732
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_mouseevent_keyboard.html
@@ -0,0 +1,102 @@
+
+
+
+ element_mouseevent_keyboard - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/element_orientation_unlocked.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_orientation_unlocked.html
new file mode 100644
index 000000000..e31347201
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_orientation_unlocked.html
@@ -0,0 +1,112 @@
+
+
+
+ element_orientation_unlocked - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/element_scrollable_tabbable.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_scrollable_tabbable.html
new file mode 100644
index 000000000..6cadc4110
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_scrollable_tabbable.html
@@ -0,0 +1,115 @@
+
+
+
+ element_scrollable_tabbable - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/element_tabbable_role_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_tabbable_role_valid.html
new file mode 100644
index 000000000..13c9394b3
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_tabbable_role_valid.html
@@ -0,0 +1,136 @@
+
+
+
+ element_tabbable_role_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/element_tabbable_unobscured.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_tabbable_unobscured.html
new file mode 100644
index 000000000..06dd1fee0
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_tabbable_unobscured.html
@@ -0,0 +1,103 @@
+
+
+
+ element_tabbable_unobscured - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/element_tabbable_visible.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_tabbable_visible.html
new file mode 100644
index 000000000..260f1eee1
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/element_tabbable_visible.html
@@ -0,0 +1,124 @@
+
+
+
+ element_tabbable_visible - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/embed_alt_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/embed_alt_exists.html
new file mode 100644
index 000000000..64eb4a692
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/embed_alt_exists.html
@@ -0,0 +1,95 @@
+
+
+
+ embed_alt_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/emoticons_alt_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/emoticons_alt_exists.html
new file mode 100644
index 000000000..648457296
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/emoticons_alt_exists.html
@@ -0,0 +1,91 @@
+
+
+
+ emoticons_alt_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/error_message_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/error_message_exists.html
new file mode 100644
index 000000000..157fb4474
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/error_message_exists.html
@@ -0,0 +1,105 @@
+
+
+
+ error_message_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/fieldset_label_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/fieldset_label_valid.html
new file mode 100644
index 000000000..5ea22a1e3
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/fieldset_label_valid.html
@@ -0,0 +1,106 @@
+
+
+
+ fieldset_label_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/fieldset_legend_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/fieldset_legend_valid.html
new file mode 100644
index 000000000..ca83ceae1
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/fieldset_legend_valid.html
@@ -0,0 +1,101 @@
+
+
+
+ fieldset_legend_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/figure_label_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/figure_label_exists.html
new file mode 100644
index 000000000..1322013a4
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/figure_label_exists.html
@@ -0,0 +1,104 @@
+
+
+
+ figure_label_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/form_font_color.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/form_font_color.html
new file mode 100644
index 000000000..071711881
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/form_font_color.html
@@ -0,0 +1,90 @@
+
+
+
+ form_font_color - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/form_interaction_review.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/form_interaction_review.html
new file mode 100644
index 000000000..551294685
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/form_interaction_review.html
@@ -0,0 +1,92 @@
+
+
+
+ form_interaction_review - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/form_label_unique.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/form_label_unique.html
new file mode 100644
index 000000000..ad8738f1c
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/form_label_unique.html
@@ -0,0 +1,90 @@
+
+
+
+ form_label_unique - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/form_submit_button_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/form_submit_button_exists.html
new file mode 100644
index 000000000..7f44da6ff
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/form_submit_button_exists.html
@@ -0,0 +1,92 @@
+
+
+
+ form_submit_button_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/form_submit_review.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/form_submit_review.html
new file mode 100644
index 000000000..f5d87ee31
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/form_submit_review.html
@@ -0,0 +1,93 @@
+
+
+
+ form_submit_review - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/frame_src_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/frame_src_valid.html
new file mode 100644
index 000000000..73c1f1883
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/frame_src_valid.html
@@ -0,0 +1,95 @@
+
+
+
+ frame_src_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/frame_title_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/frame_title_exists.html
new file mode 100644
index 000000000..fe0bb7a13
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/frame_title_exists.html
@@ -0,0 +1,99 @@
+
+
+
+ frame_title_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/heading_content_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/heading_content_exists.html
new file mode 100644
index 000000000..411805214
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/heading_content_exists.html
@@ -0,0 +1,89 @@
+
+
+
+ heading_content_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/heading_markup_misuse.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/heading_markup_misuse.html
new file mode 100644
index 000000000..6a17c06a1
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/heading_markup_misuse.html
@@ -0,0 +1,92 @@
+
+
+
+ heading_markup_misuse - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/html_lang_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/html_lang_exists.html
new file mode 100644
index 000000000..0f7c9a4e0
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/html_lang_exists.html
@@ -0,0 +1,92 @@
+
+
+
+ html_lang_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/html_lang_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/html_lang_valid.html
new file mode 100644
index 000000000..3a7da2fb6
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/html_lang_valid.html
@@ -0,0 +1,111 @@
+
+
+
+ html_lang_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/html_skipnav_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/html_skipnav_exists.html
new file mode 100644
index 000000000..c39face20
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/html_skipnav_exists.html
@@ -0,0 +1,91 @@
+
+
+
+ html_skipnav_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/iframe_interactive_tabbable.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/iframe_interactive_tabbable.html
new file mode 100644
index 000000000..d38a34621
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/iframe_interactive_tabbable.html
@@ -0,0 +1,105 @@
+
+
+
+ iframe_interactive_tabbable - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/imagebutton_alt_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/imagebutton_alt_exists.html
new file mode 100644
index 000000000..5b560098e
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/imagebutton_alt_exists.html
@@ -0,0 +1,90 @@
+
+
+
+ imagebutton_alt_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/imagemap_alt_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/imagemap_alt_exists.html
new file mode 100644
index 000000000..4e9123086
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/imagemap_alt_exists.html
@@ -0,0 +1,101 @@
+
+
+
+ imagemap_alt_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_background.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_background.html
new file mode 100644
index 000000000..79f373086
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_background.html
@@ -0,0 +1,90 @@
+
+
+
+ img_alt_background - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_decorative.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_decorative.html
new file mode 100644
index 000000000..3ce9d4ead
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_decorative.html
@@ -0,0 +1,93 @@
+
+
+
+ img_alt_decorative - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_misuse.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_misuse.html
new file mode 100644
index 000000000..e66601164
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_misuse.html
@@ -0,0 +1,91 @@
+
+
+
+ img_alt_misuse - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_null.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_null.html
new file mode 100644
index 000000000..6fd478c3b
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_null.html
@@ -0,0 +1,94 @@
+
+
+
+ img_alt_null - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_redundant.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_redundant.html
new file mode 100644
index 000000000..ce20e884e
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_redundant.html
@@ -0,0 +1,94 @@
+
+
+
+ img_alt_redundant - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_valid.html
new file mode 100644
index 000000000..e8a17581d
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_alt_valid.html
@@ -0,0 +1,99 @@
+
+
+
+ img_alt_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/img_ismap_misuse.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_ismap_misuse.html
new file mode 100644
index 000000000..4e10850a2
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_ismap_misuse.html
@@ -0,0 +1,91 @@
+
+
+
+ img_ismap_misuse - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/img_longdesc_misuse.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_longdesc_misuse.html
new file mode 100644
index 000000000..67798f054
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/img_longdesc_misuse.html
@@ -0,0 +1,98 @@
+
+
+
+ img_longdesc_misuse - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/input_autocomplete_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_autocomplete_valid.html
new file mode 100644
index 000000000..fc7a23d5a
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_autocomplete_valid.html
@@ -0,0 +1,121 @@
+
+
+
+ input_autocomplete_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/input_checkboxes_grouped.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_checkboxes_grouped.html
new file mode 100644
index 000000000..0380a2aa0
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_checkboxes_grouped.html
@@ -0,0 +1,90 @@
+
+
+
+ input_checkboxes_grouped - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/input_fields_grouped.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_fields_grouped.html
new file mode 100644
index 000000000..8acfd687e
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_fields_grouped.html
@@ -0,0 +1,104 @@
+
+
+
+ input_fields_grouped - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/input_haspopup_conflict.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_haspopup_conflict.html
new file mode 100644
index 000000000..5b71da3aa
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_haspopup_conflict.html
@@ -0,0 +1,120 @@
+
+
+
+ input_haspopup_conflict - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/input_label_after.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_label_after.html
new file mode 100644
index 000000000..a9cae3354
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_label_after.html
@@ -0,0 +1,98 @@
+
+
+
+ input_label_after - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/input_label_before.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_label_before.html
new file mode 100644
index 000000000..296dddd18
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_label_before.html
@@ -0,0 +1,99 @@
+
+
+
+ input_label_before - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/input_label_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_label_exists.html
new file mode 100644
index 000000000..4b214ff47
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_label_exists.html
@@ -0,0 +1,94 @@
+
+
+
+ input_label_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/input_label_visible.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_label_visible.html
new file mode 100644
index 000000000..add9d07ac
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_label_visible.html
@@ -0,0 +1,128 @@
+
+
+
+ input_label_visible - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/input_onchange_review.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_onchange_review.html
new file mode 100644
index 000000000..f4f544104
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_onchange_review.html
@@ -0,0 +1,103 @@
+
+
+
+ input_onchange_review - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/input_placeholder_label_visible.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_placeholder_label_visible.html
new file mode 100644
index 000000000..ad52cc5f2
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/input_placeholder_label_visible.html
@@ -0,0 +1,107 @@
+
+
+
+ input_placeholder_label_visible - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/label_content_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/label_content_exists.html
new file mode 100644
index 000000000..128523c7e
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/label_content_exists.html
@@ -0,0 +1,90 @@
+
+
+
+ label_content_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/label_name_visible.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/label_name_visible.html
new file mode 100644
index 000000000..265d1ebe3
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/label_name_visible.html
@@ -0,0 +1,97 @@
+
+
+
+ label_name_visible - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/label_ref_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/label_ref_valid.html
new file mode 100644
index 000000000..b3b72276c
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/label_ref_valid.html
@@ -0,0 +1,97 @@
+
+
+
+ label_ref_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/list_children_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/list_children_valid.html
new file mode 100644
index 000000000..27f0732c8
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/list_children_valid.html
@@ -0,0 +1,111 @@
+
+
+
+ list_children_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/list_markup_review.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/list_markup_review.html
new file mode 100644
index 000000000..55ba2a2b7
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/list_markup_review.html
@@ -0,0 +1,91 @@
+
+
+
+ list_markup_review - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/list_structure_proper.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/list_structure_proper.html
new file mode 100644
index 000000000..3904f03b4
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/list_structure_proper.html
@@ -0,0 +1,89 @@
+
+
+
+ list_structure_proper - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/marquee_elem_avoid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/marquee_elem_avoid.html
new file mode 100644
index 000000000..b1b7173bd
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/marquee_elem_avoid.html
@@ -0,0 +1,94 @@
+
+
+
+ marquee_elem_avoid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/media_alt_brief.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_alt_brief.html
new file mode 100644
index 000000000..eff8ac5a0
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_alt_brief.html
@@ -0,0 +1,111 @@
+
+
+
+ media_alt_brief - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/media_alt_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_alt_exists.html
new file mode 100644
index 000000000..b132cba78
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_alt_exists.html
@@ -0,0 +1,95 @@
+
+
+
+ media_alt_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/media_audio_transcribed.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_audio_transcribed.html
new file mode 100644
index 000000000..b17a87a74
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_audio_transcribed.html
@@ -0,0 +1,97 @@
+
+
+
+ media_audio_transcribed - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/media_autostart_controllable.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_autostart_controllable.html
new file mode 100644
index 000000000..3286a581a
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_autostart_controllable.html
@@ -0,0 +1,93 @@
+
+
+
+ media_autostart_controllable - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/media_keyboard_controllable.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_keyboard_controllable.html
new file mode 100644
index 000000000..fed317f4a
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_keyboard_controllable.html
@@ -0,0 +1,111 @@
+
+
+
+ media_keyboard_controllable - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/media_live_captioned.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_live_captioned.html
new file mode 100644
index 000000000..62c0a2411
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_live_captioned.html
@@ -0,0 +1,91 @@
+
+
+
+ media_live_captioned - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/media_track_available.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_track_available.html
new file mode 100644
index 000000000..d2986ba11
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/media_track_available.html
@@ -0,0 +1,96 @@
+
+
+
+ media_track_available - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/meta_redirect_optional.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/meta_redirect_optional.html
new file mode 100644
index 000000000..480bffc3b
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/meta_redirect_optional.html
@@ -0,0 +1,94 @@
+
+
+
+ meta_redirect_optional - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/meta_refresh_delay.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/meta_refresh_delay.html
new file mode 100644
index 000000000..be777ca26
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/meta_refresh_delay.html
@@ -0,0 +1,95 @@
+
+
+
+ meta_refresh_delay - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/meta_viewport_zoomable.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/meta_viewport_zoomable.html
new file mode 100644
index 000000000..1841c2ce8
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/meta_viewport_zoomable.html
@@ -0,0 +1,98 @@
+
+
+
+ meta_viewport_zoomable - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/noembed_content_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/noembed_content_exists.html
new file mode 100644
index 000000000..dbec45fac
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/noembed_content_exists.html
@@ -0,0 +1,100 @@
+
+
+
+ noembed_content_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/object_text_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/object_text_exists.html
new file mode 100644
index 000000000..99d9a4eab
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/object_text_exists.html
@@ -0,0 +1,101 @@
+
+
+
+ object_text_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/page_title_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/page_title_exists.html
new file mode 100644
index 000000000..e8e7a05db
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/page_title_exists.html
@@ -0,0 +1,103 @@
+
+
+
+ page_title_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/page_title_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/page_title_valid.html
new file mode 100644
index 000000000..c558a524d
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/page_title_valid.html
@@ -0,0 +1,105 @@
+
+
+
+ page_title_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/script_focus_blur_review.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/script_focus_blur_review.html
new file mode 100644
index 000000000..5bf2a1b50
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/script_focus_blur_review.html
@@ -0,0 +1,96 @@
+
+
+
+ script_focus_blur_review - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/script_onclick_avoid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/script_onclick_avoid.html
new file mode 100644
index 000000000..adc8057f8
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/script_onclick_avoid.html
@@ -0,0 +1,92 @@
+
+
+
+ script_onclick_avoid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/script_onclick_misuse.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/script_onclick_misuse.html
new file mode 100644
index 000000000..1054a86dc
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/script_onclick_misuse.html
@@ -0,0 +1,92 @@
+
+
+
+ script_onclick_misuse - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/script_select_review.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/script_select_review.html
new file mode 100644
index 000000000..d5a32f1cf
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/script_select_review.html
@@ -0,0 +1,97 @@
+
+
+
+ script_select_review - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/select_options_grouped.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/select_options_grouped.html
new file mode 100644
index 000000000..055daa7fe
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/select_options_grouped.html
@@ -0,0 +1,90 @@
+
+
+
+ select_options_grouped - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/skip_main_described.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/skip_main_described.html
new file mode 100644
index 000000000..9e1fd3d48
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/skip_main_described.html
@@ -0,0 +1,100 @@
+
+
+
+ skip_main_described - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/skip_main_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/skip_main_exists.html
new file mode 100644
index 000000000..489966282
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/skip_main_exists.html
@@ -0,0 +1,103 @@
+
+
+
+ skip_main_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/style_background_decorative.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_background_decorative.html
new file mode 100644
index 000000000..d10e6c9e2
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_background_decorative.html
@@ -0,0 +1,93 @@
+
+
+
+ style_background_decorative - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/style_before_after_review.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_before_after_review.html
new file mode 100644
index 000000000..d8b93d13f
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_before_after_review.html
@@ -0,0 +1,95 @@
+
+
+
+ style_before_after_review - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/style_color_misuse.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_color_misuse.html
new file mode 100644
index 000000000..0db3f77df
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_color_misuse.html
@@ -0,0 +1,89 @@
+
+
+
+ style_color_misuse - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/style_focus_visible.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_focus_visible.html
new file mode 100644
index 000000000..c3524f860
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_focus_visible.html
@@ -0,0 +1,97 @@
+
+
+
+ style_focus_visible - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/style_highcontrast_visible.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_highcontrast_visible.html
new file mode 100644
index 000000000..f50b54b71
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_highcontrast_visible.html
@@ -0,0 +1,100 @@
+
+
+
+ style_highcontrast_visible - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/style_hover_persistent.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_hover_persistent.html
new file mode 100644
index 000000000..9b7cb2b4e
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_hover_persistent.html
@@ -0,0 +1,118 @@
+
+
+
+ style_hover_persistent - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/style_viewport_resizable.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_viewport_resizable.html
new file mode 100644
index 000000000..72117898a
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/style_viewport_resizable.html
@@ -0,0 +1,93 @@
+
+
+
+ style_viewport_resizable - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/svg_graphics_labelled.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/svg_graphics_labelled.html
new file mode 100644
index 000000000..7afea1f95
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/svg_graphics_labelled.html
@@ -0,0 +1,127 @@
+
+
+
+ svg_graphics_labelled - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/table_aria_descendants.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_aria_descendants.html
new file mode 100644
index 000000000..cb8751c31
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_aria_descendants.html
@@ -0,0 +1,110 @@
+
+
+
+ table_aria_descendants - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/table_caption_empty.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_caption_empty.html
new file mode 100644
index 000000000..713b2cf85
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_caption_empty.html
@@ -0,0 +1,101 @@
+
+
+
+ table_caption_empty - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/table_caption_nested.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_caption_nested.html
new file mode 100644
index 000000000..70478360b
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_caption_nested.html
@@ -0,0 +1,98 @@
+
+
+
+ table_caption_nested - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/table_headers_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_headers_exists.html
new file mode 100644
index 000000000..d9c4e39d5
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_headers_exists.html
@@ -0,0 +1,93 @@
+
+
+
+ table_headers_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/table_headers_ref_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_headers_ref_valid.html
new file mode 100644
index 000000000..e0b6c59ef
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_headers_ref_valid.html
@@ -0,0 +1,91 @@
+
+
+
+ table_headers_ref_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/table_headers_related.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_headers_related.html
new file mode 100644
index 000000000..012da9f9f
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_headers_related.html
@@ -0,0 +1,91 @@
+
+
+
+ table_headers_related - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/table_layout_linearized.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_layout_linearized.html
new file mode 100644
index 000000000..e3d73e95b
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_layout_linearized.html
@@ -0,0 +1,92 @@
+
+
+
+ table_layout_linearized - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/table_scope_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_scope_valid.html
new file mode 100644
index 000000000..8d857bb37
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_scope_valid.html
@@ -0,0 +1,93 @@
+
+
+
+ table_scope_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/table_structure_misuse.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_structure_misuse.html
new file mode 100644
index 000000000..9e8ed1a47
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_structure_misuse.html
@@ -0,0 +1,91 @@
+
+
+
+ table_structure_misuse - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/table_summary_redundant.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_summary_redundant.html
new file mode 100644
index 000000000..996fd2293
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/table_summary_redundant.html
@@ -0,0 +1,101 @@
+
+
+
+ table_summary_redundant - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/target_spacing_sufficient.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/target_spacing_sufficient.html
new file mode 100644
index 000000000..4bc998691
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/target_spacing_sufficient.html
@@ -0,0 +1,108 @@
+
+
+
+ target_spacing_sufficient - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/text_block_heading.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/text_block_heading.html
new file mode 100644
index 000000000..0cbce0583
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/text_block_heading.html
@@ -0,0 +1,92 @@
+
+
+
+ text_block_heading - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/text_contrast_sufficient.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/text_contrast_sufficient.html
new file mode 100644
index 000000000..d28530a22
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/text_contrast_sufficient.html
@@ -0,0 +1,92 @@
+
+
+
+ text_contrast_sufficient - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/text_quoted_correctly.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/text_quoted_correctly.html
new file mode 100644
index 000000000..2e998e14f
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/text_quoted_correctly.html
@@ -0,0 +1,106 @@
+
+
+
+ text_quoted_correctly - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/text_sensory_misuse.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/text_sensory_misuse.html
new file mode 100644
index 000000000..5ad0f3cd1
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/text_sensory_misuse.html
@@ -0,0 +1,96 @@
+
+
+
+ text_sensory_misuse - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/text_spacing_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/text_spacing_valid.html
new file mode 100644
index 000000000..8cb7ed469
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/text_spacing_valid.html
@@ -0,0 +1,103 @@
+
+
+
+ text_spacing_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/text_whitespace_valid.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/text_whitespace_valid.html
new file mode 100644
index 000000000..a3ffc456d
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/text_whitespace_valid.html
@@ -0,0 +1,93 @@
+
+
+
+ text_whitespace_valid - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/widget_tabbable_exists.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/widget_tabbable_exists.html
new file mode 100644
index 000000000..6008a6134
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/widget_tabbable_exists.html
@@ -0,0 +1,98 @@
+
+
+
+ widget_tabbable_exists - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/en-US/widget_tabbable_single.html b/rule-server/src/static/archives/2026.07.13/doc/en-US/widget_tabbable_single.html
new file mode 100644
index 000000000..52987aa4c
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/en-US/widget_tabbable_single.html
@@ -0,0 +1,96 @@
+
+
+
+ widget_tabbable_single - Accessibility Checker Help
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rule-server/src/static/archives/2026.07.13/doc/rules.csv b/rule-server/src/static/archives/2026.07.13/doc/rules.csv
new file mode 100644
index 000000000..4f189025e
--- /dev/null
+++ b/rule-server/src/static/archives/2026.07.13/doc/rules.csv
@@ -0,0 +1,434 @@
+Rule ID, Reason Code, Rule message, Reason message, Violation Level, Toolkit Level, WCAG Requirements, ACT mapping
+"applet_alt_exists","Pass_0","