# 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
* This is Company Logo (font-size: 0)
```
| Text | “Image” |
| ---- | ------- |
| ✔ | ✖ |
### Hidden text with text-indent
```html
* This is Company Logo (text-indent)
```
| Text | “Image” |
| ---- | ------- |
| ✔ | ✖ |
### Hidden text with text-indent + role img
```html
* This is Company Logo (text-indent + role img)
```
**The element is missing entirely!**
| Text | “Image” |
| ---- | ------- |
| ✖ | ✖ |
### Hidden text with text-indent + role img + aria
```html
* This is Company Logo (text-indent + role img)
```
| Text | “Image” |
| ---- | ------- |
| ✔ | ✔ |
### Hidden text with visually-hidden
```html
Company Name
```
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
* This is Company Logo (text-indent + print)
```
| Text | “Image” |
| ---- | ------- |
| ✔ | ✖ |
## Tag Img
### Img without alt
```html
```
| “Image” |
| ------- |
| ✔ |
### Img with alt
```html
```
| alt | “Image” |
| --- | ------- |
| ✔ | ✔ |
## SVG
### SVG with title and desc (plain)
```html
```
| title | desc | “Image” |
| ----- | ---- | ------- |
| ✔ | ✖ | ✔ |
Without `role="img"`!
### SVG with title and desc + role
```html
```
| title | desc | “Image” |
| ----- | ---- | ------- |
| ✔ | ✖ | ✔ |
### SVG with text
```html
```
| text | “Image” |
| ---- | ------- |
| ✖ | ✔ |
Without `role="img"`!
### SVG with text + title & desc
```html
```
| title | desc | text | “Image” |
| ----- | ---- | ---- | ------- |
| ✔ | ✖ | ✖ | ✔ |
Without `role="img"`!
### SVG with text + title & desc + aria-labelledby
```html
```
When switching line by pressing the ↓ **the element is missing entirely!**
| title | desc | text | “Image” |
| ----- | ---- | ---- | ------- |
| ✔ | ✖ | ✖ | ✔ |