From 8fc1863a1de51fd51b7d8d20209a34375292f07f Mon Sep 17 00:00:00 2001 From: Charles LaPierre Date: Thu, 9 Jan 2025 10:22:17 -0800 Subject: [PATCH] fixes #564 Checking features instead of access modes for non visual content #564 --- .../2.0/draft/techniques/epub-metadata/index.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/a11y-meta-display-guide/2.0/draft/techniques/epub-metadata/index.html b/a11y-meta-display-guide/2.0/draft/techniques/epub-metadata/index.html index 70402ba..374fd07 100755 --- a/a11y-meta-display-guide/2.0/draft/techniques/epub-metadata/index.html +++ b/a11y-meta-display-guide/2.0/draft/techniques/epub-metadata/index.html @@ -288,14 +288,13 @@

Variables setup

  • LET all_necessary_content_textual be the result of calling check for node on package_document, /package/metadata/meta[@property="schema:accessModeSufficient" and normalize-space()="textual"].
  • - LET non_textual_content_images be the result of calling check for node on - package_document, /package/metadata/meta[@property="schema:accessMode" and
    normalize-space() = ("chartOnVisual", "chemOnVisual", "diagramOnVisual", "mathOnVisual", "musicOnVisual", "textOnVisual")]
    . + LET non_textual_content_images be the result of calling check for node on package_document, /package/metadata/meta[@property="schema:accessMode" and normalize-space() = ("chartOnVisual", "chemOnVisual", "diagramOnVisual", "mathOnVisual", "musicOnVisual", "textOnVisual")].
  • - LET textual_alternative_images be the result of calling check for node on package_document, /package/metadata/meta[@property="schema:accessibilityFeature" and
    (normalize-space()="longDescription" or normalize-space()="alternativeText" or normalize-space()="describedMath")]
    . + LET textual_alternative_images be the result of calling check for node on package_document, /package/metadata/meta[@property="schema:accessibilityFeature" and normalize-space()=("longDescription", "alternativeText","describedMath")].
  • - +

    Instructions