# Logotypes Test Orca The results of the experiment on the screen readers Orca (within ArchLinux) with [the test page](https://yoksel.github.io/ally-for-logo/) by @yoksel in a Firefox. Abbreviations: - **Text** — reading of the text from the `
`-element. - **“Image”** — pronunciation of the word “Image”. ## Hidden text ### Hidden text with font-size ```html ``` | Text | “Image” | | ---- | ------- | | ✔ | ✖ | ### Hidden text with text-indent ```html ``` | Text | “Image” | | ---- | ------- | | ✔ | ✖ | ### Hidden text with text-indent + role img ```html ``` **The element is missing entirely!** | Text | “Image” | | ---- | ------- | | ✖ | ✖ | ### Hidden text with text-indent + role img + aria ```html ``` | Text | “Image” | | ---- | ------- | | ✔ | ✔ | ### Hidden text with visually-hidden ```html ``` When switching line by pressing the ↓ said both of the two words, but each separately, as if they were on separate lines. | Text | “Image” | | ---- | ------- | | ✔ | ✖ | ### Hidden text with text-indent + print version ```html ``` | Text | “Image” | | ---- | ------- | | ✔ | ✖ | ## Tag Img ### Img without alt ```html ``` | “Image” | | ------- | | ✔ | ### Img with alt ```html * This is Company Logo (img) ``` | alt | “Image” | | --- | ------- | | ✔ | ✔ | ## SVG ### SVG with title and desc (plain) ```html * This is Company Logo (SVG Title) SVG Logo Description ``` | title | desc | “Image” | | ----- | ---- | ------- | | ✔ | ✖ | ✔ | Without `role="img"`! ### SVG with title and desc + role ```html * This is Company Logo (SVG Title) SVG Logo Description ``` | title | desc | “Image” | | ----- | ---- | ------- | | ✔ | ✖ | ✔ | ### SVG with text ```html * This is Company Logo (SVG Text) ``` | text | “Image” | | ---- | ------- | | ✖ | ✔ | Without `role="img"`! ### SVG with text + title & desc ```html * This is Company Logo (SVG Title) SVG Logo Description * This is Company Logo (SVG Text) ``` | title | desc | text | “Image” | | ----- | ---- | ---- | ------- | | ✔ | ✖ | ✖ | ✔ | Without `role="img"`! ### SVG with text + title & desc + aria-labelledby ```html * This is Company Logo (SVG Title) SVG Logo Description * This is Company Logo (SVG Text) ``` When switching line by pressing the ↓ **the element is missing entirely!** | title | desc | text | “Image” | | ----- | ---- | ---- | ------- | | ✔ | ✖ | ✖ | ✔ |