diff --git a/.gitignore b/.gitignore index b6e4761..b3845ca 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +# MacOS +.DS_Store + # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] diff --git a/a11y/docs/a11y_page_titles.md b/a11y/docs/a11y_page_titles.md new file mode 100644 index 0000000..0b1374e --- /dev/null +++ b/a11y/docs/a11y_page_titles.md @@ -0,0 +1,76 @@ +# a11y_page_titles + +Django management command that generates a markdown report comparing page titles across the OLH, Material, and Clean themes for a list of URLs. + +## Purpose +To assit with finding areas of non-compliance with [WCAG 2.4.2 Page Titled](https://www.w3.org/WAI/WCAG22/Understanding/page-titled) +> Web pages have titles that describe topic or purpose. + +"Describe" is subjective. This command cannot determine whether the title is descriptive. It is a helper command, to generate list of titles for a developer to review." A check is included as to whether all three themes have the same title, but this has no direct bearing on whether the title passes the requirement. Where the same title is expected across all three themes this provides a quick way to review the results. + +## What it does + +The command: + +1. Loads a list of URLs (from a JSON file) +2. Fetches each URL once per theme (olh, material, clean) via the Django test client +3. Extracts the `` from each response +4. Writes a markdown table to a file, with one row per URL and columns for each theme’s title and whether all three match + +## How to use + +### Defaults +- Input [`page_title_urls.json`](../playwright/tests/test_inputs/page_title_urls.json) +- Output [`results/markdown/page_titles.md`](../results/markdown/page_titles.md) + +> **Note:** This command uses `page_title_urls.json` as its default, not `front_of_house.json` (which is the default for the Playwright tests). The page title check deliberately spans multiple journals (OLH, ANE, Glossa) so that titles which should include the journal name can be verified across different journals — a single-journal list would not catch errors where the journal name is missing or incorrect. + +### Options + +| Option | Default | Description | +|--------|---------|-------------| +| `--output PATH` | `a11y/results/page_titles.md` | Path to the output markdown file. The directory is created if it doesn’t exist. | +| `--urls-json PATH` | `a11y/test_inputs/localhost_urls.json` | Path to a JSON file containing an array of URL strings to check. | + +### Examples + +**Default behaviour** — use default URL list and write to default output: + +```bash +python manage.py a11y_page_titles +``` + +**Both options** — custom URLs and custom output: + +```bash +python manage.py a11y_page_titles --urls-json path/to/urls.json --output path/to/report.md +``` + +### URL list format + +The `--urls-json` file must be valid JSON and contain a **single array of URL strings**. Order is preserved and determines the order of rows in the report. Duplicates are removed while keeping the first occurrence. + +Example: + +```json +[ + "http://localhost:8000/", + "http://localhost:8000/contact", + "http://localhost:8000/olh/" +] +``` + +## Results + +The results can be found at [`scripts/results/markdown/page_titles.md`](../../results/markdown/page_titles.md). There is only a markdown file, no json. The generated results table includes a final blank column for human review. + +| URL | OLH Title | Material Title | Clean Title | All Identical | Human Review | +|-----|-----------|----------------|-------------|---------------|--------------| +| [http://localhost:8000/](http://localhost:8000/) | Open Library of Humanities | Open Library of Humanities | Open Library of Humanities | :white_check_mark: | | +| ...| ... | ... | ... | ... | | + +This should be filled out by a **human** after the table has been generated, to show which titles satisfy the requirement of a descriptive title, and which do not. + +Line 4 must also be added afterwards, to note which commit the test was run against, e.g. + +> Test run on tag a11y-audit-1.9, 17 March 2026. diff --git a/a11y/docs/a11y_scripts.md b/a11y/docs/a11y_scripts.md new file mode 100644 index 0000000..67b2903 --- /dev/null +++ b/a11y/docs/a11y_scripts.md @@ -0,0 +1,33 @@ +# Accessiblity Testing Helper Scripts + +## Management Commands +These are in the same directory as the other managment commands. +1. [a11y_page_titles](docs/a11y_page_titles.md) + + +## Playwright Scripts +These are in the `playwright/` directory. Run from there with `npx playwright test`. + +1. [Accessibility (axe/WCAG)](docs/playwright_accessibility_testing.md) — `tests/accessibility.spec.js` + Runs axe-core against a list of URLs and checks for WCAG 2.2 Level A/AA violations. +2. [Target size](docs/target_size.md) — `tests/target_size.js` + Records the pixel dimensions of every focusable element against WCAG 2.2 AA (24 px) and AAA (44 px) thresholds. Outputs a markdown table and CSV to `test-results/`. +3. [Axe teardown](docs/axe_teardown.md) — `axe-teardown.js` + Global teardown that runs automatically after all tests. Merges per-URL axe results into a single timestamped report (`.md`, `.tsv`, `.json`) in `test-results/`. + +## URL input files + +All URL lists live in `playwright/tests/test_inputs/`. Pass a different file to any test with the `URL_LIST` environment variable, or run a single URL with `A11Y_URL`. + +| File | Default for | Description | +|------|------------|-------------| +| `front_of_house.json` | Accessibility test, Target size test | Broad front-of-house URL list covering the three main themes (clean, OLH, material) across a representative set of page types. Used as the default for most automated tests. | +| `page_title_urls.json` | `a11y_page_titles` management command | Multi-journal URL list (OLH, ANE, Glossa) used to verify page titles include the correct journal name. Intentionally spans multiple journals — a single-journal list would not catch errors where the journal name is missing or wrong. | +| `clarity.json` | — | URLs for the Clarity theme. Use with `URL_LIST` when testing Clarity specifically. | +| `clean.json` | — | URLs for the Clean theme. | +| `hourglass.json` | — | URLs for the Hourglass theme. | +| `material.json` | — | URLs for the Material theme. | +| `olh.json` | — | URLs for the OLH theme. | + +## Results +Results are git-tracked so we can evaluate progress between audits. diff --git a/a11y/docs/axe_teardown.md b/a11y/docs/axe_teardown.md new file mode 100644 index 0000000..aff7250 --- /dev/null +++ b/a11y/docs/axe_teardown.md @@ -0,0 +1,39 @@ +# Axe teardown + +Global teardown script (`axe-teardown.js`) that runs automatically after all Playwright tests complete. It merges the per-URL axe results written during the test run into a single combined report. + +You do not invoke this directly — Playwright runs it via the `globalTeardown` setting in `playwright.config.js`. + +## What it does + +1. Reads all `axe-raw/axe-*.json` files from `test-results/` (one per URL, written by `accessibility.spec.js` during the run). +2. Merges them into a combined report. +3. Writes three output files to `test-results/`, each with a timestamp in the filename: + - `axe-violations-<timestamp>.md` — full human-readable report (see structure below) + - `axe-violations-<timestamp>.tsv` — one row per failing element, for spreadsheet analysis + - `axe-violations-<timestamp>.json` — same data as the TSV, structured as a JSON array + +## Report structure (`.md`) + +| Section | Description | +|---------|-------------| +| **Header** | Total URLs tested, URLs passing, URLs with violations, total rule violations, total failing elements | +| **Summary by URL** | Table of every URL with total error count and pass/fail status | +| **Rules run and results** | Table of every axe rule executed, with description, WCAG success criteria, error count, and pass/fail status | +| **Failure summary reference** | Deduplicated list of failure messages, each with a stable anchor link and related WCAG criteria. Per-element rows in the results table link back here to avoid repetition | +| **Results** | Full table of every failing element: page, rule, impact, CSS selector, HTML snippet, and link to the relevant failure summary | + +## TSV / JSON columns + +| Column | Description | +|--------|-------------| +| `url` | Page the violation was found on | +| `rule_id` | axe rule identifier (e.g. `color-contrast`) | +| `impact` | `critical`, `serious`, `moderate`, or `minor` | +| `Selector` | CSS selector of the failing element | +| `html_snippet` | First 200 characters of the element's outer HTML | +| `failure_summary` | Full axe failure summary text for that element | + +## Timestamps + +Each run produces new files rather than overwriting previous ones, so reports from multiple runs are preserved in `test-results/`. The `test-results/` folder is listed in `.gitignore` — copy reports you want to keep into `results/` where they will be tracked. diff --git a/a11y/docs/playwright_accessibility_testing.md b/a11y/docs/playwright_accessibility_testing.md new file mode 100644 index 0000000..c777f0b --- /dev/null +++ b/a11y/docs/playwright_accessibility_testing.md @@ -0,0 +1,74 @@ +# Accessibility testing with Playwright and Axe (WCAG 2.2) + +This project runs automated accessibility checks using [axe-core](https://github.com/dequelabs/axe-core) via [@axe-core/playwright](https://www.npmjs.com/package/@axe-core/playwright). The test runs all applicable axe rule sets: **WCAG 2.x Level A and AA**, **ACT** (W3C Accessibility Conformance Testing), **best practices**, and **EN 301 549** (tags: `wcag2a`, `wcag2aa`, `wcag21a`, `wcag21aa`, `wcag22aa`, `best-practice`, `EN-301-549`, `ACT`). + +## Prerequisites + +Install dependencies (including **@axe-core/playwright** and **@playwright/test**) and Playwright browsers once: + +```bash +npm install +npx playwright install +``` + +`npm install` installs the axe and Playwright packages; `npx playwright install` downloads the browser binaries needed to run the tests. + +Note: the `playwright/test-results` folder is overwritten each time by playwright, any data to be kept must be copied outside of that folder. + +## URL list + +Both the accessibility and target size tests use the same URL list mechanism: + +- **`tests/test_inputs/front_of_house.json`** – default list (edit this file to add or change pages). +- **`URL_LIST`** – environment variable to point at another JSON file (array of URL strings). +- **`A11Y_URL`** – if set, the test runs against this single URL only (ignores the list). + +### Run against the URL list (default) + +From the `playwright` directory: + +```bash +npx playwright test accessibility --project=chromium +``` + +The test visits each URL in `tests/test_inputs/front_of_house.json`, runs axe on that page, and collects violations. If any page has violations, the test fails and the report lists violations per URL. + +### Run against a single URL + +```bash +A11Y_URL=http://localhost:3000 npx playwright test accessibility --project=chromium +``` + +### Use a different URL list + +```bash +URL_LIST=/path/to/my-urls.json npx playwright test accessibility --project=chromium +``` + +### Run in headed mode (see the browser) + +```bash +npx playwright test accessibility --project=chromium --headed +``` + +### Run in all configured browsers + +```bash +npx playwright test accessibility +``` + +## What the test does + +1. Loads URLs specified. +2. For each URL: opens the page, injects axe-core, and runs WCAG 2.2 Level A and AA plus ACT rules. +3. **Passes** if no page has violations. +4. **Fails** if any page has violations; the report and attachments list violations per URL. + +When there are violations, two attachments are added to the run (visible in the HTML report): **axe-violations.md** (markdown) and **axe-violations.tsv** (tab-separated values, one row per failing element: url, rule_id, impact, Selector, html_snippet). + +## Reading the results + +- **Pass:** No violations were reported. +- **Fail:** The test output lists each failing rule. After the run, a timestamped report is written to `test-results/` by the global teardown (`axe-teardown.js`): an `axe-violations-<timestamp>.md` with a full summary and per-element details, an `axe-violations-<timestamp>.tsv` for spreadsheet analysis, and an `axe-violations-<timestamp>.json`. Review the `.md` file, fix the reported issues, and re-run. + +Automated checks cannot cover every accessibility requirement (e.g. some need manual review). Use this test as part of a broader a11y strategy. diff --git a/a11y/docs/target_size.md b/a11y/docs/target_size.md new file mode 100644 index 0000000..6e41891 --- /dev/null +++ b/a11y/docs/target_size.md @@ -0,0 +1,86 @@ +# Target size test + +Playwright test that records the pixel dimensions of every focusable element on each tested page and checks them against the WCAG 2.2 target size thresholds. + +## Purpose + +To assist with finding areas of non-compliance with [WCAG 2.5.8 Target Size (Minimum)](https://www.w3.org/WAI/WCAG22/Understanding/target-size-minimum) (Level AA) and [WCAG 2.5.5 Target Size (Enhanced)](https://www.w3.org/WAI/WCAG22/Understanding/target-size-enhanced) (Level AAA): + +| Level | Minimum size | +|-------|-------------| +| AA | 24 × 24 px | +| AAA | 44 × 44 px | + +The test collects data for all focusable elements — it does not fail on small targets. Use the output report to identify elements that fall below the thresholds. + +**Text links** (`<a href>` with no `img` or `svg` child) are flagged separately in the report. WCAG 2.2 provides a height exception for inline text links because their height is determined by the surrounding line height rather than the author. + +## Prerequisites + +Install dependencies and browsers once from the `playwright/` directory: + +```bash +npm install +npx playwright install +``` + +## URL list + +Defaults to `tests/test_inputs/front_of_house.json`. This is the same default as the accessibility test — see [playwright_accessibility_testing.md](playwright_accessibility_testing.md) for details on the URL list format and environment variable overrides. + +| Environment variable | Effect | +|---------------------|--------| +| `URL_LIST=/path/to/urls.json` | Use a different JSON file (array of URL strings) | +| `A11Y_URL=http://localhost:8000/olh/` | Run against a single URL only | + +## How to run + +From the `playwright/` directory: + +```bash +npx playwright test target_size --project=chromium +``` + +### Run against a single URL + +```bash +A11Y_URL=http://localhost:8000/olh/ npx playwright test target_size --project=chromium +``` + +### Use a different URL list + +```bash +URL_LIST=/path/to/my-urls.json npx playwright test target_size --project=chromium +``` + +### Run in headed mode + +```bash +npx playwright test target_size --project=chromium --headed +``` + +## Output + +After the run, two files are written to the test's output directory inside `test-results/`: + +- **`target-size-report.md`** — a markdown table with one row per focusable element, showing URL, tag, accessible name, width, height, whether it is a text link, and whether it meets AA and AAA thresholds. +- **`target-size-report.csv`** — the same data in CSV format for spreadsheet analysis. + +The report header also shows the total number of URLs tested and total focusable elements found. + +## Reading the results + +Each row in the report shows: + +| Column | Description | +|--------|-------------| +| URL | Page the element was found on | +| # | Element index on that page | +| Tag | HTML tag (`a`, `button`, `input`, etc.) | +| Name / Label | Accessible name (aria-label, title, placeholder, or text content) | +| Width / Height (px) | Rendered size | +| Text link | ✓ if this is an inline text `<a href>` with no img/svg | +| ≥24×24 (AA) | ✓ meets WCAG 2.2 Level AA minimum | +| ≥44×44 (AAA) | ✓ meets WCAG 2.2 Level AAA enhanced | + +Elements where **Text link** is ✓ and the AA column is ✗ may still pass WCAG 2.2 due to the height exception — review these manually. diff --git a/a11y/playwright/.gitignore b/a11y/playwright/.gitignore new file mode 100644 index 0000000..335bd46 --- /dev/null +++ b/a11y/playwright/.gitignore @@ -0,0 +1,8 @@ + +# Playwright +node_modules/ +/test-results/ +/playwright-report/ +/blob-report/ +/playwright/.cache/ +/playwright/.auth/ diff --git a/a11y/playwright/axe-teardown.js b/a11y/playwright/axe-teardown.js new file mode 100644 index 0000000..960e057 --- /dev/null +++ b/a11y/playwright/axe-teardown.js @@ -0,0 +1,368 @@ +// @ts-check +/** + * Global teardown: merge per-URL axe results and write combined report. + * Run by Playwright after all tests. Reads test-results/axe-raw/*.json. + */ +const fs = require('fs'); +const path = require('path'); + +const testResultsDir = path.join(__dirname, 'test-results'); +const axeRawDir = path.join(testResultsDir, 'axe-raw'); +const reportDir = testResultsDir; + +function escapeTsv(value) { + const s = String(value ?? ''); + return s.replace(/\t/g, ' ').replace(/\r\n?|\n/g, ' '); +} + +/** Wrap angle-bracket tag-like text in backticks so markdown previewers don't treat it as HTML. */ +function mdAngleBrackets(str) { + if (typeof str !== 'string') return ''; + return str.replace(/<([^>]+)>/g, '`<$1>`'); +} + +/** Empty string for 0, so table cells are blank where there are no violations. */ +function cell(n) { + return n === 0 ? '' : String(n); +} + +/** + * Find the longest common URL prefix that ends at a path boundary (/) so headings + * use only the part beyond the root and are not full URLs (avoids linkification and TOC issues). + */ +function commonUrlRoot(urls) { + if (urls.length === 0) return ''; + let prefix = urls[0]; + for (let i = 1; i < urls.length; i++) { + while (!urls[i].startsWith(prefix) && prefix.length) prefix = prefix.slice(0, -1); + } + const lastSlash = prefix.lastIndexOf('/'); + return lastSlash >= 0 ? prefix.slice(0, lastSlash + 1) : prefix; +} + +/** Return the part of url after root for use as a heading; use "Results" when the path is the root. */ +function shortUrlHeading(root, url) { + const suffix = root && url.startsWith(root) ? url.slice(root.length) : url; + const pathPart = suffix || '/'; + return pathPart === '/' ? 'Results' : pathPart; +} + +function violationsToTsv(allViolationsByUrl) { + const headers = ['url', 'rule_id', 'impact', 'Selector', 'html_snippet', 'failure_summary']; + const rows = []; + for (const { url, violations } of allViolationsByUrl) { + for (const v of violations) { + (v.nodes || []).forEach((node) => { + const selector = Array.isArray(node.target) ? node.target.join(' ') : node.target; + const htmlSnippet = node.html ? node.html.replace(/\s+/g, ' ').trim().slice(0, 200) : ''; + const failureSummary = node.failureSummary ?? ''; + rows.push([escapeTsv(url), escapeTsv(v.id), escapeTsv(v.impact), escapeTsv(selector), escapeTsv(htmlSnippet), escapeTsv(failureSummary)].join('\t')); + }); + } + } + return [headers.join('\t'), ...rows].join('\n'); +} + +function violationsToJson(allViolationsByUrl) { + const rows = []; + for (const { url, violations } of allViolationsByUrl) { + for (const v of violations) { + (v.nodes || []).forEach((node) => { + const selector = Array.isArray(node.target) ? node.target.join(' ') : node.target; + const htmlSnippet = node.html ? node.html.replace(/\s+/g, ' ').trim().slice(0, 200) : ''; + rows.push({ + url, + rule_id: v.id, + impact: v.impact || '', + Selector: selector, + html_snippet: htmlSnippet, + failure_summary: node.failureSummary ?? '', + }); + }); + } + } + return rows; +} + +function summaryByUrlAndSeverity(allResults) { + const lines = ['## Summary by URL', '', '| URL | Errors | Status |', '| --- | --- | --- |']; + for (const { url, violations } of allResults) { + const total = (violations || []).reduce((sum, v) => sum + (v.nodes || []).length, 0); + const status = total > 0 ? ':x: fail' : ':white_check_mark: pass'; + lines.push(`| ${url} | ${cell(total)} | ${status} |`); + } + return lines.join('\n'); +} + +function buildByRule(allViolationsByUrl) { + const byRule = {}; + const bySeverity = { critical: 0, serious: 0, moderate: 0, minor: 0 }; + for (const { violations } of allViolationsByUrl) { + for (const v of violations) { + if (!byRule[v.id]) byRule[v.id] = { critical: 0, serious: 0, moderate: 0, minor: 0 }; + const impact = v.impact && byRule[v.id].hasOwnProperty(v.impact) ? v.impact : 'serious'; + const count = (v.nodes || []).length; + byRule[v.id][impact] += count; + bySeverity[impact] += count; + } + } + return { byRule, bySeverity }; +} + +/** One table: all rules run, with description, WCAG criteria, and violation counts; Status = pass/fail. */ +function combinedRulesTable(rulesRun, byRule) { + if (rulesRun.length === 0) return ''; + const lines = [ + '## Rules run and results', + '', + 'All rules executed in this run (WCAG 2.2 Level A and AA, ACT). Status indicates whether the rule had any violations across the tested URLs.', + '', + '| Rule ID | Description | WCAG criteria | Errors | Status |', + '| --- | --- | --- | --- | --- |', + ]; + const sorted = [...rulesRun].sort((a, b) => a.id.localeCompare(b.id)); + for (const r of sorted) { + const counts = byRule[r.id] || { critical: 0, serious: 0, moderate: 0, minor: 0 }; + const total = counts.critical + counts.serious + counts.moderate + counts.minor; + const status = total > 0 ? ':x: fail' : ':white_check_mark: pass'; + const desc = (r.help || '').replace(/\|/g, '\\|').replace(/\n/g, ' '); + const wcagCriteria = formatWcagCriteria(r.tags || []); + const wcagCell = wcagCriteria.length > 0 ? wcagCriteria.map((c) => c.replace(/\|/g, '\\|')).join('; ') : '—'; + lines.push(`| ${r.id} | ${mdAngleBrackets(desc)} | ${wcagCell} | ${cell(total)} | ${status} |`); + } + return lines.join('\n'); +} + +const PREFIX_ANY = 'Fix any of the following:'; +const PREFIX_ALL = 'Fix all of the following:'; + +/** + * Normalize failure summary for markdown report only (JSON/TSV keep full text). + * Strip "Fix any/all of the following:" prefix; collapse color-contrast and target-size variants to single summaries. + */ +function normalizeFailureSummaryForMarkdown(text) { + let t = (text ?? '').trim(); + if (t.startsWith(PREFIX_ANY)) { + t = t.slice(PREFIX_ANY.length).trim(); + } else if (t.startsWith(PREFIX_ALL)) { + t = t.slice(PREFIX_ALL.length).trim(); + } + if (t.startsWith('Element has insufficient color contrast of')) { + return 'Element has insufficient color contrast.'; + } + if (t.startsWith('Target has insufficient size') || t.startsWith('Target has insufficient space')) { + return 'Target has insufficient size'; + } + return t || '(no summary)'; +} + +/** + * Build per-rule summary refs: byRule[ruleId] = unique summary texts in order; refMap["ruleId|summary"] = { label, anchorId }; + * refCount["ruleId|summary"] = number of failing nodes with that rule and summary. + * ruleIdToTags[ruleId] = tags array from axe (for WCAG criteria in report). + */ +function buildSummaryRefs(allViolationsByUrl) { + const byRule = {}; + const refCount = new Map(); + const ruleIdToTags = {}; + for (const { violations } of allViolationsByUrl) { + for (const v of violations) { + const ruleId = v.id; + if (ruleId && v.tags && !ruleIdToTags[ruleId]) ruleIdToTags[ruleId] = v.tags; + if (!byRule[ruleId]) byRule[ruleId] = []; + for (const node of v.nodes || []) { + const key = normalizeFailureSummaryForMarkdown(node.failureSummary); + if (!byRule[ruleId].includes(key)) byRule[ruleId].push(key); + const refKey = `${ruleId}|${key}`; + refCount.set(refKey, (refCount.get(refKey) || 0) + 1); + } + } + } + const refMap = new Map(); + for (const ruleId of Object.keys(byRule)) { + const summaries = byRule[ruleId]; + const useNumber = summaries.length > 1; + summaries.forEach((key, i) => { + const num = i + 1; + const label = useNumber ? `Failure ${ruleId} ${num}` : `Failure ${ruleId}`; + const anchorId = useNumber ? `${ruleId}-${num}` : ruleId; + refMap.set(`${ruleId}|${key}`, { label, anchorId }); + }); + } + return { byRule, refMap, refCount, ruleIdToTags }; +} + +/** Map axe level tags to short WCAG conformance labels. */ +const WCAG_LEVEL_TAGS = { + wcag2a: 'WCAG 2.0 Level A', + wcag2aa: 'WCAG 2.0 Level AA', + wcag2aaa: 'WCAG 2.0 Level AAA', + wcag21a: 'WCAG 2.1 Level A', + wcag21aa: 'WCAG 2.1 Level AA', + wcag21aaa: 'WCAG 2.1 Level AAA', + wcag22a: 'WCAG 2.2 Level A', + wcag22aa: 'WCAG 2.2 Level AA', + wcag22aaa: 'WCAG 2.2 Level AAA', +}; + +/** + * Format axe rule tags as human-readable WCAG criteria only (conformance level + success criterion). + * Includes only WCAG level tags (e.g. wcag2aa) and success criterion tags (e.g. wcag143); + * excludes ACT, TT, EN-301-549, best-practice, section508, etc. + */ +function formatWcagCriteria(tags) { + if (!Array.isArray(tags) || tags.length === 0) return []; + const levels = []; + const successCriteria = []; + for (const tag of tags) { + if (WCAG_LEVEL_TAGS[tag]) { + levels.push(WCAG_LEVEL_TAGS[tag]); + } else if (/^wcag(\d)(\d)(\d)$/.test(tag)) { + const [, g, l, c] = tag.match(/^wcag(\d)(\d)(\d)$/); + successCriteria.push(`Success Criterion ${g}.${l}.${c}`); + } + } + const seen = new Set(); + return [...levels, ...successCriteria].filter((s) => s && !seen.has(s) && (seen.add(s), true)); +} + +/** + * Strip "Fix any/all of the following:" from entire summary and format lines as an unordered list. + */ +function formatSummaryForDisplay(text) { + let s = (text || '') + .replace(/\s*Fix any of the following:\s*/gi, '\n') + .replace(/\s*Fix all of the following:\s*/gi, '\n'); + const items = s + .split(/\n/) + .map((l) => l.trim()) + .filter(Boolean); + if (items.length === 0) return '(no summary)'; + return items.map((l) => '- ' + mdAngleBrackets(l).replace(/\|/g, '\\|')).join('\n'); +} + +/** Render the failure summary reference section with ### rule-name (count) when disambiguation needed. */ +function formatSummaryReference(byRule, refCount, ruleIdToTags) { + const ruleIds = Object.keys(byRule).sort(); + if (ruleIds.length === 0) return ''; + const lines = ['## Failure summary reference', '', 'Each issue in the details below links to one of these summaries.', '']; + for (const ruleId of ruleIds) { + const summaries = byRule[ruleId]; + const useNumber = summaries.length > 1; + const wcagCriteria = formatWcagCriteria(ruleIdToTags[ruleId] || []); + for (let i = 0; i < summaries.length; i++) { + const num = i + 1; + const heading = useNumber ? `Failure ${ruleId} ${num}` : `Failure ${ruleId}`; + const count = refCount.get(`${ruleId}|${summaries[i]}`) || 0; + const headingWithCount = `${heading} (${count})`; + const anchorId = useNumber ? `${ruleId}-${num}` : ruleId; + const display = formatSummaryForDisplay(summaries[i]); + lines.push(`<span id="${anchorId}"></span>`, `### ${headingWithCount}`, ''); + if (wcagCriteria.length > 0 && i === 0) { + lines.push('**Related WCAG criteria:**', '', wcagCriteria.map((c) => `- ${c}`).join('\n'), ''); + } + lines.push(display, ''); + } + } + return lines.join('\n'); +} + +/** Escape pipe and newline for markdown table cell content. */ +function tableCell(s) { + return String(s).replace(/\|/g, '\\|').replace(/\n/g, ' ').trim(); +} + +/** Build one table for all violations across all URLs; first column is Page (link to URL). */ +function formatResultsTable(allViolationsByUrl, refMap, urlRoot) { + const rows = []; + for (const { url, violations } of allViolationsByUrl) { + const pageHeading = shortUrlHeading(urlRoot, url); + const pageLink = `[${pageHeading}](${url})`; + for (const v of violations) { + const ruleLink = `[${v.id}](${v.helpUrl})`; + const impact = v.impact || ''; + for (const node of v.nodes || []) { + const selector = Array.isArray(node.target) ? node.target.join(' ') : node.target; + const key = normalizeFailureSummaryForMarkdown(node.failureSummary); + const ref = refMap.get(`${v.id}|${key}`); + const refLink = ref ? `[${ref.label}](#${ref.anchorId})` : '(see reference)'; + const htmlSnippet = node.html ? node.html.replace(/\s+/g, ' ').trim().slice(0, 200) + (node.html.length > 200 ? '…' : '') : ''; + rows.push([pageLink, ruleLink, impact, tableCell(selector), tableCell(htmlSnippet), refLink]); + } + } + } + if (rows.length === 0) return []; + const tableHeader = '| Page | Rule | Impact | Selector | HTML | Issue ref |'; + const tableSep = '| --- | --- | --- | --- | --- | --- |'; + const tableRows = rows.map((r) => `| ${r[0]} | ${r[1]} | ${r[2]} | \`${r[3]}\` | \`${r[4]}\` | ${r[5]} |`); + return [tableHeader, tableSep, ...tableRows, '']; +} + +module.exports = async function globalTeardown() { + if (!fs.existsSync(axeRawDir)) return; + + const files = fs.readdirSync(axeRawDir).filter((f) => f.startsWith('axe-') && f.endsWith('.json')); + const allResults = []; + const allViolationsByUrl = []; + let rulesRun = []; + for (const f of files.sort((a, b) => { + const na = parseInt(a.replace('axe-', '').replace('.json', ''), 10); + const nb = parseInt(b.replace('axe-', '').replace('.json', ''), 10); + return na - nb; + })) { + const data = JSON.parse(fs.readFileSync(path.join(axeRawDir, f), 'utf8')); + const violations = data.violations || []; + allResults.push({ url: data.url, violations }); + if (violations.length > 0) { + allViolationsByUrl.push({ url: data.url, violations }); + } + if (rulesRun.length === 0 && data.rulesRun && data.rulesRun.length > 0) { + rulesRun = data.rulesRun; + } + } + + const totalUrls = allResults.length; + const urlsWithViolations = allViolationsByUrl.length; + const urlsPassing = totalUrls - urlsWithViolations; + const totalViolations = allViolationsByUrl.reduce((sum, { violations }) => sum + violations.length, 0); + const totalNodes = allViolationsByUrl.reduce((sum, { violations }) => sum + violations.reduce((n, v) => n + (v.nodes || []).length, 0), 0); + + const { byRule, bySeverity } = buildByRule(allViolationsByUrl); + + const highLevelLines = [ + '# Accessibility report (WCAG 2.2)', + '', + `**URLs tested:** ${totalUrls}`, + `**URLs passing (no violations):** ${urlsPassing}`, + `**URLs with violations:** ${urlsWithViolations}`, + `**Total rule violations:** ${totalViolations}`, + `**Total failing elements (nodes):** ${totalNodes}`, + '', + summaryByUrlAndSeverity(allResults), + '', + combinedRulesTable(rulesRun, byRule), + '', + ]; + + let summary = highLevelLines.join('\n'); + if (allViolationsByUrl.length > 0) { + const { byRule, refMap, refCount, ruleIdToTags } = buildSummaryRefs(allViolationsByUrl); + summary += '\n---\n\n## Details by URL\n\n'; + summary += formatSummaryReference(byRule, refCount, ruleIdToTags); + summary += '\n---\n\n## Results\n\n'; + const allUrls = allResults.map((r) => r.url); + const urlRoot = commonUrlRoot(allUrls); + summary += formatResultsTable(allViolationsByUrl, refMap, urlRoot).join('\n'); + } else { + summary += 'No accessibility violations found.\n'; + } + + const timestamp = new Date().toISOString().replace(/[:.]/g, '-').slice(0, 19); + fs.mkdirSync(reportDir, { recursive: true }); + const mdPath = path.join(reportDir, `axe-violations-${timestamp}.md`); + fs.writeFileSync(mdPath, summary, 'utf8'); + const tsvPath = path.join(reportDir, `axe-violations-${timestamp}.tsv`); + fs.writeFileSync(tsvPath, violationsToTsv(allViolationsByUrl), 'utf8'); + const jsonPath = path.join(reportDir, `axe-violations-${timestamp}.json`); + fs.writeFileSync(jsonPath, JSON.stringify(violationsToJson(allViolationsByUrl), null, 2), 'utf8'); +}; diff --git a/a11y/playwright/package-lock.json b/a11y/playwright/package-lock.json new file mode 100644 index 0000000..59108bf --- /dev/null +++ b/a11y/playwright/package-lock.json @@ -0,0 +1,122 @@ +{ + "name": "playwright", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "playwright", + "version": "1.0.0", + "license": "ISC", + "devDependencies": { + "@axe-core/playwright": "^4.11.1", + "@playwright/test": "^1.58.2", + "@types/node": "^25.3.3" + } + }, + "node_modules/@axe-core/playwright": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@axe-core/playwright/-/playwright-4.11.1.tgz", + "integrity": "sha512-mKEfoUIB1MkVTht0BGZFXtSAEKXMJoDkyV5YZ9jbBmZCcWDz71tegNsdTkIN8zc/yMi5Gm2kx7Z5YQ9PfWNAWw==", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "axe-core": "~4.11.1" + }, + "peerDependencies": { + "playwright-core": ">= 1.0.0" + } + }, + "node_modules/@playwright/test": { + "version": "1.58.2", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.58.2.tgz", + "integrity": "sha512-akea+6bHYBBfA9uQqSYmlJXn61cTa+jbO87xVLCWbTqbWadRVmhxlXATaOjOgcBaWU4ePo0wB41KMFv3o35IXA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "playwright": "1.58.2" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@types/node": { + "version": "25.3.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.3.3.tgz", + "integrity": "sha512-DpzbrH7wIcBaJibpKo9nnSQL0MTRdnWttGyE5haGwK86xgMOkFLp7vEyfQPGLOJh5wNYiJ3V9PmUMDhV9u8kkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.18.0" + } + }, + "node_modules/axe-core": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.11.1.tgz", + "integrity": "sha512-BASOg+YwO2C+346x3LZOeoovTIoTrRqEsqMa6fmfAV0P+U9mFr9NsyOEpiYvFjbc64NMrSswhV50WdXzdb/Z5A==", + "dev": true, + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/playwright": { + "version": "1.58.2", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.58.2.tgz", + "integrity": "sha512-vA30H8Nvkq/cPBnNw4Q8TWz1EJyqgpuinBcHET0YVJVFldr8JDNiU9LaWAE1KqSkRYazuaBhTpB5ZzShOezQ6A==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "playwright-core": "1.58.2" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "fsevents": "2.3.2" + } + }, + "node_modules/playwright-core": { + "version": "1.58.2", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.58.2.tgz", + "integrity": "sha512-yZkEtftgwS8CsfYo7nm0KE8jsvm6i/PTgVtB8DL726wNf6H2IMsDuxCpJj59KDaxCtSnrWan2AeDqM7JBaultg==", + "dev": true, + "license": "Apache-2.0", + "peer": true, + "bin": { + "playwright-core": "cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/undici-types": { + "version": "7.18.2", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz", + "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==", + "dev": true, + "license": "MIT" + } + } +} diff --git a/a11y/playwright/package.json b/a11y/playwright/package.json new file mode 100644 index 0000000..b071c76 --- /dev/null +++ b/a11y/playwright/package.json @@ -0,0 +1,16 @@ +{ + "name": "playwright", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": {}, + "keywords": [], + "author": "", + "license": "ISC", + "type": "commonjs", + "devDependencies": { + "@axe-core/playwright": "^4.11.1", + "@playwright/test": "^1.58.2", + "@types/node": "^25.3.3" + } +} diff --git a/a11y/playwright/playwright.config.js b/a11y/playwright/playwright.config.js new file mode 100644 index 0000000..968998d --- /dev/null +++ b/a11y/playwright/playwright.config.js @@ -0,0 +1,83 @@ +// @ts-check +import { defineConfig, devices } from '@playwright/test'; + +/** + * Read environment variables from file. + * https://github.com/motdotla/dotenv + */ +// import dotenv from 'dotenv'; +// import path from 'path'; +// dotenv.config({ path: path.resolve(__dirname, '.env') }); + +/** + * @see https://playwright.dev/docs/test-configuration + */ +export default defineConfig({ + testDir: './tests', + testMatch: ['**/*.@(spec|test).?(c|m)[jt]s?(x)', '**/target_size.js'], + globalTeardown: './axe-teardown.js', + /* Run tests in files in parallel */ + fullyParallel: true, + /* Fail the build on CI if you accidentally left test.only in the source code. */ + forbidOnly: !!process.env.CI, + /* Retry on CI only */ + retries: process.env.CI ? 2 : 0, + /* Opt out of parallel tests on CI. */ + workers: process.env.CI ? 1 : undefined, + /* Reporter to use. See https://playwright.dev/docs/test-reporters (HTML disabled; axe report is markdown from globalTeardown) */ + reporter: 'list', + /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ + use: { + /* Base URL to use in actions like `await page.goto('')`. */ + // baseURL: 'http://localhost:3000', + + /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ + trace: 'on-first-retry', + }, + + /* Configure projects for major browsers */ + projects: [ + { + name: 'chromium', + use: { ...devices['Desktop Chrome'] }, + }, + + { + name: 'firefox', + use: { ...devices['Desktop Firefox'] }, + }, + + { + name: 'webkit', + use: { ...devices['Desktop Safari'] }, + }, + + /* Test against mobile viewports. */ + // { + // name: 'Mobile Chrome', + // use: { ...devices['Pixel 5'] }, + // }, + // { + // name: 'Mobile Safari', + // use: { ...devices['iPhone 12'] }, + // }, + + /* Test against branded browsers. */ + // { + // name: 'Microsoft Edge', + // use: { ...devices['Desktop Edge'], channel: 'msedge' }, + // }, + // { + // name: 'Google Chrome', + // use: { ...devices['Desktop Chrome'], channel: 'chrome' }, + // }, + ], + + /* Run your local dev server before starting the tests */ + // webServer: { + // command: 'npm run start', + // url: 'http://localhost:3000', + // reuseExistingServer: !process.env.CI, + // }, +}); + diff --git a/a11y/playwright/tests/accessibility.spec.js b/a11y/playwright/tests/accessibility.spec.js new file mode 100644 index 0000000..10f62d1 --- /dev/null +++ b/a11y/playwright/tests/accessibility.spec.js @@ -0,0 +1,179 @@ +// @ts-check +const { test, expect } = require('@playwright/test'); +const AxeBuilder = require('@axe-core/playwright').default; +const fs = require('fs'); +const path = require('path'); + +/** Single URL when A11Y_URL is set; otherwise use front_of_house list from JSON */ +const DEFAULT_URL_LIST_PATH = path.join(__dirname, 'test_inputs', 'front_of_house.json'); + +function loadTestUrls() { + const urlListPath = process.env.URL_LIST || DEFAULT_URL_LIST_PATH; + const resolved = path.resolve(urlListPath); + if (!fs.existsSync(resolved)) { + throw new Error(`URL list not found: ${resolved}. Set URL_LIST or A11Y_URL, or add tests/urls.json.`); + } + const raw = fs.readFileSync(resolved, 'utf8'); + const urls = JSON.parse(raw); + if (!Array.isArray(urls) || urls.some((u) => typeof u !== 'string')) { + throw new Error('URL list must be a JSON array of strings.'); + } + return urls; +} + +function getUrls() { + if (process.env.A11Y_URL) { + return [process.env.A11Y_URL]; + } + return loadTestUrls(); +} + +function escapeTsv(value) { + const s = String(value ?? ''); + return s.replace(/\t/g, ' ').replace(/\r\n?|\n/g, ' '); +} + +function violationsToTsv(allViolationsByUrl) { + const headers = ['url', 'rule_id', 'impact', 'Selector', 'html_snippet']; + const rows = []; + for (const { url, violations } of allViolationsByUrl) { + for (const v of violations) { + const nodes = v.nodes || []; + for (let i = 0; i < nodes.length; i++) { + const node = nodes[i]; + const selector = Array.isArray(node.target) ? node.target.join(' ') : node.target; + const htmlSnippet = node.html ? node.html.replace(/\s+/g, ' ').trim().slice(0, 200) : ''; + rows.push([ + escapeTsv(url), + escapeTsv(v.id), + escapeTsv(v.impact), + escapeTsv(selector), + escapeTsv(htmlSnippet), + ].join('\t')); + } + } + } + return [headers.join('\t'), ...rows].join('\n'); +} + +function summaryByUrlAndSeverity(allViolationsByUrl) { + const lines = ['## Summary by URL (errors per severity)', '', '| URL | critical | serious | moderate | minor |', '| --- | --- | --- | --- | --- |']; + const severities = ['critical', 'serious', 'moderate', 'minor']; + for (const { url, violations } of allViolationsByUrl) { + const byImpact = { critical: 0, serious: 0, moderate: 0, minor: 0 }; + for (const v of violations) { + const impact = (v.impact && byImpact.hasOwnProperty(v.impact)) ? v.impact : 'serious'; + byImpact[impact] += (v.nodes || []).length; + } + const total = severities.reduce((sum, s) => sum + byImpact[s], 0); + if (total > 0) { + lines.push(`| ${url} | ${byImpact.critical} | ${byImpact.serious} | ${byImpact.moderate} | ${byImpact.minor} |`); + } + } + return lines.join('\n'); +} + +function summaryByRuleAndSeverity(allViolationsByUrl) { + const byRule = {}; + const bySeverity = { critical: 0, serious: 0, moderate: 0, minor: 0 }; + for (const { violations } of allViolationsByUrl) { + for (const v of violations) { + const key = v.id; + if (!byRule[key]) byRule[key] = { help: v.help, critical: 0, serious: 0, moderate: 0, minor: 0 }; + const impact = (v.impact && byRule[key].hasOwnProperty(v.impact)) ? v.impact : 'serious'; + const count = (v.nodes || []).length; + byRule[key][impact] += count; + bySeverity[impact] += count; + } + } + const lines = [ + '## Summary by rule type and severity (all URLs)', + '', + '### By severity (all rules)', + '', + '| Severity | Count |', + '| --- | --- |', + ...['critical', 'serious', 'moderate', 'minor'].map((s) => `| ${s} | ${bySeverity[s]} |`), + '', + '### By rule type', + '', + '| Rule | Help | critical | serious | moderate | minor | Total |', + '| --- | --- | --- | --- | --- | --- | --- |', + ]; + const ruleIds = Object.keys(byRule).sort(); + for (const id of ruleIds) { + const r = byRule[id]; + const total = r.critical + r.serious + r.moderate + r.minor; + const help = (r.help || '').replace(/\|/g, '\\|').slice(0, 60); + lines.push(`| ${id} | ${help} | ${r.critical} | ${r.serious} | ${r.moderate} | ${r.minor} | ${total} |`); + } + return lines.join('\n'); +} + +function mdAngleBrackets(str) { + if (typeof str !== 'string') return ''; + return str.replace(/<([^>]+)>/g, '`<$1>`'); +} + +function formatViolations(violations) { + return violations.flatMap((v) => { + const lines = [ + `## ${v.id}: ${mdAngleBrackets(v.help)}`, + `- **Impact:** ${v.impact}`, + `- **Docs:** ${v.helpUrl}`, + `- **Failures (${v.nodes.length}):**`, + '', + ]; + (v.nodes || []).forEach((node, i) => { + const selector = Array.isArray(node.target) ? node.target.join(' ') : node.target; + const summary = mdAngleBrackets(node.failureSummary ?? '(no summary)'); + lines.push(`${i + 1}. **Selector:** \`${selector}\``); + if (node.html) { + const snippet = node.html.replace(/\s+/g, ' ').trim().slice(0, 200); + lines.push(` **HTML:** \`${snippet}${node.html.length > 200 ? '…' : ''}\``); + } + lines.push(` **Issue:** ${summary}`); + lines.push(''); + }); + return lines; + }); +} + +const urls = getUrls(); +const axeRawDir = path.join(__dirname, '..', 'test-results', 'axe-raw'); + +for (let index = 0; index < urls.length; index++) { + const url = urls[index]; + test(`axe scan (${index + 1}/${urls.length}): ${url}`, async ({ page }, testInfo) => { + test.setTimeout(90000); + + await page.goto(url, { waitUntil: 'domcontentloaded' }); + + const results = await new AxeBuilder({ page }) + .withTags(['wcag2a', 'wcag2aa', 'wcag21a', 'wcag21aa', 'wcag22aa', 'best-practice', 'EN-301-549', 'ACT']) + .analyze(); + + const violations = results.violations ?? []; + const passes = results.passes ?? []; + const rulesRun = []; + const seen = new Set(); + for (const r of [...passes, ...violations]) { + if (r.id && !seen.has(r.id)) { + seen.add(r.id); + rulesRun.push({ id: r.id, help: r.help || '', tags: r.tags || [] }); + } + } + rulesRun.sort((a, b) => a.id.localeCompare(b.id)); + const resultFile = path.join(axeRawDir, `axe-${index}.json`); + fs.mkdirSync(axeRawDir, { recursive: true }); + fs.writeFileSync(resultFile, JSON.stringify({ url, violations, rulesRun }), 'utf8'); + + if (violations.length > 0) { + const reportSections = [`# ${url}`, '', ...formatViolations(violations)].join('\n'); + const tsvBody = violationsToTsv([{ url, violations }]); + await testInfo.attach('axe-violations.md', { body: reportSections, contentType: 'text/markdown' }); + await testInfo.attach('axe-violations.tsv', { body: tsvBody, contentType: 'text/tab-separated-values' }); + throw new Error(`Accessibility violations on this page (${violations.length} rule(s), see attachment and test-results for full report).`); + } + }); +} diff --git a/a11y/playwright/tests/example.spec.js b/a11y/playwright/tests/example.spec.js new file mode 100644 index 0000000..26ed206 --- /dev/null +++ b/a11y/playwright/tests/example.spec.js @@ -0,0 +1,19 @@ +// @ts-check +import { test, expect } from '@playwright/test'; + +test('has title', async ({ page }) => { + await page.goto('https://playwright.dev/'); + + // Expect a title "to contain" a substring. + await expect(page).toHaveTitle(/Playwright/); +}); + +test('get started link', async ({ page }) => { + await page.goto('https://playwright.dev/'); + + // Click the get started link. + await page.getByRole('link', { name: 'Get started' }).click(); + + // Expects page to have a heading with the name of Installation. + await expect(page.getByRole('heading', { name: 'Installation' })).toBeVisible(); +}); diff --git a/a11y/playwright/tests/target_size.js b/a11y/playwright/tests/target_size.js new file mode 100644 index 0000000..fa76a81 --- /dev/null +++ b/a11y/playwright/tests/target_size.js @@ -0,0 +1,191 @@ +// @ts-check +const { test, expect } = require('@playwright/test'); +const fs = require('fs'); +const path = require('path'); + +const MIN_TARGET_AA = 24; // WCAG 2.2 Level AA +const MIN_TARGET_AAA = 44; // WCAG 2.2 Level AAA + +const DEFAULT_URL_LIST_PATH = path.join(__dirname, 'test_inputs', 'front_of_house.json'); + +function loadTestUrls() { + const urlListPath = process.env.URL_LIST || DEFAULT_URL_LIST_PATH; + const resolved = path.resolve(urlListPath); + if (!fs.existsSync(resolved)) { + throw new Error(`URL list not found: ${resolved}. Set URL_LIST or A11Y_URL, or add tests/test_inputs/front_of_house.json.`); + } + const raw = fs.readFileSync(resolved, 'utf8'); + const urls = JSON.parse(raw); + if (!Array.isArray(urls) || urls.some((u) => typeof u !== 'string')) { + throw new Error('URL list must be a JSON array of strings.'); + } + return urls; +} + +function getUrls() { + if (process.env.A11Y_URL) { + return [process.env.A11Y_URL]; + } + return loadTestUrls(); +} + +const TEST_URLS = getUrls(); + +test('record focusable elements target size to markdown table', async ({ page }, testInfo) => { + const allRows = []; + let totalFocusable = 0; + + for (const url of TEST_URLS) { + await page.goto(url, { waitUntil: 'domcontentloaded' }); + + const focusableData = await page.evaluate(({ minAA, minAAA }) => { + const focusableSelector = [ + 'a[href]', + 'button:not([disabled])', + 'input:not([disabled])', + 'select:not([disabled])', + 'textarea:not([disabled])', + 'summary', + '[contenteditable="true"]', + '[tabindex]:not([tabindex="-1"])', + ].join(', '); + + const nodes = document.querySelectorAll(focusableSelector); + + return Array.from(nodes) + .filter((el) => { + const style = window.getComputedStyle(el); + const hidden = + style.display === 'none' || + style.visibility === 'hidden' || + style.opacity === '0' || + el.getBoundingClientRect().width === 0 || + el.getBoundingClientRect().height === 0; + return !hidden; + }) + .map((el, index) => { + const rect = el.getBoundingClientRect(); + const width = Math.round(rect.width); + const height = Math.round(rect.height); + const tag = el.tagName.toLowerCase(); + const name = + el.getAttribute('aria-label') || + el.getAttribute('title') || + el.getAttribute('placeholder') || + (el.textContent || '').trim().replace(/\s+/g, ' ').slice(0, 40) || + el.getAttribute('type') || + '(no name)'; + const meetsAA = width >= minAA && height >= minAA; + const meetsAAA = width >= minAAA && height >= minAAA; + // Text link = <a> with no img/svg; height is determined by font size (WCAG height exception) + const isTextLink = + tag === 'a' && !el.querySelector('img, svg') && el.textContent?.trim().length > 0; + return { + index: index + 1, + tag, + name: name.slice(0, 50), + width, + height, + meetsAA, + meetsAAA, + isTextLink, + }; + }); + }, { minAA: MIN_TARGET_AA, minAAA: MIN_TARGET_AAA }); + + for (const row of focusableData) { + allRows.push({ url, ...row }); + } + totalFocusable += focusableData.length; + } + + const headers = [ + 'URL', + '#', + 'Tag', + 'Name / Label', + 'Width (px)', + 'Height (px)', + 'Text link', + `≥${MIN_TARGET_AA}×${MIN_TARGET_AA} (AA)`, + `≥${MIN_TARGET_AAA}×${MIN_TARGET_AAA} (AAA)`, + ]; + const separator = headers.map(() => '---'); + const headerRow = '| ' + headers.join(' | ') + ' |'; + const sepRow = '| ' + separator.join(' | ') + ' |'; + + const bodyRows = allRows.map((row) => { + return [ + row.url.replace(/\|/g, '\\|'), + row.index, + row.tag, + row.name.replace(/\|/g, '\\|').replace(/\n/g, ' '), + row.width, + row.height, + row.isTextLink ? '✓' : '', + row.meetsAA ? '✓' : '✗', + row.meetsAAA ? '✓' : '✗', + ].join(' | '); + }); + + const table = [ + '# Focusable elements target size', + '', + `Generated: ${new Date().toISOString()}`, + `URLs tested: ${TEST_URLS.length}`, + `Total focusable elements: ${totalFocusable}`, + '', + '**Text link** (✓) = inline text `<a href>` with no img/svg; height is determined by font size (WCAG 2.2 height exception applies).', + '', + headerRow, + sepRow, + ...bodyRows.map((r) => '| ' + r + ' |'), + ].join('\n'); + + const reportPath = testInfo.outputPath('target-size-report.md'); + const csvPath = testInfo.outputPath('target-size-report.csv'); + fs.mkdirSync(path.dirname(reportPath), { recursive: true }); + fs.writeFileSync(reportPath, table, 'utf8'); + + // CSV output: escape fields that contain comma, quote, or newline + const escapeCsv = (val) => { + const s = String(val ?? ''); + if (/[",\r\n]/.test(s)) return `"${s.replace(/"/g, '""')}"`; + return s; + }; + const csvHeaders = ['URL', '#', 'Tag', 'Name / Label', 'Width (px)', 'Height (px)', 'Text link', `≥${MIN_TARGET_AA}×${MIN_TARGET_AA} (AA)`, `≥${MIN_TARGET_AAA}×${MIN_TARGET_AAA} (AAA)`]; + const csvRows = [ + csvHeaders.join(','), + ...allRows.map((row) => + [ + escapeCsv(row.url), + row.index, + escapeCsv(row.tag), + escapeCsv(row.name), + row.width, + row.height, + row.isTextLink ? 'Y' : '', + row.meetsAA ? 'Y' : 'N', + row.meetsAAA ? 'Y' : 'N', + ].join(',') + ), + ]; + fs.writeFileSync(csvPath, csvRows.join('\n'), 'utf8'); + + testInfo.attachments.push({ + name: 'target-size-report', + path: reportPath, + contentType: 'text/markdown', + }); + testInfo.attachments.push({ + name: 'target-size-report.csv', + path: csvPath, + contentType: 'text/csv', + }); + + // Optional: log path so it's visible in runner output + console.log('Target size report written to:', reportPath); + console.log('Target size CSV written to:', csvPath); + + expect(totalFocusable).toBeGreaterThanOrEqual(0); +}); diff --git a/a11y/results/json/clarity-cardinal.json b/a11y/results/json/clarity-cardinal.json new file mode 100644 index 0000000..82b4458 --- /dev/null +++ b/a11y/results/json/clarity-cardinal.json @@ -0,0 +1,354 @@ +[ + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".motion-reduce\\:-bottom-64", + "html_snippet": "<aside class=\" motion-reduce:-bottom-64 max-lg:motion-safe:-bottom-12 lg:motion-safe:-bottom-36 motion-safe:rallax z-0 relative left-2 \">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".-right-24", + "html_snippet": "<aside class=\" z-10 relative -right-24 motion-safe:-top-32 motion-reduce:-top-12 motion-safe:rallax \"> <img class=\"lg:hidden absolute z-0 w-96 top-0 right-0\" src=\"/static/hourglass/media/backgrounds/c", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".-left-20", + "html_snippet": "<aside class=\"z-0 relative -left-20 -bottom-48 motion-safe:rallax\"> <img class=\"max-lg:hidden absolute z-0 w-96 bottom-0 left-0\" src=\"/static/hourglass/media/backgrounds/circle-blue-textured.png\" widt", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".motion-reduce\\:-bottom-12", + "html_snippet": "<aside class=\" max-lg:hidden z-0 relative -right-12 motion-reduce:-bottom-12 motion-safe:bottom-24 motion-safe:rallax \">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".max-lg\\:right-0", + "html_snippet": "<aside class=\" z-0 relative motion-safe:rallax max-lg:right-0 lg:left-28 max-lg:top-0 lg:motion-reduce:top-72 lg:motion-safe:top-28 \">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".max-lg\\:-top-32", + "html_snippet": "<aside class=\"z-0 relative max-lg:-top-32 lg:-top-56 -right-20 motion-safe:rallax\"> <img class=\"max-lg:hidden absolute z-0 w-96 top-0 right-0\" src=\"/static/hourglass/media/backgrounds/circle-blue-text", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".max-lg\\:mt-48 > .-bottom-12.-right-12", + "html_snippet": "<aside class=\"z-0 relative -right-12 -bottom-12 motion-safe:rallax\"> <img class=\"lg:hidden absolute w-96 -left-40 -bottom-48\" src=\"/static/hourglass/media/backgrounds/circle-blue-textured.png\" width=\"", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".lg\\:-bottom-32", + "html_snippet": "<aside class=\"relative lg:-left-16 lg:-bottom-32 motion-safe:rallax\">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".group\\/top", + "html_snippet": "<nav class=\"max-lg:hidden group/top\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".glide__slide--active.glide__slide.justify-center > section[aria-label=\"Quote\"]", + "html_snippet": "<section aria-label=\"Quote\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"a11y-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/accessible.svg\" aria-labelledby=\"a11y-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"mobile-account-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/account.svg\" aria-labelledby=\"mobile-account-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/404/", + "rule_id": "document-title", + "impact": "serious", + "Selector": "html", + "html_snippet": "<html lang=\"en-GB\" class=\"overflow-x-clip scroll-pt-36\">", + "failure_summary": "Fix any of the following:\n Document does not have a non-empty <title> element" + }, + { + "url": "http://localhost:8000/404/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".group\\/top", + "html_snippet": "<nav class=\"max-lg:hidden group/top\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/404/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"a11y-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/accessible.svg\" aria-labelledby=\"a11y-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/404/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"mobile-account-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/account.svg\" aria-labelledby=\"mobile-account-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".motion-safe\\:bottom-0", + "html_snippet": "<aside class=\" z-0 relative left-0 motion-reduce:-bottom-24 motion-safe:bottom-0 motion-safe:rallax \">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".lg\\:-left-16", + "html_snippet": "<aside class=\"relative lg:-left-16 lg:-bottom-32 motion-safe:rallax\">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".group\\/top", + "html_snippet": "<nav class=\"max-lg:hidden group/top\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"a11y-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/accessible.svg\" aria-labelledby=\"a11y-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"mobile-account-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/account.svg\" aria-labelledby=\"mobile-account-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "label", + "impact": "critical", + "Selector": "#id_captcha_0", + "html_snippet": "<input type=\"text\" name=\"captcha_0\" size=\"5\" class=\" ...\" required=\"\" id=\"id_captcha_0\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element has no placeholder attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".group\\/top", + "html_snippet": "<nav class=\"max-lg:hidden group/top\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".max-lg\\:-top-72", + "html_snippet": "<aside class=\" relative max-lg:-top-72 lg:-top-24 max-lg:right-0 lg:-right-20 xl:-right-32 \">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"a11y-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/accessible.svg\" aria-labelledby=\"a11y-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"mobile-account-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/account.svg\" aria-labelledby=\"mobile-account-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/olh/", + "rule_id": "heading-order", + "impact": "moderate", + "Selector": ".card-body > h4", + "html_snippet": "<h4 class=\"\">History of the Journal</h4>", + "failure_summary": "Fix any of the following:\n Heading order invalid" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "p:nth-child(15) > a:nth-child(3)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/help/view/editorial/topic/000044\">.</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (11.2px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 11.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/submissions/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "li:nth-child(9) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"/help/view/editorial/topic/000044\" target=\"_blank\">.</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (11.2px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 11.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/news/429/", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".badge", + "html_snippet": "<a href=\"/olh/news/tag/Digital%20Humanities/\" class=\"badge badge-secondary badge-pill \"> Digital Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #ffffff, background color: #c05555, font size: 9.0pt (12px), font weight: bold). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[itemprop=\"email\"] > span:nth-child(1)", + "html_snippet": "<span>8346@example.org</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.17 (foreground color: #e7e7e7, background color: #f8f9fa, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#n3-nm1", + "html_snippet": "<a class=\"xref-fn\" href=\"#n3\" id=\"n3-nm1\"><sup>3</sup></a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (15.4px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 16.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#n36-nm1", + "html_snippet": "<a class=\"xref-fn\" href=\"#n36\" id=\"n36-nm1\"><sup>36</sup></a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (22.9px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 22.8px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n1-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n1-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n3-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n3-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n4-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n4-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n8-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n8-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n9-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n9-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n12-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n12-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n14-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n14-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n16-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n16-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n27-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n27-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n34-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n34-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4405/", + "rule_id": "list", + "impact": "serious", + "Selector": "#reflist > ul", + "html_snippet": "<ul>", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: h2" + } +] \ No newline at end of file diff --git a/a11y/results/json/clarity-evergreen.json b/a11y/results/json/clarity-evergreen.json new file mode 100644 index 0000000..5cf750a --- /dev/null +++ b/a11y/results/json/clarity-evergreen.json @@ -0,0 +1,338 @@ +[ + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".motion-reduce\\:-bottom-64", + "html_snippet": "<aside class=\" motion-reduce:-bottom-64 max-lg:motion-safe:-bottom-12 lg:motion-safe:-bottom-36 motion-safe:rallax z-0 relative left-2 \">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".-right-24", + "html_snippet": "<aside class=\" z-10 relative -right-24 motion-safe:-top-32 motion-reduce:-top-12 motion-safe:rallax \"> <img class=\"lg:hidden absolute z-0 w-96 top-0 right-0\" src=\"/static/hourglass/media/backgrounds/c", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".-left-20", + "html_snippet": "<aside class=\"z-0 relative -left-20 -bottom-48 motion-safe:rallax\"> <img class=\"max-lg:hidden absolute z-0 w-96 bottom-0 left-0\" src=\"/static/hourglass/media/backgrounds/circle-blue-textured.png\" widt", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".motion-reduce\\:-bottom-12", + "html_snippet": "<aside class=\" max-lg:hidden z-0 relative -right-12 motion-reduce:-bottom-12 motion-safe:bottom-24 motion-safe:rallax \">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".max-lg\\:right-0", + "html_snippet": "<aside class=\" z-0 relative motion-safe:rallax max-lg:right-0 lg:left-28 max-lg:top-0 lg:motion-reduce:top-72 lg:motion-safe:top-28 \">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".max-lg\\:-top-32", + "html_snippet": "<aside class=\"z-0 relative max-lg:-top-32 lg:-top-56 -right-20 motion-safe:rallax\"> <img class=\"max-lg:hidden absolute z-0 w-96 top-0 right-0\" src=\"/static/hourglass/media/backgrounds/circle-blue-text", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".max-lg\\:mt-48 > .-bottom-12.-right-12", + "html_snippet": "<aside class=\"z-0 relative -right-12 -bottom-12 motion-safe:rallax\"> <img class=\"lg:hidden absolute w-96 -left-40 -bottom-48\" src=\"/static/hourglass/media/backgrounds/circle-blue-textured.png\" width=\"", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".lg\\:-bottom-32", + "html_snippet": "<aside class=\"relative lg:-left-16 lg:-bottom-32 motion-safe:rallax\">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".group\\/top", + "html_snippet": "<nav class=\"max-lg:hidden group/top\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".glide__slide--active.glide__slide.justify-center > section[aria-label=\"Quote\"]", + "html_snippet": "<section aria-label=\"Quote\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"a11y-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/accessible.svg\" aria-labelledby=\"a11y-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"mobile-account-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/account.svg\" aria-labelledby=\"mobile-account-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/404/", + "rule_id": "document-title", + "impact": "serious", + "Selector": "html", + "html_snippet": "<html lang=\"en-GB\" class=\"overflow-x-clip scroll-pt-36\">", + "failure_summary": "Fix any of the following:\n Document does not have a non-empty <title> element" + }, + { + "url": "http://localhost:8000/404/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".group\\/top", + "html_snippet": "<nav class=\"max-lg:hidden group/top\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/404/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"a11y-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/accessible.svg\" aria-labelledby=\"a11y-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/404/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"mobile-account-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/account.svg\" aria-labelledby=\"mobile-account-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".motion-safe\\:bottom-0", + "html_snippet": "<aside class=\" z-0 relative left-0 motion-reduce:-bottom-24 motion-safe:bottom-0 motion-safe:rallax \">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".lg\\:-left-16", + "html_snippet": "<aside class=\"relative lg:-left-16 lg:-bottom-32 motion-safe:rallax\">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".group\\/top", + "html_snippet": "<nav class=\"max-lg:hidden group/top\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"a11y-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/accessible.svg\" aria-labelledby=\"a11y-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"mobile-account-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/account.svg\" aria-labelledby=\"mobile-account-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "label", + "impact": "critical", + "Selector": "#id_captcha_0", + "html_snippet": "<input type=\"text\" name=\"captcha_0\" size=\"5\" class=\" ...\" required=\"\" id=\"id_captcha_0\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element has no placeholder attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".group\\/top", + "html_snippet": "<nav class=\"max-lg:hidden group/top\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".max-lg\\:-top-72", + "html_snippet": "<aside class=\" relative max-lg:-top-72 lg:-top-24 max-lg:right-0 lg:-right-20 xl:-right-32 \">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"a11y-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/accessible.svg\" aria-labelledby=\"a11y-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"mobile-account-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/account.svg\" aria-labelledby=\"mobile-account-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/olh/", + "rule_id": "heading-order", + "impact": "moderate", + "Selector": ".card-body > h4", + "html_snippet": "<h4 class=\"\">History of the Journal</h4>", + "failure_summary": "Fix any of the following:\n Heading order invalid" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "p:nth-child(15) > a:nth-child(3)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/help/view/editorial/topic/000044\">.</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (11.2px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 11.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/submissions/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "li:nth-child(9) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"/help/view/editorial/topic/000044\" target=\"_blank\">.</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (11.2px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 11.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#n3-nm1", + "html_snippet": "<a class=\"xref-fn\" href=\"#n3\" id=\"n3-nm1\"><sup>3</sup></a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (15.4px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 16.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#n36-nm1", + "html_snippet": "<a class=\"xref-fn\" href=\"#n36\" id=\"n36-nm1\"><sup>36</sup></a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (22.9px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 22.8px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n1-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n1-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n3-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n3-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n4-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n4-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n8-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n8-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n9-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n9-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n12-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n12-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n14-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n14-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n16-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n16-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n27-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n27-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n34-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n34-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4405/", + "rule_id": "list", + "impact": "serious", + "Selector": "#reflist > ul", + "html_snippet": "<ul>", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: h2" + } +] \ No newline at end of file diff --git a/a11y/results/json/clarity-ocean.json b/a11y/results/json/clarity-ocean.json new file mode 100644 index 0000000..f5ca821 --- /dev/null +++ b/a11y/results/json/clarity-ocean.json @@ -0,0 +1,354 @@ +[ + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".motion-reduce\\:-bottom-64", + "html_snippet": "<aside class=\" motion-reduce:-bottom-64 max-lg:motion-safe:-bottom-12 lg:motion-safe:-bottom-36 motion-safe:rallax z-0 relative left-2 \">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".-right-24", + "html_snippet": "<aside class=\" z-10 relative -right-24 motion-safe:-top-32 motion-reduce:-top-12 motion-safe:rallax \"> <img class=\"lg:hidden absolute z-0 w-96 top-0 right-0\" src=\"/static/hourglass/media/backgrounds/c", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".-left-20", + "html_snippet": "<aside class=\"z-0 relative -left-20 -bottom-48 motion-safe:rallax\"> <img class=\"max-lg:hidden absolute z-0 w-96 bottom-0 left-0\" src=\"/static/hourglass/media/backgrounds/circle-blue-textured.png\" widt", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".motion-reduce\\:-bottom-12", + "html_snippet": "<aside class=\" max-lg:hidden z-0 relative -right-12 motion-reduce:-bottom-12 motion-safe:bottom-24 motion-safe:rallax \">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".max-lg\\:right-0", + "html_snippet": "<aside class=\" z-0 relative motion-safe:rallax max-lg:right-0 lg:left-28 max-lg:top-0 lg:motion-reduce:top-72 lg:motion-safe:top-28 \">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".max-lg\\:-top-32", + "html_snippet": "<aside class=\"z-0 relative max-lg:-top-32 lg:-top-56 -right-20 motion-safe:rallax\"> <img class=\"max-lg:hidden absolute z-0 w-96 top-0 right-0\" src=\"/static/hourglass/media/backgrounds/circle-blue-text", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".max-lg\\:mt-48 > .-bottom-12.-right-12", + "html_snippet": "<aside class=\"z-0 relative -right-12 -bottom-12 motion-safe:rallax\"> <img class=\"lg:hidden absolute w-96 -left-40 -bottom-48\" src=\"/static/hourglass/media/backgrounds/circle-blue-textured.png\" width=\"", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".lg\\:-bottom-32", + "html_snippet": "<aside class=\"relative lg:-left-16 lg:-bottom-32 motion-safe:rallax\">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".group\\/top", + "html_snippet": "<nav class=\"max-lg:hidden group/top\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".glide__slide--active.glide__slide.justify-center > section[aria-label=\"Quote\"]", + "html_snippet": "<section aria-label=\"Quote\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"a11y-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/accessible.svg\" aria-labelledby=\"a11y-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"mobile-account-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/account.svg\" aria-labelledby=\"mobile-account-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/404/", + "rule_id": "document-title", + "impact": "serious", + "Selector": "html", + "html_snippet": "<html lang=\"en-GB\" class=\"overflow-x-clip scroll-pt-36\">", + "failure_summary": "Fix any of the following:\n Document does not have a non-empty <title> element" + }, + { + "url": "http://localhost:8000/404/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".group\\/top", + "html_snippet": "<nav class=\"max-lg:hidden group/top\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/404/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"a11y-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/accessible.svg\" aria-labelledby=\"a11y-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/404/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"mobile-account-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/account.svg\" aria-labelledby=\"mobile-account-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".motion-safe\\:bottom-0", + "html_snippet": "<aside class=\" z-0 relative left-0 motion-reduce:-bottom-24 motion-safe:bottom-0 motion-safe:rallax \">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".lg\\:-left-16", + "html_snippet": "<aside class=\"relative lg:-left-16 lg:-bottom-32 motion-safe:rallax\">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".group\\/top", + "html_snippet": "<nav class=\"max-lg:hidden group/top\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"a11y-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/accessible.svg\" aria-labelledby=\"a11y-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/journals/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"mobile-account-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/account.svg\" aria-labelledby=\"mobile-account-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "label", + "impact": "critical", + "Selector": "#id_captcha_0", + "html_snippet": "<input type=\"text\" name=\"captcha_0\" size=\"5\" class=\" ...\" required=\"\" id=\"id_captcha_0\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element has no placeholder attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".group\\/top", + "html_snippet": "<nav class=\"max-lg:hidden group/top\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": ".max-lg\\:-top-72", + "html_snippet": "<aside class=\" relative max-lg:-top-72 lg:-top-24 max-lg:right-0 lg:-right-20 xl:-right-32 \">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"a11y-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/accessible.svg\" aria-labelledby=\"a11y-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/contact/", + "rule_id": "presentation-role-conflict", + "impact": "minor", + "Selector": "img[aria-labelledby=\"mobile-account-nav\"]", + "html_snippet": "<img class=\"max-lg:hidden h-8 lg:m-2\" src=\"/static/hourglass/media/icons/account.svg\" aria-labelledby=\"mobile-account-nav\" alt=\"\">", + "failure_summary": "Fix all of the following:\n Element does not have global ARIA attribute" + }, + { + "url": "http://localhost:8000/olh/", + "rule_id": "heading-order", + "impact": "moderate", + "Selector": ".card-body > h4", + "html_snippet": "<h4 class=\"\">History of the Journal</h4>", + "failure_summary": "Fix any of the following:\n Heading order invalid" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "p:nth-child(15) > a:nth-child(3)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/help/view/editorial/topic/000044\">.</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (11.2px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 11.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/submissions/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "li:nth-child(9) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"/help/view/editorial/topic/000044\" target=\"_blank\">.</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (11.2px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 11.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/news/429/", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".badge", + "html_snippet": "<a href=\"/olh/news/tag/Digital%20Humanities/\" class=\"badge badge-secondary badge-pill \"> Digital Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 4.45 (foreground color: #ffffff, background color: #5a7a9e, font size: 9.0pt (12px), font weight: bold). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[itemprop=\"email\"] > span:nth-child(1)", + "html_snippet": "<span>8346@example.org</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 4.37 (foreground color: #757575, background color: #f8f9fa, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#n3-nm1", + "html_snippet": "<a class=\"xref-fn\" href=\"#n3\" id=\"n3-nm1\"><sup>3</sup></a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (15.4px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 16.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#n36-nm1", + "html_snippet": "<a class=\"xref-fn\" href=\"#n36\" id=\"n36-nm1\"><sup>36</sup></a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (22.9px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 22.8px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n1-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n1-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n3-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n3-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n4-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n4-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n8-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n8-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n9-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n9-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n12-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n12-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n14-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n14-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n16-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n16-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n27-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n27-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n34-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n34-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4405/", + "rule_id": "list", + "impact": "serious", + "Selector": "#reflist > ul", + "html_snippet": "<ul>", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: h2" + } +] \ No newline at end of file diff --git a/a11y/results/json/clean.json b/a11y/results/json/clean.json new file mode 100644 index 0000000..f9f105c --- /dev/null +++ b/a11y/results/json/clean.json @@ -0,0 +1,730 @@ +[ + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(1)", + "html_snippet": "<a class=\"button\" style=\"background-color: #1d9bf0;\" href=\"https://twitter.com/openlibhums\" target=\"_blank\"> Twitter</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.08 (foreground color: #00688b, background color: #1d9bf0, font size: 14.4pt (19.2px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(2)", + "html_snippet": "<a class=\"button\" style=\"background-color: #2374e1;\" href=\"https://www.facebook.com/OpenLibHums\" target=\"_blank\"> Facebook</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.38 (foreground color: #00688b, background color: #2374e1, font size: 14.4pt (19.2px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(3)", + "html_snippet": "<a class=\"button\" style=\"background-color: #ee802f;\" href=\"https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6\" target=\"_blank\"> Mailing List</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.31 (foreground color: #00688b, background color: #ee802f, font size: 14.4pt (19.2px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(1) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/4318b0e9-7fe0-458e-b581-47a8272445ff.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(2) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/d51381e2-1e9d-43af-8a16-426ebd422c2b.png\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(3) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/2f229b0f-fe4b-4305-8ef8-d79605b9a39a.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(4) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/d1f92d18-6e26-416a-8ddc-e4e064e74e0e.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(5) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/e051960a-9ce2-4b67-bdb0-8e5c0802a702.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(6) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/9501ef33-cd65-4af1-b8e7-17af621e56e0.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(7) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/7ff745d8-348a-4e3a-a988-c4b259c59c2d.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(8) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/0cfb39c2-f06f-4d29-a37b-de44ee71fc0d.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(9) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/9cbf1eea-4add-4c66-acf2-d72f4ea77b6d.38\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(10) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/cfb0e4ce-5a9f-492d-8461-802e02eebe51.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(11) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/f78bdc5d-9e23-40bd-8db8-5e63d598f8a0.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(12) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/1de2f639-9b01-4892-9d15-86632a5b1e53.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(13) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/4f538326-d67e-49f5-a01f-03bd86921b74.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(14) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/cb49fae9-7091-4314-ac3f-838cb9797965.png\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(15) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/6815d33a-4ccf-49f5-9897-2d9f19623a1c.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(16) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/cb7b88b7-f019-4c75-9448-18a1f07cb794\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(17) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/f587b2c3-7c94-4b9f-bc62-f740906c4586.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(18) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/2b0cf43f-492c-4d69-93aa-2113adce0120.png\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(19) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/a9f5bb3d-0647-4be7-8bc7-e9fcf684a03a.png\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(20) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/402a83ca-d270-42a8-a0bf-a9bc2cbd7da4.png\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".col-md-4.row-eq-height:nth-child(21) > .card > .card-img-top.img-fluid", + "html_snippet": "<img class=\"card-img-top img-fluid\" src=\" /media/cover_images/78d30292-9373-45ca-a179-2abbb4ca2a3a.jpg\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": "a > img", + "html_snippet": "<img class=\"\" src=\"https://www.openlibhums.org/media/press/Conference_programme.png\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": "#footer > .row > .col-md-2 > .top-bar-image.img-fluid[src$=\"cover/\"]", + "html_snippet": "<img src=\"/press/cover/\" class=\"top-bar-image img-fluid\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "page-has-heading-one", + "impact": "moderate", + "Selector": "html", + "html_snippet": "<html lang=\"en-us\">", + "failure_summary": "Fix all of the following:\n Page must have a level-one heading" + }, + { + "url": "http://localhost:8000/?theme=clean", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 91.7px by 23px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 17px instead of at least 24px." + }, + { + "url": "http://localhost:8000/404/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(1)", + "html_snippet": "<a class=\"button\" style=\"background-color: #1d9bf0;\" href=\"https://twitter.com/openlibhums\" target=\"_blank\"> Twitter</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.08 (foreground color: #00688b, background color: #1d9bf0, font size: 14.4pt (19.2px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/404/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(2)", + "html_snippet": "<a class=\"button\" style=\"background-color: #2374e1;\" href=\"https://www.facebook.com/OpenLibHums\" target=\"_blank\"> Facebook</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.38 (foreground color: #00688b, background color: #2374e1, font size: 14.4pt (19.2px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/404/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(3)", + "html_snippet": "<a class=\"button\" style=\"background-color: #ee802f;\" href=\"https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6\" target=\"_blank\"> Mailing List</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.31 (foreground color: #00688b, background color: #ee802f, font size: 14.4pt (19.2px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/404/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": "#footer > .row > .col-md-2 > img", + "html_snippet": "<img src=\"/press/cover/\" class=\"top-bar-image img-fluid\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/404/?theme=clean", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 92.1px by 23px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 20px instead of at least 24px." + }, + { + "url": "http://localhost:8000/journals/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(1)", + "html_snippet": "<a class=\"button\" style=\"background-color: #1d9bf0;\" href=\"https://twitter.com/openlibhums\" target=\"_blank\"> Twitter</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.08 (foreground color: #00688b, background color: #1d9bf0, font size: 14.4pt (19.2px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/journals/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(2)", + "html_snippet": "<a class=\"button\" style=\"background-color: #2374e1;\" href=\"https://www.facebook.com/OpenLibHums\" target=\"_blank\"> Facebook</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.38 (foreground color: #00688b, background color: #2374e1, font size: 14.4pt (19.2px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/journals/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(3)", + "html_snippet": "<a class=\"button\" style=\"background-color: #ee802f;\" href=\"https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6\" target=\"_blank\"> Mailing List</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.31 (foreground color: #00688b, background color: #ee802f, font size: 14.4pt (19.2px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/journals/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": "#footer > .row > .col-md-2 > .top-bar-image[src$=\"cover/\"]", + "html_snippet": "<img src=\"/press/cover/\" class=\"top-bar-image img-fluid\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/journals/?theme=clean", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 92.1px by 23px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 20px instead of at least 24px." + }, + { + "url": "http://localhost:8000/contact/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(1)", + "html_snippet": "<a class=\"button\" style=\"background-color: #1d9bf0;\" href=\"https://twitter.com/openlibhums\" target=\"_blank\"> Twitter</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.08 (foreground color: #00688b, background color: #1d9bf0, font size: 14.4pt (19.2px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/contact/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(2)", + "html_snippet": "<a class=\"button\" style=\"background-color: #2374e1;\" href=\"https://www.facebook.com/OpenLibHums\" target=\"_blank\"> Facebook</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.38 (foreground color: #00688b, background color: #2374e1, font size: 14.4pt (19.2px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/contact/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(3)", + "html_snippet": "<a class=\"button\" style=\"background-color: #ee802f;\" href=\"https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6\" target=\"_blank\"> Mailing List</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.31 (foreground color: #00688b, background color: #ee802f, font size: 14.4pt (19.2px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/contact/?theme=clean", + "rule_id": "image-alt", + "impact": "critical", + "Selector": "#footer > .row > .col-md-2 > img", + "html_snippet": "<img src=\"/press/cover/\" class=\"top-bar-image img-fluid\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/contact/?theme=clean", + "rule_id": "label", + "impact": "critical", + "Selector": "#id_captcha_0", + "html_snippet": "<input type=\"text\" name=\"captcha_0\" size=\"5\" required=\"\" id=\"id_captcha_0\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element has no placeholder attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/contact/?theme=clean", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 92.1px by 23px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 20px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/?theme=clean", + "rule_id": "heading-order", + "impact": "moderate", + "Selector": ".col-md-12 > h4", + "html_snippet": "<h4 class=\"\">History of the Journal</h4>", + "failure_summary": "Fix any of the following:\n Heading order invalid" + }, + { + "url": "http://localhost:8000/olh/?theme=clean", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": "section[aria-labelledby=\"featured-title\"]", + "html_snippet": "<section aria-labelledby=\"featured-title\">", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/olh/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/accessibility/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=clean ", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/search/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_title\"]", + "html_snippet": "<label class=\"form-check-label\" for=\"id_title\">Search Titles</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #28a745, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_abstract\"]", + "html_snippet": "<label class=\"form-check-label\" for=\"id_abstract\">Search Abstract</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #28a745, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_authors\"]", + "html_snippet": "<label class=\"form-check-label\" for=\"id_authors\">Search Authors</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #28a745, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_keywords\"]", + "html_snippet": "<label class=\"form-check-label\" for=\"id_keywords\">Search Keywords</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #28a745, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_full_text\"]", + "html_snippet": "<label class=\"form-check-label\" for=\"id_full_text\">Search Full Text</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #28a745, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_orcid\"]", + "html_snippet": "<label class=\"form-check-label\" for=\"id_orcid\">Search ORCIDs</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #28a745, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".form-group:nth-child(1) > ul", + "html_snippet": "<ul>", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: ul" + }, + { + "url": "http://localhost:8000/olh/search/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=clean", + "rule_id": "target-size", + "impact": "serious", + "Selector": "p:nth-child(15) > a:nth-child(3)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/help/view/editorial/topic/000044\">.</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (12.4px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 12.4px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=clean", + "rule_id": "target-size", + "impact": "serious", + "Selector": "li:nth-child(9) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"/help/view/editorial/topic/000044\" target=\"_blank\">.</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (12.4px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 12.4px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/issues/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/news/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=clean", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select[name=\"order_by\"]", + "html_snippet": "<select class=\"custom-select\" onchange=\"this.form.submit()\" name=\"order_by\" form=\"facet_form\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=clean", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select[name=\"paginate_by\"]", + "html_snippet": "<select class=\"custom-select\" onchange=\"this.form.submit()\" name=\"paginate_by\" form=\"facet_form\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=clean", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#n3-nm1", + "html_snippet": "<a class=\"xref-fn\" href=\"#n3\" id=\"n3-nm1\"><sup>3</sup></a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (15.5px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 19.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=clean", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#n17-nm1", + "html_snippet": "<a class=\"xref-fn\" href=\"#n17\" id=\"n17-nm1\"><sup>17</sup></a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (20.4px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 16px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=clean", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#n36-nm1", + "html_snippet": "<a class=\"xref-fn\" href=\"#n36\" id=\"n36-nm1\"><sup>36</sup></a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.2px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 23.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=clean", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n13-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n13-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 16px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=clean", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n20-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n20-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (23.7px by 32px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 16px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[data-target=\"#table-tab1\"]", + "html_snippet": "<button type=\"button\" class=\"btn btn-link\" data-toggle=\"modal\" data-target=\"#table-tab1\" aria-describedby=\"tab1-label\">View Larger Table</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.49 (foreground color: #007bff, background color: #f0f0f0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[data-target=\"#table-tab2\"]", + "html_snippet": "<button type=\"button\" class=\"btn btn-link\" data-toggle=\"modal\" data-target=\"#table-tab2\" aria-describedby=\"tab2-label\">View Larger Table</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.49 (foreground color: #007bff, background color: #f0f0f0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[data-target=\"#table-tab3\"]", + "html_snippet": "<button type=\"button\" class=\"btn btn-link\" data-toggle=\"modal\" data-target=\"#table-tab3\" aria-describedby=\"tab3-label\">View Larger Table</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.49 (foreground color: #007bff, background color: #f0f0f0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[data-target=\"#table-tab4\"]", + "html_snippet": "<button type=\"button\" class=\"btn btn-link\" data-toggle=\"modal\" data-target=\"#table-tab4\" aria-describedby=\"tab4-label\">View Larger Table</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.49 (foreground color: #007bff, background color: #f0f0f0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[data-target=\"#table-tab5\"]", + "html_snippet": "<button type=\"button\" class=\"btn btn-link\" data-toggle=\"modal\" data-target=\"#table-tab5\" aria-describedby=\"tab5-label\">View Larger Table</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.49 (foreground color: #007bff, background color: #f0f0f0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[data-target=\"#table-tab6\"]", + "html_snippet": "<button type=\"button\" class=\"btn btn-link\" data-toggle=\"modal\" data-target=\"#table-tab6\" aria-describedby=\"tab6-label\">View Larger Table</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.49 (foreground color: #007bff, background color: #f0f0f0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[data-target=\"#table-tab7\"]", + "html_snippet": "<button type=\"button\" class=\"btn btn-link\" data-toggle=\"modal\" data-target=\"#table-tab7\" aria-describedby=\"tab7-label\">View Larger Table</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.49 (foreground color: #007bff, background color: #f0f0f0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[data-target=\"#table-tab8\"]", + "html_snippet": "<button type=\"button\" class=\"btn btn-link\" data-toggle=\"modal\" data-target=\"#table-tab8\" aria-describedby=\"tab8-label\">View Larger Table</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.49 (foreground color: #007bff, background color: #f0f0f0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=clean", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[data-target=\"#table-tab9\"]", + "html_snippet": "<button type=\"button\" class=\"btn btn-link\" data-toggle=\"modal\" data-target=\"#table-tab9\" aria-describedby=\"tab9-label\">View Larger Table</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.49 (foreground color: #007bff, background color: #f0f0f0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": "#reflist > ul", + "html_snippet": "<ul>", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: h2" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=clean", + "rule_id": "list", + "impact": "serious", + "Selector": ".text-left > .list-inline", + "html_snippet": "<ul class=\"list-inline\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: p" + } +] \ No newline at end of file diff --git a/a11y/results/json/material.json b/a11y/results/json/material.json new file mode 100644 index 0000000..b3dc2ba --- /dev/null +++ b/a11y/results/json/material.json @@ -0,0 +1,7282 @@ +[ + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label", + "html_snippet": "<label for=\"article_search\">Search</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 16.9pt (22.5px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/collections/collection/\" target=\"_blank\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(6) > a:nth-child(2)", + "html_snippet": "<a style=\"background-color: rgb(255, 255, 255);\" href=\"https://olh.openlibhums.org/collections/collection/\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(6) > a:nth-child(3)", + "html_snippet": "<a style=\"background-color: rgb(255, 255, 255);\" href=\"https://olh.openlibhums.org/site/special-collections/\">how to apply</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/759/\"]", + "html_snippet": "<a href=\"/olh/news/759/\" aria-describedby=\"news-759\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/758/\"]", + "html_snippet": "<a href=\"/olh/news/758/\" aria-describedby=\"news-758\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/757/\"]", + "html_snippet": "<a href=\"/olh/news/757/\" aria-describedby=\"news-757\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/756/\"]", + "html_snippet": "<a href=\"/olh/news/756/\" aria-describedby=\"news-756\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/755/\"]", + "html_snippet": "<a href=\"/olh/news/755/\" aria-describedby=\"news-755\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "heading-order", + "impact": "moderate", + "Selector": ".card-content > h4", + "html_snippet": "<h4 class=\"\">History of the Journal</h4>", + "failure_summary": "Fix any of the following:\n Heading order invalid" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/accessibility/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/accessibility/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/accessibility/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/accessibility/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/accessibility/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".control-label", + "html_snippet": "<label class=\"control-label s12 \">Who would you like to contact?</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 9.0pt (12px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_sender\"]", + "html_snippet": "<label class=\"\" for=\"id_sender\">Your contact email address</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_subject\"]", + "html_snippet": "<label class=\"\" for=\"id_subject\">Subject</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_body\"]", + "html_snippet": "<label class=\"\" for=\"id_body\">Your message</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_captcha\"]", + "html_snippet": "<label class=\"\" for=\"id_captcha\">Answer this question: </label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button", + "html_snippet": "<button type=\"submit\" class=\"btn\">Send Message</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #ffffff, background color: #26a69a, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "label", + "impact": "critical", + "Selector": "#m_select-input-458c3cd9-e377-b79b-8993-a70827cc299f", + "html_snippet": "<input id=\"m_select-input-458c3...\" class=\"select-dropdown drop...\" type=\"text\" readonly=\"true\" data-target=\"select-options-7b0f6...\" aria-readonly=\"true\" aria-required=\"false\" role=\"combobox\" aria-ow", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element has no placeholder attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "label", + "impact": "critical", + "Selector": "#id_captcha_0", + "html_snippet": "<input type=\"text\" name=\"captcha_0\" size=\"5\" class=\" validate\" required=\"\" id=\"id_captcha_0\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element has no placeholder attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select[name=\"recipient\"]", + "html_snippet": "<select name=\"recipient\" class=\" validate\" tabindex=\"-1\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "rule_id": "select-name", + "impact": "critical", + "Selector": ".browser-default", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(2) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a", + "html_snippet": "<a href=\"/olh/profile/76ce2832-629c-4240-a37b-a3772baba951/\" aria-describedby=\"member-76ce2832-629c-4240-a37b-a3772baba951\"> View Profile </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(2) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a:nth-child(1)", + "html_snippet": "<a href=\"https://www.bbk.ac.uk/our-staff/profile/9244765/rose-harris-birtill\" aria-label=\"Person 2537 Family 2537's website\"> <i aria-hidden=\"true\" class=\"fa fa-globe\"></i> Website </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".s12.m3.col:nth-child(2) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a:nth-child(2)", + "html_snippet": "<a href=\"https://www.twitter.com/roseharrisb\" aria-label=\"Person 2537 Family 2537's twitter profile\"> <i aria-hidden=\"true\" class=\"fa fa-twitter-square\"></i> Twitter </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a:nth-child(3)", + "html_snippet": "<a href=\"https://www.linkedin.com/in/rosehb\" aria-label=\"Person 2537 Family 2537's linkedin profile\"> <i aria-hidden=\"true\" class=\"fa fa-linkedin-square\"></i> Linkedin </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a", + "html_snippet": "<a href=\"/olh/profile/e6980887-f7c4-4833-b9e8-98318104169b/\" aria-describedby=\"member-e6980887-f7c4-4833-b9e8-98318104169b\"> View Profile </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a[aria-label=\"Caroline Edwards's website\"]", + "html_snippet": "<a href=\"http://www.drcarolineedwards.com/\" aria-label=\"Caroline Edwards's website\"> <i aria-hidden=\"true\" class=\"fa fa-globe\"></i> Website </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a:nth-child(2)", + "html_snippet": "<a href=\"https://www.twitter.com/the_blochian\" aria-label=\"Caroline Edwards's twitter profile\"> <i aria-hidden=\"true\" class=\"fa fa-twitter-square\"></i> Twitter </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".eq-height-row.row:nth-child(3) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a", + "html_snippet": "<a href=\"/olh/profile/bed4a260-430e-4741-9f5c-ea45384c8877/\" aria-describedby=\"member-bed4a260-430e-4741-9f5c-ea45384c8877\"> View Profile </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".eq-height-row.row:nth-child(3) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a", + "html_snippet": "<a href=\"https://www.twitter.com/Simon_Everett\" aria-label=\"Simon Everett's twitter profile\"> <i aria-hidden=\"true\" class=\"fa fa-twitter-square\"></i> Twitter </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".eq-height-row.row:nth-child(4) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a", + "html_snippet": "<a href=\"/olh/profile/954d6773-124a-4993-a69c-3ebd11afc784/\" aria-describedby=\"member-954d6773-124a-4993-a69c-3ebd11afc784\"> View Profile </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".eq-height-row.row:nth-child(4) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a", + "html_snippet": "<a href=\"https://www.github.com/AmeliePlaysKath\" aria-label=\"Person 23281 Family 23281's github profile\"> <i aria-hidden=\"true\" class=\"fa fa-github-square\"></i> Github </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".eq-height-row.row:nth-child(5) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a", + "html_snippet": "<a href=\"/olh/profile/b69c8c89-36fe-4f21-8679-cea21c61fbde/\" aria-describedby=\"member-b69c8c89-36fe-4f21-8679-cea21c61fbde\"> View Profile </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".eq-height-row.row:nth-child(13) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a", + "html_snippet": "<a href=\"/olh/profile/e6980887-f7c4-4833-b9e8-98318104169b/\" aria-describedby=\"member-e6980887-f7c4-4833-b9e8-98318104169b\"> View Profile </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".eq-height-row.row:nth-child(13) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a[aria-label=\"Caroline Edwards's website\"]", + "html_snippet": "<a href=\"http://www.drcarolineedwards.com/\" aria-label=\"Caroline Edwards's website\"> <i aria-hidden=\"true\" class=\"fa fa-globe\"></i> Website </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".eq-height-row.row:nth-child(13) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a:nth-child(2)", + "html_snippet": "<a href=\"https://www.twitter.com/the_blochian\" aria-label=\"Caroline Edwards's twitter profile\"> <i aria-hidden=\"true\" class=\"fa fa-twitter-square\"></i> Twitter </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_article_search\"]", + "html_snippet": "<label class=\"\" for=\"id_article_search\">Search term</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".s12.col:nth-child(2) > div > label > span", + "html_snippet": "<span>Search Titles</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".s12.col:nth-child(3) > div > label > span", + "html_snippet": "<span>Search Abstract</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".s12.col:nth-child(4) > div > label > span", + "html_snippet": "<span>Search Authors</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".s12.col:nth-child(5) > div > label > span", + "html_snippet": "<span>Search Keywords</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".s12.col:nth-child(6) > div > label > span", + "html_snippet": "<span>Search Full Text</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".s12.col:nth-child(7) > div > label > span", + "html_snippet": "<span>Search ORCIDs</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".control-label", + "html_snippet": "<label class=\"control-label s12 \">Sort results by</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 9.0pt (12px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button", + "html_snippet": "<button type=\"submit\" class=\"btn btn-primary\"> Filter </button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #ffffff, background color: #26a69a, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "label", + "impact": "critical", + "Selector": "#m_select-input-f0d64040-f57d-9b3c-187e-8a936e6ec761", + "html_snippet": "<input id=\"m_select-input-f0d64...\" class=\"select-dropdown drop...\" type=\"text\" readonly=\"true\" data-target=\"select-options-585a6...\" aria-readonly=\"true\" aria-required=\"false\" role=\"combobox\" aria-ow", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element has no placeholder attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": ".invalid", + "html_snippet": "<select name=\"sort\" class=\" validate invalid\" tabindex=\"-1\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": ".browser-default", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"][target=\"_blank\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\" target=\"_blank\">Open Library of Humanities</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(1) > a:nth-child(4)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/collections/collection/\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a:nth-child(5)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/special-collections/\">how to apply</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"clockss.org\"]", + "html_snippet": "<a href=\"https://clockss.org\" target=\"_blank\">CLOCKSS</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[target=\"_blank\"]:nth-child(4)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/special-collections/\" target=\"_blank\"><em>Open Library of Humanities</em> Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[target=\"_blank\"]:nth-child(4) > em", + "html_snippet": "<em>Open Library of Humanities</em>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(5) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/special-collections/\" target=\"_blank\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(7) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/about/the-olh-model/\">international library consortium</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[target=\"_blank\"]:nth-child(2)", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/publisher-policies/#Archiving%20and%20Indexing\" target=\"_blank\">publisher's policy</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(10) > a[target=\"_blank\"]:nth-child(4)", + "html_snippet": "<a href=\"https://www.scopus.com/sourceid/21100867938\" target=\"_blank\">CiteScore on Scopus</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(2) > a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "p:nth-child(1) > a:nth-child(4)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/collections/collection/\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 134.9px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 15px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"clockss.org\"]", + "html_snippet": "<a href=\"https://clockss.org\" target=\"_blank\">CLOCKSS</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 72.7px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 22.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "strong > a", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/special-collections/\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#Submissions\"]", + "html_snippet": "<a href=\"#Submissions\">Submissions</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#Language and Text\"]", + "html_snippet": "<a href=\"#Language and Text\">Language and Text</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#Data and Symbols\"]", + "html_snippet": "<a href=\"#Data and Symbols\">Data and Symbols</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#Figures and Tables\"]", + "html_snippet": "<a href=\"#Figures and Tables\">Figures and Tables</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#References\"]", + "html_snippet": "<a href=\"#References\">References</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(15) > a:nth-child(2)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/blindreview/\">ensuring an anonymous review</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(30) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/competinginterests/\" target=\"_blank\">How to Declare Competing Interests</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(32) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://www.wma.net/policies-post/wma-declaration-of-helsinki-ethical-principles-for-medical-research-involving-human-subjects/\" target=\"_blank\">Declaration of Helsinki</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(75) > a", + "html_snippet": "<a href=\"http://en.wikipedia.org/wiki/Wikipedia:Manual_of_Style/Abbreviations#Miscellanea\">here</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(135) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"http://www.bipm.org/utils/common/pdf/si_brochure_8_en.pdf\" target=\"_blank\">Bureau International des Poids et Mesures</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(170) > a", + "html_snippet": "<a href=\"http://eprints.lincoln.ac.uk/id/eprint/25380/1/Harvard_Referencing_Guide.pdf\">document</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "blockquote:nth-child(248) > a", + "html_snippet": "<a href=\"https://www.theguardian.com/world/2020/sep/23/wednesday-briefing-last-orders-in-fight-to-avoid-lockdown\">https://www.theguardian.com/world/2020/sep/23/wednesday-briefing-last-orders-in-fight-", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "p:nth-child(15) > a:nth-child(3)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/help/view/editorial/topic/000044\">.</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (12px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 12px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Editorial Oversight\"]", + "html_snippet": "<a href=\"#Editorial Oversight\">Editorial Oversight</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Peer Review Process\"]", + "html_snippet": "<a href=\"#Peer Review Process\">Peer Review Process</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Governance\"]", + "html_snippet": "<a href=\"#Governance\">Organisation and Governance</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Business Practices\"]", + "html_snippet": "<a href=\"#Business Practices\">Business Practices</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Preprint Policy\"]", + "html_snippet": "<a href=\"#Preprint Policy\">Preprint Policy</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a:nth-child(6)", + "html_snippet": "<a href=\"#Conduct and Expected Behaviour\">Conduct and Expected Behaviour</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Special Collections\"]", + "html_snippet": "<a href=\"#Special Collections\"><em>OLHJ</em> Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#Special Collections\"] > em", + "html_snippet": "<em>OLHJ</em>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(6) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://www.chase.ac.uk/research-placements\" target=\"_blank\">Consortium for the Humanities and Arts South-East England</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(12) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://publicationethics.org/guidance/Guidelines\" target=\"_blank\">Committee on Publication Ethics</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(26) > a[target=\"blank_\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/publisher-policies/#Reviewer%20Responsibilities\" target=\"blank_\">‘Responsibilities of Reviewers’</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(28) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/publisher-policies/#Publication%20Ethics%20and%20Malpractice\">Publication Ethics and Malpractice Statement</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"janeway.systems\"]", + "html_snippet": "<a href=\"https://janeway.systems\" target=\"_blank\">Janeway</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(37) > a", + "html_snippet": "<a href=\"https://olh.openlibhums.org/editorialteam/\"> editorial board</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(39) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/editorialteam/\" target=\"_blank\">editorial team</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(41) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/about/the-olh-model/\" target=\"_blank\">Library Partnership Subsidy</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(41) > a:nth-child(4)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/about/\">About</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(50) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/about/the-olh-model/\" target=\"_blank\">Library Partnership Subsidy</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(54) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/publisher-policies/#Publication%20Ethics%20and%20Malpractice\">Publication Ethics and Malpractice Statement’</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(55) > a:nth-child(2)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/contact/\">Contact</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(55) > a:nth-child(4)", + "html_snippet": "<a href=\"https://www.openlibhums.org/contact/\">directly with the publisher</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(55) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/publisher-policies/#Publisher%20Responsibilities\" target=\"_blank\">‘Publication Ethics and Malpractice Statement’</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(59) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://publicationethics.org/resources/discussion-documents/guest-edited-collections\" target=\"_blank\">best practice guidelines by COPE</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(63) > a[target=\"blank_\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/publisher-policies/#Ethics%20Policies\" target=\"blank_\">Ethics Policies</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(64) > a", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/special-collections/\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Peer Review Process\"]", + "html_snippet": "<a href=\"#Peer Review Process\">Peer Review Process</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 147.3px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Governance\"]", + "html_snippet": "<a href=\"#Governance\">Organisation and Governance</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 204.8px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Business Practices\"]", + "html_snippet": "<a href=\"#Business Practices\">Business Practices</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 134.8px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "p:nth-child(55) > a:nth-child(2)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/contact/\">Contact</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 60.4px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(1) > strong > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/special-collections/\" target=\"_blank\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(2) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/author-guidelines/\" target=\"_blank\">Author Guidelines</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".btn.btn-primary:nth-child(1)", + "html_snippet": "<a href=\"/olh/register/step/1/?next=/olh/submissions/%3Ftheme%3Dmaterial\" class=\"btn btn-primary\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #ffffff, background color: #26a69a, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".btn.btn-primary:nth-child(2)", + "html_snippet": "<a href=\"/olh/login/?next=/olh/submissions/%3Ftheme%3Dmaterial\" class=\"btn btn-primary\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #ffffff, background color: #26a69a, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(8) > a:nth-child(1)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/author-guidelines/\">Author Guidelines</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(8) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/competinginterests/\" target=\"_blank\">how to declare competing interests</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(9) > a:nth-child(1)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/blindreview/\">ensuring an anonymous review</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a:nth-child(1)", + "html_snippet": "<a href=\"https://creativecommons.org/licenses/by/4.0/\">Creative Commons Attribution License</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".default-li:nth-child(6) > p:nth-child(3) > a:nth-child(2)", + "html_snippet": "<a href=\"http://creativecommons.org/licenses/\">Creative Commons License</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[target=\"_new\"]", + "html_snippet": "<a href=\"http://opcit.eprints.org/oacitation-biblio.html\" target=\"_new\">The Effect of Open Access</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/journal-policies/#Peer%20Review%20Process\" target=\"_blank\">Journal Policies</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item:nth-child(1) > strong > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://creativecommons.org/licenses/by/4.0\" target=\"_blank\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.example.com\"]", + "html_snippet": "<a href=\"https://www.example.com\" target=\"_blank\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".default-li:nth-child(9) > p:nth-child(2) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/about/the-olh-model/\">international library consortium</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "li:nth-child(9) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"/help/view/editorial/topic/000044\" target=\"_blank\">.</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (12px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 12px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-1287\"]", + "html_snippet": "<a href=\"/olh/issue/1287/info/\" aria-describedby=\"issue-1287\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-1298\"]", + "html_snippet": "<a href=\"/olh/issue/1298/info/\" aria-describedby=\"issue-1298\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-964\"]", + "html_snippet": "<a href=\"/olh/issue/964/info/\" aria-describedby=\"issue-964\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-899\"]", + "html_snippet": "<a href=\"/olh/issue/899/info/\" aria-describedby=\"issue-899\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-871\"]", + "html_snippet": "<a href=\"/olh/issue/871/info/\" aria-describedby=\"issue-871\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-852\"]", + "html_snippet": "<a href=\"/olh/issue/852/info/\" aria-describedby=\"issue-852\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-823\"]", + "html_snippet": "<a href=\"/olh/issue/823/info/\" aria-describedby=\"issue-823\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-457\"]", + "html_snippet": "<a href=\"/olh/issue/457/info/\" aria-describedby=\"issue-457\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-411\"]", + "html_snippet": "<a href=\"/olh/issue/411/info/\" aria-describedby=\"issue-411\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-410\"]", + "html_snippet": "<a href=\"/olh/issue/410/info/\" aria-describedby=\"issue-410\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-409\"]", + "html_snippet": "<a href=\"/olh/issue/409/info/\" aria-describedby=\"issue-409\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-408\"]", + "html_snippet": "<a href=\"/olh/issue/408/info/\" aria-describedby=\"issue-408\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-407\"]", + "html_snippet": "<a href=\"/olh/issue/407/info/\" aria-describedby=\"issue-407\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-406\"]", + "html_snippet": "<a href=\"/olh/issue/406/info/\" aria-describedby=\"issue-406\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-405\"]", + "html_snippet": "<a href=\"/olh/issue/405/info/\" aria-describedby=\"issue-405\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-404\"]", + "html_snippet": "<a href=\"/olh/issue/404/info/\" aria-describedby=\"issue-404\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-403\"]", + "html_snippet": "<a href=\"/olh/issue/403/info/\" aria-describedby=\"issue-403\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-402\"]", + "html_snippet": "<a href=\"/olh/issue/402/info/\" aria-describedby=\"issue-402\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"issue-401\"]", + "html_snippet": "<a href=\"/olh/issue/401/info/\" aria-describedby=\"issue-401\"> View Issue </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(1)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/1287/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 10 • Issue 2 • 2024 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(2)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/1298/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 11 • 2024 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(3)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/964/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 10 • Issue 1 • 2024 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(4)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/899/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 9 • Issue 2 • 2023 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(5)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/871/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 9 • Issue 1 • 2023 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(6)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/852/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 8 • Issue 2 • 2022 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(7)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/823/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 8 • Issue 1 • 2022 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(8)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/457/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 7 • Issue 2 • 2021 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(9)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/411/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 7 • Issue 1 • 2021 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(10)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/410/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 6 • Issue 2 • 2020 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(11)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/409/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 6 • Issue 1 • 2020 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(12)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/408/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 5 • Issue 1 • 2019 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(13)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/407/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 4 • Issue 2 • 2018 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(14)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/406/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 4 • Issue 1 • 2018 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(15)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/405/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 3 • Issue 2 • 2017 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(16)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/404/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 3 • Issue 1 • 2017 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(17)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/403/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 2 • Issue 2 • 2016 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".active.collection-item[href$=\"info/\"]", + "html_snippet": "<a class=\"collection-item active\" href=\"/olh/issue/402/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 2 • Issue 1 • 2016 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.79 (foreground color: #eafaf9, background color: #26a69a, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 2, Issue 1, 2016\"]:nth-child(19)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/401/info/\" aria-label=\"Volume 2, Issue 1, 2016\"> Volume 1 • Issue 1 • 2015 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "list", + "impact": "serious", + "Selector": ".collection", + "html_snippet": "<ul class=\"collection\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: a" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(1)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/1287/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 10 • Issue 2 • 2024 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(2)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/1298/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 11 • 2024 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(3)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/964/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 10 • Issue 1 • 2024 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(4)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/899/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 9 • Issue 2 • 2023 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(5)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/871/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 9 • Issue 1 • 2023 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(6)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/852/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 8 • Issue 2 • 2022 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(7)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/823/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 8 • Issue 1 • 2022 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(8)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/457/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 7 • Issue 2 • 2021 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(9)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/411/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 7 • Issue 1 • 2021 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(10)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/410/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 6 • Issue 2 • 2020 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".active.collection-item[href$=\"info/\"]", + "html_snippet": "<a class=\"collection-item active\" href=\"/olh/issue/409/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 6 • Issue 1 • 2020 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.79 (foreground color: #eafaf9, background color: #26a69a, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(12)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/408/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 5 • Issue 1 • 2019 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(13)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/407/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 4 • Issue 2 • 2018 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(14)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/406/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 4 • Issue 1 • 2018 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(15)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/405/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 3 • Issue 2 • 2017 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(16)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/404/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 3 • Issue 1 • 2017 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(17)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/403/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 2 • Issue 2 • 2016 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(18)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/402/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 2 • Issue 1 • 2016 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".collection-item[href$=\"info/\"][aria-label=\"Volume 6, Issue 1, 2020\"]:nth-child(19)", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/issue/401/info/\" aria-label=\"Volume 6, Issue 1, 2020\"> Volume 1 • Issue 1 • 2015 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "list", + "impact": "serious", + "Selector": ".collection", + "html_snippet": "<ul class=\"collection\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: a" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/963/\"]", + "html_snippet": "<a href=\"/olh/collections/963/\" aria-describedby=\"collection-963\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/905/\"]", + "html_snippet": "<a href=\"/olh/collections/905/\" aria-describedby=\"collection-905\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/895/\"]", + "html_snippet": "<a href=\"/olh/collections/895/\" aria-describedby=\"collection-895\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/877/\"]", + "html_snippet": "<a href=\"/olh/collections/877/\" aria-describedby=\"collection-877\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/846/\"]", + "html_snippet": "<a href=\"/olh/collections/846/\" aria-describedby=\"collection-846\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/803/\"]", + "html_snippet": "<a href=\"/olh/collections/803/\" aria-describedby=\"collection-803\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/505/\"]", + "html_snippet": "<a href=\"/olh/collections/505/\" aria-describedby=\"collection-505\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/455/\"]", + "html_snippet": "<a href=\"/olh/collections/455/\" aria-describedby=\"collection-455\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/453/\"]", + "html_snippet": "<a href=\"/olh/collections/453/\" aria-describedby=\"collection-453\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/452/\"]", + "html_snippet": "<a href=\"/olh/collections/452/\" aria-describedby=\"collection-452\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/447/\"]", + "html_snippet": "<a href=\"/olh/collections/447/\" aria-describedby=\"collection-447\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/449/\"]", + "html_snippet": "<a href=\"/olh/collections/449/\" aria-describedby=\"collection-449\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/450/\"]", + "html_snippet": "<a href=\"/olh/collections/450/\" aria-describedby=\"collection-450\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/412/\"]", + "html_snippet": "<a href=\"/olh/collections/412/\" aria-describedby=\"collection-412\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/413/\"]", + "html_snippet": "<a href=\"/olh/collections/413/\" aria-describedby=\"collection-413\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/414/\"]", + "html_snippet": "<a href=\"/olh/collections/414/\" aria-describedby=\"collection-414\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/415/\"]", + "html_snippet": "<a href=\"/olh/collections/415/\" aria-describedby=\"collection-415\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/416/\"]", + "html_snippet": "<a href=\"/olh/collections/416/\" aria-describedby=\"collection-416\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/417/\"]", + "html_snippet": "<a href=\"/olh/collections/417/\" aria-describedby=\"collection-417\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/418/\"]", + "html_snippet": "<a href=\"/olh/collections/418/\" aria-describedby=\"collection-418\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/419/\"]", + "html_snippet": "<a href=\"/olh/collections/419/\" aria-describedby=\"collection-419\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/420/\"]", + "html_snippet": "<a href=\"/olh/collections/420/\" aria-describedby=\"collection-420\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/421/\"]", + "html_snippet": "<a href=\"/olh/collections/421/\" aria-describedby=\"collection-421\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/422/\"]", + "html_snippet": "<a href=\"/olh/collections/422/\" aria-describedby=\"collection-422\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/423/\"]", + "html_snippet": "<a href=\"/olh/collections/423/\" aria-describedby=\"collection-423\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/424/\"]", + "html_snippet": "<a href=\"/olh/collections/424/\" aria-describedby=\"collection-424\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/425/\"]", + "html_snippet": "<a href=\"/olh/collections/425/\" aria-describedby=\"collection-425\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/426/\"]", + "html_snippet": "<a href=\"/olh/collections/426/\" aria-describedby=\"collection-426\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/427/\"]", + "html_snippet": "<a href=\"/olh/collections/427/\" aria-describedby=\"collection-427\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/428/\"]", + "html_snippet": "<a href=\"/olh/collections/428/\" aria-describedby=\"collection-428\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/429/\"]", + "html_snippet": "<a href=\"/olh/collections/429/\" aria-describedby=\"collection-429\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/430/\"]", + "html_snippet": "<a href=\"/olh/collections/430/\" aria-describedby=\"collection-430\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/431/\"]", + "html_snippet": "<a href=\"/olh/collections/431/\" aria-describedby=\"collection-431\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/432/\"]", + "html_snippet": "<a href=\"/olh/collections/432/\" aria-describedby=\"collection-432\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/433/\"]", + "html_snippet": "<a href=\"/olh/collections/433/\" aria-describedby=\"collection-433\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/434/\"]", + "html_snippet": "<a href=\"/olh/collections/434/\" aria-describedby=\"collection-434\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/435/\"]", + "html_snippet": "<a href=\"/olh/collections/435/\" aria-describedby=\"collection-435\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/436/\"]", + "html_snippet": "<a href=\"/olh/collections/436/\" aria-describedby=\"collection-436\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/437/\"]", + "html_snippet": "<a href=\"/olh/collections/437/\" aria-describedby=\"collection-437\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/438/\"]", + "html_snippet": "<a href=\"/olh/collections/438/\" aria-describedby=\"collection-438\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/439/\"]", + "html_snippet": "<a href=\"/olh/collections/439/\" aria-describedby=\"collection-439\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/440/\"]", + "html_snippet": "<a href=\"/olh/collections/440/\" aria-describedby=\"collection-440\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/441/\"]", + "html_snippet": "<a href=\"/olh/collections/441/\" aria-describedby=\"collection-441\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/442/\"]", + "html_snippet": "<a href=\"/olh/collections/442/\" aria-describedby=\"collection-442\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/443/\"]", + "html_snippet": "<a href=\"/olh/collections/443/\" aria-describedby=\"collection-443\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/444/\"]", + "html_snippet": "<a href=\"/olh/collections/444/\" aria-describedby=\"collection-444\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/445/\"]", + "html_snippet": "<a href=\"/olh/collections/445/\" aria-describedby=\"collection-445\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/446/\"]", + "html_snippet": "<a href=\"/olh/collections/446/\" aria-describedby=\"collection-446\"> View Collection </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/963/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/963/\">Humour as a Human Right </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/905/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/905/\">Cultural Heritage Data for Research: Opening Museum Collections, Project Data and Digital Images for Research, Query and Discovery </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/895/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/895/\">Caliban's Mirror: Reflections of James Joyce and Oscar Wilde </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/877/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/877/\">Cultural Representations of Machine Vision </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/850/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/850/\">The Public Curatorship of the Medieval Past </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/846/\"]", + "html_snippet": "<a class=\"collection-item active\" href=\"/olh/collections/846/\">Medieval Minds and Matter </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.79 (foreground color: #eafaf9, background color: #26a69a, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/803/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/803/\">Representing the Medieval in Popular Culture: Remembering the Angevins </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/505/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/505/\">The Politics and History of Menstruation: Contextualising the Scottish Campaign to End Period Poverty </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/455/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/455/\">Production Archives 03: Archival Practices </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/454/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/454/\">Production Archives 02: Production Contexts </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/453/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/453/\">Production Archives 01: Puppets for Action </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/452/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/452/\">Representing Classical Music in the Twenty-First Century </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/447/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/447/\">The Pathological Body: European Literary and Cultural Perspectives in the Age of Modern Medicine </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/449/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/449/\">Binary Modernisms: Re/Appropriations of Modernist Art in the Digital Age </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/450/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/450/\">Local and Universal in Irish Literature and Culture </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/412/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/412/\">Reading in Ruins: Exploring Posthumanist Narrative Studies </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/413/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/413/\">The Language of Perspective </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/414/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/414/\">Nancy Astor, Public Women and Gendered Political Culture in Interwar Britain </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/415/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/415/\">The Working-Class Avant-Garde </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/416/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/416/\">Colonialities in Dispute: Discourses on Colonialism and Race in the Spanish State </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/417/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/417/\">Powering the Future: Energy Resources in Science Fiction and Fantasy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/418/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/418/\">Writers and Intellectuals on Britain and Europe, 1918–2018 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/419/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/419/\">Literature, Law and Psychoanalysis </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/420/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/420/\">Muslims in the Media </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/421/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/421/\">Encounters between Asian and Western Art in the 20th and 21st centuries: a liberating influence for Asia? </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/422/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/422/\">Waste: Disposability, Decay, and Depletion </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/423/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/423/\">Pride Revisited: Cinema, Activism and Re-Activation </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/424/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/424/\">New Approaches to Late Medieval Court Records </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/425/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/425/\">Utopian Art and Literature from Modern India </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/426/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/426/\">Right-Wing Populism and Mediated Activism: Creative Responses and Counter-Narratives </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/427/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/427/\">Representing Climate: Local to Global </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/428/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/428/\">Cultivating Spheres: Agriculture, Technical Communication, and the Publics </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/429/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/429/\">Freedom After Neoliberalism </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/430/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/430/\">The Medieval Brain </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/431/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/431/\">Remaking Collections </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/432/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/432/\">New Approaches to Medieval Water Studies </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/433/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/433/\">Imaginaries of the Future 01: Bodies and Media </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/434/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/434/\">Imaginaries of the Future 02: Politics, Poetics, Place </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/435/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/435/\">Imaginaries of the Future 03: Utopia at the Border </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/436/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/436/\">Postcolonial Perspectives in Game Studies </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/437/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/437/\">Station Eleven and Twenty-First-Century Writing </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/438/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/438/\">#Agreement20 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/439/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/439/\">What’s Left? Marxism, Literature and Culture in the 21st Century </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/440/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/440/\">New Voices in Jewish-American Literature </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/441/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/441/\">Authors, Narratives, and Audiences in Medieval Saints’ Lives </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/442/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/442/\">From TV To Film </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/443/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/443/\">American Literature & the Transnational Marketplace </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/444/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/444/\">Mnemosyne </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/445/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/445/\">Healing Gods, Heroes and Rituals in the Graeco-Roman World </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/446/\"]", + "html_snippet": "<a class=\"collection-item \" href=\"/olh/collections/446/\">The Abolition of the University </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #26a69a, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".bar-sep > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "list", + "impact": "serious", + "Selector": ".collection", + "html_snippet": "<ul class=\"collection\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: a" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/759/\"]", + "html_snippet": "<a href=\"/olh/news/759/\" aria-describedby=\"news-759\">Read More</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/758/\"]", + "html_snippet": "<a href=\"/olh/news/758/\" aria-describedby=\"news-758\">Read More</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/757/\"]", + "html_snippet": "<a href=\"/olh/news/757/\" aria-describedby=\"news-757\">Read More</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/756/\"]", + "html_snippet": "<a href=\"/olh/news/756/\" aria-describedby=\"news-756\">Read More</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/755/\"]", + "html_snippet": "<a href=\"/olh/news/755/\" aria-describedby=\"news-755\">Read More</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/754/\"]", + "html_snippet": "<a href=\"/olh/news/754/\" aria-describedby=\"news-754\">Read More</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/753/\"]", + "html_snippet": "<a href=\"/olh/news/753/\" aria-describedby=\"news-753\">Read More</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/752/\"]", + "html_snippet": "<a href=\"/olh/news/752/\" aria-describedby=\"news-752\">Read More</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/751/\"]", + "html_snippet": "<a href=\"/olh/news/751/\" aria-describedby=\"news-751\">Read More</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/750/\"]", + "html_snippet": "<a href=\"/olh/news/750/\" aria-describedby=\"news-750\">Read More</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/749/\"]", + "html_snippet": "<a href=\"/olh/news/749/\" aria-describedby=\"news-749\">Read More</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/news/748/\"]", + "html_snippet": "<a href=\"/olh/news/748/\" aria-describedby=\"news-748\">Read More</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "list", + "impact": "serious", + "Selector": ".d-flex", + "html_snippet": "<ul class=\"d-flex justify-content-center\">", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: a" + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[title=\"OLH Special Collections\"]", + "html_snippet": "<a title=\"OLH Special Collections\" href=\"https://olh.openlibhums.org/collections/collection/\" target=\"_blank\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[target=\"_blank\"]:nth-child(2)", + "html_snippet": "<a href=\"https://openlibhums.org/site/academics/special-collections/\" target=\"_blank\">OLH Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".success", + "html_snippet": "<a href=\"/olh/news/tag/Digital%20Humanities/\" class=\"button success tiny\"> Digital Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"news/\"]", + "html_snippet": "<a href=\"/olh/news/\" class=\"button\">Back to News List</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.88 (foreground color: #ffab40, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".bar-sep > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[labelfor=\"order_by\"]", + "html_snippet": "<label labelfor=\"order_by\"> Sort results by </label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 9.0pt (12px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#m_select-label-5ecfb16b-b38d-c50c-8eff-650697b16623", + "html_snippet": "<label id=\"m_select-label-5ecfb16b-b38d-c50c-8eff-650697b16623\" for=\"m_select-input-80eaf71f-001c-b34a-e562-04c4e72352d0\"> articles per page </label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 9.0pt (12px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_article_search\"]", + "html_snippet": "<label class=\"\" for=\"id_article_search\">Search term</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[name=\"submit\"]", + "html_snippet": "<button name=\"submit\" class=\"btn\"> Search </button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #ffffff, background color: #26a69a, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_date_published__date__gte\"]", + "html_snippet": "<label for=\"id_date_published__date__gte\">Published after</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "label[for=\"id_date_published__date__lte\"]", + "html_snippet": "<label for=\"id_date_published__date__lte\">Published before</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".s12.col:nth-child(3) > label", + "html_snippet": "<label>Section</label>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 9.0pt (12px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(1) > label > span", + "html_snippet": "<span>#Agreement20 (8)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(2) > label > span", + "html_snippet": "<span>'An Unconventional MP': Nancy Astor, public women and gendered political culture (12)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(3) > label > span", + "html_snippet": "<span>American Literature and the Transnational Marketplace (3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(4) > label > span", + "html_snippet": "<span>Article (44)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(5) > label > span", + "html_snippet": "<span>Authors, Narratives, and Audiences in Medieval Saints’ Lives (4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(6) > label > span", + "html_snippet": "<span>Binary Modernisms: Re/Appropriations of Modernist Art in the Digital Age (8)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(7) > label > span", + "html_snippet": "<span>Caliban's Mirror: Reflections of James Joyce and Oscar Wilde (4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(8) > label > span", + "html_snippet": "<span>Colonialities in Dispute: Discourses on Colonialism and Race in the Spanish State (5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(9) > label > span", + "html_snippet": "<span>Correction (1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(10) > label > span", + "html_snippet": "<span>Cultivating Spheres: Agriculture, Technical Communication, and the Publics (6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(11) > label > span", + "html_snippet": "<span>Cultural Heritage Data for Research: Opening Museum Collections, Project Data and Digital Images for Research, Query and Discovery (1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(12) > label > span", + "html_snippet": "<span>Cultural Representations of Machine Vision (5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(13) > label > span", + "html_snippet": "<span>Editorial (6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(14) > label > span", + "html_snippet": "<span>Freedom After Neoliberalism (8)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(15) > label > span", + "html_snippet": "<span>From TV to Film (4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(16) > label > span", + "html_snippet": "<span>Healing Gods, Heroes and Rituals in the Graeco-Roman World (4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(17) > label > span", + "html_snippet": "<span>Humour as a Human Right (1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(18) > label > span", + "html_snippet": "<span>Imaginaries of the Future 01: Bodies & Media (8)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(19) > label > span", + "html_snippet": "<span>Imaginaries of the Future 02: Politics, Poetics, Place (4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(20) > label > span", + "html_snippet": "<span>Imaginaries of the Future 03: Utopia at the Border (2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(21) > label > span", + "html_snippet": "<span>Interview (2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(22) > label > span", + "html_snippet": "<span>Literature, Law and Psychoanalysis (13)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(23) > label > span", + "html_snippet": "<span>Local and Universal in Irish Literature and Culture (8)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(24) > label > span", + "html_snippet": "<span>Medieval Minds and Matter (5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(25) > label > span", + "html_snippet": "<span>Mnemosyne (4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(26) > label > span", + "html_snippet": "<span>Museum Engagement as Speculative Design (1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(27) > label > span", + "html_snippet": "<span>Muslims in the Media (6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(28) > label > span", + "html_snippet": "<span>New Approaches to Late Medieval Court Records (9)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(29) > label > span", + "html_snippet": "<span>New Approaches to Medieval Water Studies (6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(30) > label > span", + "html_snippet": "<span>New Voices in Jewish-American Literature (8)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(31) > label > span", + "html_snippet": "<span>Postcolonial Perspectives in Game Studies (12)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(32) > label > span", + "html_snippet": "<span>Powering the Future: Energy Resources in Science Fiction and Fantasy (7)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(33) > label > span", + "html_snippet": "<span>Pride Revisited: Cinema, Activism and Re-Activation (9)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(34) > label > span", + "html_snippet": "<span>Production Archives 01: Puppets for Action (4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(35) > label > span", + "html_snippet": "<span>Production Archives 02: Production Contexts (5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(36) > label > span", + "html_snippet": "<span>Production Archives 03: Archival Practices (1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(37) > label > span", + "html_snippet": "<span>Reading in Ruins: Exploring Posthumanist Narrative Studies (8)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(38) > label > span", + "html_snippet": "<span>Remaking Collections (12)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(39) > label > span", + "html_snippet": "<span>Representing Classical Music in the Twenty-First Century (12)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(40) > label > span", + "html_snippet": "<span>Representing Climate: Local to Global (4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(41) > label > span", + "html_snippet": "<span>Representing the Medieval in Popular Culture: Remembering the Angevins (5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(42) > label > span", + "html_snippet": "<span>Right-Wing Populism and Mediated Activism: Creative Responses and Counter-Narratives (6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(43) > label > span", + "html_snippet": "<span>Roundtable (1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(44) > label > span", + "html_snippet": "<span>Station Eleven and Twenty-First Century Writing (5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(45) > label > span", + "html_snippet": "<span>The Abolition of the University (8)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(46) > label > span", + "html_snippet": "<span>The Encounter Between Asian and Western Art, 20th-21st Centuries (6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(47) > label > span", + "html_snippet": "<span>The Language of Perspective (5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(48) > label > span", + "html_snippet": "<span>The Medieval Brain (4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(49) > label > span", + "html_snippet": "<span>The Pathological Body: European Literary and Cultural Perspectives in the Age of Modern Medicine (7)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(50) > label > span", + "html_snippet": "<span>The Politics and History of Menstruation: Contextualising the Scottish Campaign to End Period Poverty (10)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(51) > label > span", + "html_snippet": "<span>The Public Curatorship of the Medieval Past (7)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(52) > label > span", + "html_snippet": "<span>The Working-Class Avant-Garde (10)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(53) > label > span", + "html_snippet": "<span>Utopian Art and Literature from Modern India (6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(54) > label > span", + "html_snippet": "<span>Waste: Disposability, Decay and Depletion (3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(55) > label > span", + "html_snippet": "<span>What’s Left? Marxism, Literature and Culture in the 21st Century (6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(56) > label > span", + "html_snippet": "<span>Writers and Intellectuals on Britain and Europe, 1918-2018 (9)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.67 (foreground color: #9e9e9e, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[action=\"\"]", + "html_snippet": "<button action=\"\" class=\"btn\" type=\"submit\">Apply</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #ffffff, background color: #26a69a, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[name=\"clear_all\"]", + "html_snippet": "<button class=\"btn\" name=\"clear_all\">Clear all</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.99 (foreground color: #ffffff, background color: #26a69a, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "label", + "impact": "critical", + "Selector": "#m_select-input-99123292-2a57-a72d-bcfd-cdbe553652e3", + "html_snippet": "<input id=\"m_select-input-99123...\" class=\"select-dropdown drop...\" type=\"text\" readonly=\"true\" data-target=\"select-options-38d10...\" aria-readonly=\"true\" aria-required=\"false\" role=\"combobox\" aria-ow", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element has no placeholder attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": "aside", + "html_snippet": "<aside class=\"col s12 l4\">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select[name=\"order_by\"]", + "html_snippet": "<select onchange=\"this.form.submit()\" name=\"order_by\" form=\"facet_form\" tabindex=\"-1\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "#paginate_by", + "html_snippet": "<select onchange=\"this.form.submit()\" name=\"paginate_by\" id=\"paginate_by\" form=\"facet_form\" tabindex=\"-1\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": ".browser-default", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/keywords/4890/\"]", + "html_snippet": "<a href=\"/olh/keywords/4890/\"> Saint Augustine-Ancient Greek-Pedagogy- Stephen D. Krashen-Second Language Acquisition<span aria-hidden=\"true\"></span> </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-content > span > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"https://doi.org/10.16995/olh.30\" aria-label=\"D.O.I. for Non amabam Litteras Graecas. Note sulla Testimonianza di Sant’Agostino come Discente del Greco Antico Rivisitata alla L", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B91-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B91\" aria-describedby=\"reference-header\" id=\"cite-B91-1\">Waquet, 2004: 251–254</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B9-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B9\" aria-describedby=\"reference-header\" id=\"cite-B9-1\">Canfora and Cardinale, 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B58-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B58\" aria-describedby=\"reference-header\" id=\"cite-B58-1\">Olivia, 2008: 13</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B52-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B52\" aria-describedby=\"reference-header\" id=\"cite-B52-1\">Milanese, 2012: 67–82</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B67-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B67\" aria-describedby=\"reference-header\" id=\"cite-B67-1\">Ricucci, 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B69-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B69\" aria-describedby=\"reference-header\" id=\"cite-B69-1\">2014a</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B59-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B59\" aria-describedby=\"reference-header\" id=\"cite-B59-1\">1975</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B68-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B68\" aria-describedby=\"reference-header\" id=\"cite-B68-1\">Ricucci, 2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B70-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B70\" aria-describedby=\"reference-header\" id=\"cite-B70-1\">2014b</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B35-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B35\" aria-describedby=\"reference-header\" id=\"cite-B35-1\">Krashen, 1991</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B25-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B25\" aria-describedby=\"reference-header\" id=\"cite-B25-1\">Howatt and Smith, 2002</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B81-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B81\" aria-describedby=\"reference-header\" id=\"cite-B81-1\">Titone, 1987: 5</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B81-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B81\" aria-describedby=\"reference-header\" id=\"cite-B81-2\">Titone, 1987: 5</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B24-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B24\" aria-describedby=\"reference-header\" id=\"cite-B24-1\">Howatt, 1984: 284</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B75-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B75\" aria-describedby=\"reference-header\" id=\"cite-B75-1\">Schulz, 1975</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B42-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B42\" aria-describedby=\"reference-header\" id=\"cite-B42-1\">Lightbown, 1985</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B43-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B43\" aria-describedby=\"reference-header\" id=\"cite-B43-1\">Lightbown, 2000</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B14-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B14\" aria-describedby=\"reference-header\" id=\"cite-B14-1\">Debyser, 1973: 63–68</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B65-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B65\" aria-describedby=\"reference-header\" id=\"cite-B65-1\">Puren, 1994</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B76-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B76\" aria-describedby=\"reference-header\" id=\"cite-B76-1\">Serra Borneto, 1998</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B39-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B39\" aria-describedby=\"reference-header\" id=\"cite-B39-1\">Kumaravadivelu, 1994</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B40-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B40\" aria-describedby=\"reference-header\" id=\"cite-B40-1\">2006</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B10-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B10\" aria-describedby=\"reference-header\" id=\"cite-B10-1\">Celce-murcia, 1980</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B84-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B84\" aria-describedby=\"reference-header\" id=\"cite-B84-1\">Van Patten and Williams, 2005: 25</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B36-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B36\" aria-describedby=\"reference-header\" id=\"cite-B36-1\">1994: 45–46</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B29-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B29\" aria-describedby=\"reference-header\" id=\"cite-B29-1\">Kirwan, 1994: 188</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B51-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B51\" aria-describedby=\"reference-header\" id=\"cite-B51-1\">McLynn, 2005</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n10-nm1 > sup", + "html_snippet": "<sup>10</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B6-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B6\" aria-describedby=\"reference-header\" id=\"cite-B6-1\">Bellissima, 1955</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B11-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B11\" aria-describedby=\"reference-header\" id=\"cite-B11-1\">Collart, 1971</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B45-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B45\" aria-describedby=\"reference-header\" id=\"cite-B45-1\">Louth, 1989: 151</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n11-nm1 > sup", + "html_snippet": "<sup>11</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n12-nm1 > sup", + "html_snippet": "<sup>12</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n13-nm1 > sup", + "html_snippet": "<sup>13</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n14-nm1 > sup", + "html_snippet": "<sup>14</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n15-nm1 > sup", + "html_snippet": "<sup>15</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n16-nm1 > sup", + "html_snippet": "<sup>16</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B2-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B2\" aria-describedby=\"reference-header\" id=\"cite-B2-1\">Alfonsi, 1971: 42</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n17-nm1 > sup", + "html_snippet": "<sup>17</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B7-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B7\" aria-describedby=\"reference-header\" id=\"cite-B7-1\">Bonner, 1986: 180–183</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B57-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B57\" aria-describedby=\"reference-header\" id=\"cite-B57-1\">Neraudau, 1996: 58–59</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n18-nm1 > sup", + "html_snippet": "<sup>18</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n19-nm1 > sup", + "html_snippet": "<sup>19</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n20-nm1 > sup", + "html_snippet": "<sup>20</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B12-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B12\" aria-describedby=\"reference-header\" id=\"cite-B12-1\">Courcelle, 1943: 142</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B48-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B48\" aria-describedby=\"reference-header\" id=\"cite-B48-1\">Marrou, 1958<sup>4</sup>: 446 s.</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B78-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B78\" aria-describedby=\"reference-header\" id=\"cite-B78-1\">Solignac, 1962: 667</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n21-nm1 > sup", + "html_snippet": "<sup>21</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n22-nm1 > sup", + "html_snippet": "<sup>22</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n23-nm1 > sup", + "html_snippet": "<sup>23</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n24-nm1 > sup", + "html_snippet": "<sup>24</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n25-nm1 > sup", + "html_snippet": "<sup>25</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n26-nm1 > sup", + "html_snippet": "<sup>26</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n27-nm1 > sup", + "html_snippet": "<sup>27</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n28-nm1 > sup", + "html_snippet": "<sup>28</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n29-nm1 > sup", + "html_snippet": "<sup>29</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B53-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B53\" aria-describedby=\"reference-header\" id=\"cite-B53-1\">Miraglia 2004: 231–234</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B22-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B22\" aria-describedby=\"reference-header\" id=\"cite-B22-1\">Green, 1951</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B1-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B1\" aria-describedby=\"reference-header\" id=\"cite-B1-1\">Adams, 2003: 213–245</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B1-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B1\" aria-describedby=\"reference-header\" id=\"cite-B1-2\">Adams, 2003: 192–194</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B56-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B56\" aria-describedby=\"reference-header\" id=\"cite-B56-1\">2010: 531</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n30-nm1 > sup", + "html_snippet": "<sup>30</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n31-nm1 > sup", + "html_snippet": "<sup>31</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n32-nm1 > sup", + "html_snippet": "<sup>32</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n33-nm1 > sup", + "html_snippet": "<sup>33</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B49-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B49\" aria-describedby=\"reference-header\" id=\"cite-B49-1\">Marrou, 1966: 365–366</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n34-nm1 > sup", + "html_snippet": "<sup>34</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B77-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B77\" aria-describedby=\"reference-header\" id=\"cite-B77-1\">Simone, 1969: 106</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n35-nm1 > sup", + "html_snippet": "<sup>35</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B31-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B31\" aria-describedby=\"reference-header\" id=\"cite-B31-1\">Korhonen, 1996: 107</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B19-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B19\" aria-describedby=\"reference-header\" id=\"cite-B19-1\">Flammini, 1990: 17</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B79-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B79\" aria-describedby=\"reference-header\" id=\"cite-B79-1\">Tagliaferro, 2008: 68</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n36-nm1 > sup", + "html_snippet": "<sup>36</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B33-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B33\" aria-describedby=\"reference-header\" id=\"cite-B33-1\">1985: 4</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B34-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B34\" aria-describedby=\"reference-header\" id=\"cite-B34-1\">1987<sup>2</sup>: 66–67</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B8-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B8\" aria-describedby=\"reference-header\" id=\"cite-B8-1\">Cambiano, 1992: 526</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B74-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B74\" aria-describedby=\"reference-header\" id=\"cite-B74-1\">Sandys, 1910<sup>2</sup>: 235</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B20-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B20\" aria-describedby=\"reference-header\" id=\"cite-B20-1\">Gallo, 2003: 94</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n37-nm1 > sup", + "html_snippet": "<sup>37</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 8.4pt (11.25px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B18-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B18\" aria-describedby=\"reference-header\" id=\"cite-B18-1\">Dombart and Kalb (ed.) 1960</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B92-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B92\" aria-describedby=\"reference-header\" id=\"cite-B92-1\">Weigel 1961</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B50-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B50\" aria-describedby=\"reference-header\" id=\"cite-B50-1\">Martin 1962</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B87-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B87\" aria-describedby=\"reference-header\" id=\"cite-B87-1\">Verheijen 1991</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B17-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B17\" aria-describedby=\"reference-header\" id=\"cite-B17-1\">Doignon 1997</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B82-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B82\" aria-describedby=\"reference-header\" id=\"cite-B82-1\">Too, 2001</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B90-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B90\" aria-describedby=\"reference-header\" id=\"cite-B90-1\">Vössing, 2003</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B62-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B62\" aria-describedby=\"reference-header\" id=\"cite-B62-1\">Pernot, 2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B5-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B5\" aria-describedby=\"reference-header\" id=\"cite-B5-1\">Bellandi and Ferri, 2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B41-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B41\" aria-describedby=\"reference-header\" id=\"cite-B41-1\">Laes, 2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B32-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B32\" aria-describedby=\"reference-header\" id=\"cite-B32-1\">Krashen, 1981</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B38-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B38\" aria-describedby=\"reference-header\" id=\"cite-B38-1\">Krashen and Terrell, 1983</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B37-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B37\" aria-describedby=\"reference-header\" id=\"cite-B37-1\">Krashen, 2003</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B44-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B44\" aria-describedby=\"reference-header\" id=\"cite-B44-1\">Lightbown and Spada, 2011<sup>3</sup>: 38</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B3-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B3\" aria-describedby=\"reference-header\" id=\"cite-B3-1\">Ando, 1994</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B88-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B88\" aria-describedby=\"reference-header\" id=\"cite-B88-1\">Vössing, 1992</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B89-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B89\" aria-describedby=\"reference-header\" id=\"cite-B89-1\">Vössing, 1997</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B55-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B55\" aria-describedby=\"reference-header\" id=\"cite-B55-1\">Moretti, 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B86-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B86\" aria-describedby=\"reference-header\" id=\"cite-B86-1\">Vecchio, 1994</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B46-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B46\" aria-describedby=\"reference-header\" id=\"cite-B46-1\">Manetti, 1987: 226–227</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B64-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B64\" aria-describedby=\"reference-header\" id=\"cite-B64-1\">Preti, 1956</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B4-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B4\" aria-describedby=\"reference-header\" id=\"cite-B4-1\">Baratin, 1981</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B83-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B83\" aria-describedby=\"reference-header\" id=\"cite-B83-1\">Toom, 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B47-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B47\" aria-describedby=\"reference-header\" id=\"cite-B47-1\">Markus, 1957</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B26-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B26\" aria-describedby=\"reference-header\" id=\"cite-B26-1\">Jackson, 1969</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B73-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B73\" aria-describedby=\"reference-header\" id=\"cite-B73-1\">Ruef, 1981</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B30-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B30\" aria-describedby=\"reference-header\" id=\"cite-B30-1\">Kirwan, 2001</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B23-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B23\" aria-describedby=\"reference-header\" id=\"cite-B23-1\">Henninger, 1989</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B60-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B60\" aria-describedby=\"reference-header\" id=\"cite-B60-1\">Paffenroth and Hughes, 2000</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B27-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B27\" aria-describedby=\"reference-header\" id=\"cite-B27-1\">Kaimio, 1979: 195–207</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B13-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B13\" aria-describedby=\"reference-header\" id=\"cite-B13-1\">Debut, 1983</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B15-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B15\" aria-describedby=\"reference-header\" id=\"cite-B15-1\">Dickey, 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B53-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B53\" aria-describedby=\"reference-header\" id=\"cite-B53-2\">2004: 226–227</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B72-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B72\" aria-describedby=\"reference-header\" id=\"cite-B72-1\">Rochette, 2008: 89–90</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B85-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B85\" aria-describedby=\"reference-header\" id=\"cite-B85-1\">Van Patten and Benati, 2010: 43</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B21-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B21\" aria-describedby=\"reference-header\" id=\"cite-B21-1\">Gardner, 1985: 10</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B28-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B28\" aria-describedby=\"reference-header\" id=\"cite-B28-1\">1976<sup>2</sup>: 323</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B63-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B63\" aria-describedby=\"reference-header\" id=\"cite-B63-1\">1997: 126</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B61-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B61\" aria-describedby=\"reference-header\" id=\"cite-B61-1\">Pallotti, 2001<sup>2</sup>: 219–220</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B16-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B16\" aria-describedby=\"reference-header\" id=\"cite-B16-1\">Diller, 1978: 72</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B66-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B66\" aria-describedby=\"reference-header\" id=\"cite-B66-1\">Richards and Rodgers, 2001<sup>2</sup>: 9</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B80-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B80\" aria-describedby=\"reference-header\" id=\"cite-B80-1\">Titone, 1968: 100–101</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B71-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B71\" aria-describedby=\"reference-header\" id=\"cite-B71-1\">Rivers, 1964: 19–20</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B54-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B54\" aria-describedby=\"reference-header\" id=\"cite-B54-1\">Moreschini, 1979: 38 s.</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-B1-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-B1-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#block-7fx5tbwlb\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-B53-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#B58 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"http://www.treellle.org/files/lll/QA1.pdf\" target=\"_blank\">http://www.treellle.org/files/lll/QA1.pdf</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-B81-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#block-pp3t71hxv\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[itemprop=\"email\"] > span:nth-child(1)", + "html_snippet": "<span>8346@example.org</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(1) > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"/olh/article/4403/galley/7575/view/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(2) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/7575/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(3) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/7576/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(4) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/33913/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(5) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/33914/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(6) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/33915/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"info/\"]", + "html_snippet": "<a href=\"/olh/issue/401/info/\"> Volume 1 • Issue 1 • 2015 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[rel=\"license\"]", + "html_snippet": "<a rel=\"license\" href=\"https://www.example.com\" title=\"licence test two html tags\" target=\"_blank\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "ul:nth-child(19) > li > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"https://doi.org/10.16995/olh.30\" aria-label=\"D.O.I. for Non amabam Litteras Graecas. Note sulla Testimonianza di Sant’Agostino come Discente del Greco Antico Rivisitata alla L", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"bbc.co.uk/\"]", + "html_snippet": "<a href=\"https://www.bbc.co.uk/\">Link</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(31) > a", + "html_snippet": "<a href=\"https://doi.org/10.16995/olh.6318\">https://doi.org/10.16995/olh.6318</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#cite-B69-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B69\" aria-describedby=\"reference-header\" id=\"cite-B69-1\">2014a</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 49.9px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 17px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#n3-nm1", + "html_snippet": "<a class=\"xref-fn\" href=\"#n3\" id=\"n3-nm1\"><sup>3</sup></a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.3px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 16px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#cite-B65-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B65\" aria-describedby=\"reference-header\" id=\"cite-B65-1\">Puren, 1994</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 86.2px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 22.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#cite-B36-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B36\" aria-describedby=\"reference-header\" id=\"cite-B36-1\">1994: 45–46</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 92.6px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.8px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#n5-nm1", + "html_snippet": "<a class=\"xref-fn\" href=\"#n5\" id=\"n5-nm1\"><sup>5</sup></a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.3px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 20.4px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n1-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n1-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.7px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n3-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n3-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.7px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n4-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n4-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.7px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n8-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n8-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.7px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n9-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n9-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.7px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#cite-B46-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B46\" aria-describedby=\"reference-header\" id=\"cite-B46-1\">Manetti, 1987: 226–227</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 167.1px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 22.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n12-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n12-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.7px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n13-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n13-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.7px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 15.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#cite-B47-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B47\" aria-describedby=\"reference-header\" id=\"cite-B47-1\">Markus, 1957</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 97.3px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#cite-B26-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B26\" aria-describedby=\"reference-header\" id=\"cite-B26-1\">Jackson, 1969</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 103.8px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.8px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n14-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n14-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.7px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#cite-B30-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B30\" aria-describedby=\"reference-header\" id=\"cite-B30-1\">Kirwan, 2001</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 94.4px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n15-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n15-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.7px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 16px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n16-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n16-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.7px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n27-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n27-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.7px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n30-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n30-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.7px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 20.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#cite-B16-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B16\" aria-describedby=\"reference-header\" id=\"cite-B16-1\">Diller, 1978: 72</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 105.5px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 22.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[href$=\"#n34-nm1\"]", + "html_snippet": "<a class=\"footnotemarker\" href=\"#n34-nm1\"> ⮭</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.7px by 30.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(1) > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"/olh/article/4403/galley/7575/view/\">", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 87.5px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(2) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/7575/download/\">", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 65.3px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 19.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(3) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/7576/download/\">", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 68.3px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 21px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(4) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/33913/download/\">", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 112.5px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 22.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(5) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/33914/download/\">", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 181.5px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 22.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/keywords/1316/\"]", + "html_snippet": "<a href=\"/olh/keywords/1316/\"> education<span aria-hidden=\"true\">, </span> </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/keywords/4892/\"]", + "html_snippet": "<a href=\"/olh/keywords/4892/\"> political economy<span aria-hidden=\"true\">, </span> </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/keywords/4893/\"]", + "html_snippet": "<a href=\"/olh/keywords/4893/\"> secular crisis<span aria-hidden=\"true\">, </span> </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/keywords/4894/\"]", + "html_snippet": "<a href=\"/olh/keywords/4894/\"> university<span aria-hidden=\"true\"></span> </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-content > span > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"https://doi.org/10.16995/olh.15\" aria-label=\"D.O.I. for DEV: Evaluation of Fresh and Frozen Beef Strip Loins of Equal Aging Periods for Palatability Traits\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r20-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r20\" aria-describedby=\"reference-header\" id=\"cite-r20-1\">Iskandar et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r10-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r10\" aria-describedby=\"reference-header\" id=\"cite-r10-1\">Buckley et al., 1977</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r31-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r31\" aria-describedby=\"reference-header\" id=\"cite-r31-1\">Pietrasik and Janz, 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r31-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r31\" aria-describedby=\"reference-header\" id=\"cite-r31-2\">Pietrasik and Janz, 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-1\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-1\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-2\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r9-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r9\" aria-describedby=\"reference-header\" id=\"cite-r9-1\">Botinestean et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r43-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r43\" aria-describedby=\"reference-header\" id=\"cite-r43-1\">Zhang et al., 2023</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r28-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r28\" aria-describedby=\"reference-header\" id=\"cite-r28-1\">Martino and Zaritzky, 1988</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-2\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-3\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r41-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r41\" aria-describedby=\"reference-header\" id=\"cite-r41-1\">Wheeler et al., 1990</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r26-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r26\" aria-describedby=\"reference-header\" id=\"cite-r26-1\">Lagerstedt et al., 2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r19-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r19\" aria-describedby=\"reference-header\" id=\"cite-r19-1\">Hergenreder et al., 2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-3\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r19-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r19\" aria-describedby=\"reference-header\" id=\"cite-r19-2\">Hergenreder et al., 2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-4", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-4\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-5", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-5\">2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-4", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-4\">2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r19-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r19\" aria-describedby=\"reference-header\" id=\"cite-r19-3\">2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r31-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r31\" aria-describedby=\"reference-header\" id=\"cite-r31-3\">Pietrasik and Janz, 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".xref-fig", + "html_snippet": "<a class=\"xref-fig\" href=\"#f1\">Figure 1</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"f1\"]", + "html_snippet": "<a target=\"_blank\" aria-describedby=\"f1\" href=\"1.png\">Download</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #039be5, background color: #f0f0f0, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r13-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r13\" aria-describedby=\"reference-header\" id=\"cite-r13-1\">Drey et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r30-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r30\" aria-describedby=\"reference-header\" id=\"cite-r30-1\">Olson et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r32-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r32\" aria-describedby=\"reference-header\" id=\"cite-r32-1\">Prill et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r36-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r36\" aria-describedby=\"reference-header\" id=\"cite-r36-1\">Rice et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r8-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r8\" aria-describedby=\"reference-header\" id=\"cite-r8-1\">Beyer et al., 2021</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r15-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r15\" aria-describedby=\"reference-header\" id=\"cite-r15-1\">Farmer et al., 2022</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r3-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r3\" aria-describedby=\"reference-header\" id=\"cite-r3-1\">AMSA, 2015</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r8-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r8\" aria-describedby=\"reference-header\" id=\"cite-r8-2\">2021</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r13-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r13\" aria-describedby=\"reference-header\" id=\"cite-r13-2\">Drey et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r30-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r30\" aria-describedby=\"reference-header\" id=\"cite-r30-2\">Olson et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r32-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r32\" aria-describedby=\"reference-header\" id=\"cite-r32-2\">Prill et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r36-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r36\" aria-describedby=\"reference-header\" id=\"cite-r36-2\">Rice et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r15-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r15\" aria-describedby=\"reference-header\" id=\"cite-r15-2\">Farmer et al., 2022</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r3-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r3\" aria-describedby=\"reference-header\" id=\"cite-r3-2\">AMSA, 2015</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r15-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r15\" aria-describedby=\"reference-header\" id=\"cite-r15-3\">2022</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r39-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r39\" aria-describedby=\"reference-header\" id=\"cite-r39-1\">1999</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r23-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r23\" aria-describedby=\"reference-header\" id=\"cite-r23-1\">King et al., 2023</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r3-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r3\" aria-describedby=\"reference-header\" id=\"cite-r3-3\">AMSA, 2015</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r12-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r12\" aria-describedby=\"reference-header\" id=\"cite-r12-1\">2021</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r23-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r23\" aria-describedby=\"reference-header\" id=\"cite-r23-2\">King et al., 2023</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r23-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r23\" aria-describedby=\"reference-header\" id=\"cite-r23-3\">King et al., 2023</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r1-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r1\" aria-describedby=\"reference-header\" id=\"cite-r1-1\">1998</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r11-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r11\" aria-describedby=\"reference-header\" id=\"cite-r11-1\">Dahmer et al., 2022</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab1\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab1\">Table 1</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"tab1\"]", + "html_snippet": "<a target=\"_blank\" aria-describedby=\"tab1\" href=\"table/tab1\">Download</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #039be5, background color: #f0f0f0, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"tab2\"]", + "html_snippet": "<a target=\"_blank\" aria-describedby=\"tab2\" href=\"table/tab2\">Download</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #039be5, background color: #f0f0f0, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm2 > sup > sup", + "html_snippet": "<sup>ab</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 6.3pt (8.4375px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm3 > sup > sup", + "html_snippet": "<sup>bc</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 6.3pt (8.4375px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm4 > sup > sup", + "html_snippet": "<sup>cd</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 6.3pt (8.4375px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm5 > sup > sup", + "html_snippet": "<sup>cd</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 6.3pt (8.4375px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm6 > sup > sup", + "html_snippet": "<sup>de</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 6.3pt (8.4375px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm8 > sup > sup", + "html_snippet": "<sup>ef</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 6.3pt (8.4375px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm10 > sup > sup", + "html_snippet": "<sup>fg</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 6.3pt (8.4375px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm13 > sup > sup", + "html_snippet": "<sup>gh</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 6.3pt (8.4375px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm14 > sup > sup", + "html_snippet": "<sup>ghi</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 6.3pt (8.4375px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm15 > sup > sup", + "html_snippet": "<sup>hi</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 6.3pt (8.4375px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab3\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab3\">Table 3</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"tab3\"]", + "html_snippet": "<a target=\"_blank\" aria-describedby=\"tab3\" href=\"table/tab3\">Download</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #039be5, background color: #f0f0f0, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab4\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab4\">Table 4</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab5\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab5\">Table 5</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"tab4\"]", + "html_snippet": "<a target=\"_blank\" aria-describedby=\"tab4\" href=\"table/tab4\">Download</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #039be5, background color: #f0f0f0, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"tab5\"]", + "html_snippet": "<a target=\"_blank\" aria-describedby=\"tab5\" href=\"table/tab5\">Download</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #039be5, background color: #f0f0f0, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab6\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab6\">Table 6</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"tab6\"]", + "html_snippet": "<a target=\"_blank\" aria-describedby=\"tab6\" href=\"table/tab6\">Download</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #039be5, background color: #f0f0f0, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab7\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab7\">Table 7</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"tab7\"]", + "html_snippet": "<a target=\"_blank\" aria-describedby=\"tab7\" href=\"table/tab7\">Download</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #039be5, background color: #f0f0f0, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab8\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab8\">Tables 8</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"tab8\"]", + "html_snippet": "<a target=\"_blank\" aria-describedby=\"tab8\" href=\"table/tab8\">Download</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #039be5, background color: #f0f0f0, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab8-fn1-nm14 > sup > sup", + "html_snippet": "<sup>ab</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 6.3pt (8.4375px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"tab9\"]", + "html_snippet": "<a target=\"_blank\" aria-describedby=\"tab9\" href=\"table/tab9\">Download</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #039be5, background color: #f0f0f0, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab9-fn1-nm9 > sup > sup", + "html_snippet": "<sup>ab</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 6.3pt (8.4375px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab9-fn1-nm15 > sup > sup", + "html_snippet": "<sup>ab</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 6.3pt (8.4375px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r26-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r26\" aria-describedby=\"reference-header\" id=\"cite-r26-2\">Lagerstedt et al., 2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-6", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-6\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-5", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-5\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r33-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r33\" aria-describedby=\"reference-header\" id=\"cite-r33-1\">Rahelić et al., 1985</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-6", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-6\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r26-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r26\" aria-describedby=\"reference-header\" id=\"cite-r26-3\">Lagerstedt et al., 2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-7", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-7\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-7", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-7\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r26-4", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r26\" aria-describedby=\"reference-header\" id=\"cite-r26-4\">2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-8", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-8\">2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r24-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r24\" aria-describedby=\"reference-header\" id=\"cite-r24-1\">Koohmaraie, 1990</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r24-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r24\" aria-describedby=\"reference-header\" id=\"cite-r24-2\">Koohmaraie, 1990</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r25-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r25\" aria-describedby=\"reference-header\" id=\"cite-r25-1\">Kristensen et al., 2006</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-9", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-9\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-8", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-8\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-10", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-10\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-9", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-9\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r41-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r41\" aria-describedby=\"reference-header\" id=\"cite-r41-2\">Wheeler et al., 1990</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r26-5", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r26\" aria-describedby=\"reference-header\" id=\"cite-r26-5\">Lagerstedt et al., 2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-11", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-11\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-10", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-10\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r19-4", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r19\" aria-describedby=\"reference-header\" id=\"cite-r19-4\">2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r18-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r18\" aria-describedby=\"reference-header\" id=\"cite-r18-1\">Grujić et al., 1993</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-11", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-11\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r19-5", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r19\" aria-describedby=\"reference-header\" id=\"cite-r19-5\">2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r27-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r27\" aria-describedby=\"reference-header\" id=\"cite-r27-1\">Leygonie et al., 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-12", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-12\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r22-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r22\" aria-describedby=\"reference-header\" id=\"cite-r22-1\">Kim et al., 2018</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-13", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-13\">2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-14", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-14\">2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-15", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-15\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r27-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r27\" aria-describedby=\"reference-header\" id=\"cite-r27-2\">Leygonie et al., 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-16", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-16\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r22-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r22\" aria-describedby=\"reference-header\" id=\"cite-r22-2\">Kim et al., 2018</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r37-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r37\" aria-describedby=\"reference-header\" id=\"cite-r37-1\">Sánchez del Pulgar et al., 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r14-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r14\" aria-describedby=\"reference-header\" id=\"cite-r14-1\">English et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r35-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r35\" aria-describedby=\"reference-header\" id=\"cite-r35-1\">Ramanathan et al., 2020</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r14-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r14\" aria-describedby=\"reference-header\" id=\"cite-r14-2\">English et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r21-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r21\" aria-describedby=\"reference-header\" id=\"cite-r21-1\">Jeong et al., 2011</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r7-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r7\" aria-describedby=\"reference-header\" id=\"cite-r7-1\">Bekhit and Faustman, 2005</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r40-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r40\" aria-describedby=\"reference-header\" id=\"cite-r40-1\">2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r19-6", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r19\" aria-describedby=\"reference-header\" id=\"cite-r19-6\">Hergenreder et al., 2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r21-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r21\" aria-describedby=\"reference-header\" id=\"cite-r21-2\">Jeong et al., 2011</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r29-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r29\" aria-describedby=\"reference-header\" id=\"cite-r29-1\">Nair et al., 2017</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r34-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r34\" aria-describedby=\"reference-header\" id=\"cite-r34-1\">Rahman et al., 2015</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r38-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r38\" aria-describedby=\"reference-header\" id=\"cite-r38-1\">Setyabrata and Kim, 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r2-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r2\" aria-describedby=\"reference-header\" id=\"cite-r2-1\">Al-Dalali et al., 2022</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r34-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r34\" aria-describedby=\"reference-header\" id=\"cite-r34-2\">Rahman et al., 2015</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r38-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r38\" aria-describedby=\"reference-header\" id=\"cite-r38-2\">Setyabrata and Kim, 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r43-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r43\" aria-describedby=\"reference-header\" id=\"cite-r43-2\">Zhang et al., 2023</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r42-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r42\" aria-describedby=\"reference-header\" id=\"cite-r42-1\">Xia et al., 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r6-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r6\" aria-describedby=\"reference-header\" id=\"cite-r6-1\">Bao et al., 2021</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r42-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r42\" aria-describedby=\"reference-header\" id=\"cite-r42-2\">Xia et al., 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r44-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r44\" aria-describedby=\"reference-header\" id=\"cite-r44-1\">Zhang et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r27-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r27\" aria-describedby=\"reference-header\" id=\"cite-r27-3\">Leygonie et al., 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-17", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-17\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r22-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r22\" aria-describedby=\"reference-header\" id=\"cite-r22-3\">Kim et al., 2018</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r31-4", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r31\" aria-describedby=\"reference-header\" id=\"cite-r31-4\">Pietrasik and Janz, 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r1 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/S0309-1740(97)00101-0\" target=\"_blank\">https://doi.org/10.1016/S0309-1740(97)00101-0</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r2 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.foodchem.2021.131881\" target=\"_blank\">https://doi.org/10.1016/j.foodchem.2021.131881</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r3-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r3-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#block-01aku5xgs\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r5 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2016.02.006\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2016.02.006</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-4\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-5\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-6\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-7\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(7)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-8\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(8)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-9\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(9)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-10\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(10)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-11\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(11)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-12\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(12)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-13\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(13)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-14\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(14)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-15\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(15)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-16\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(16)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-17\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(17)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r6 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1111/1541-4337.12841\" target=\"_blank\">https://doi.org/10.1111/1541-4337.12841</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r7 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2005.04.032\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2005.04.032</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r8 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb.12424\" target=\"_blank\">https://doi.org/10.22175/mmb.12424</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r8-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r8-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r9 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.lwt.2016.07.026\" target=\"_blank\">https://doi.org/10.1016/j.lwt.2016.07.026</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r10 > a[target=\"_blank\"]:nth-child(2)", + "html_snippet": "<a href=\"https://www.jstor.org/stable/25557929\" target=\"_blank\">https://www.jstor.org/stable/25557929</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r10 > a[target=\"_blank\"]:nth-child(3)", + "html_snippet": "<a href=\"https://www.jstor.org/stable/25557929\" target=\"_blank\">https://www.jstor.org/stable/25557929</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r11 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1093/tas/txac060\" target=\"_blank\">https://doi.org/10.1093/tas/txac060</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r12 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2021.108454\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2021.108454</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r13 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1093/jas/sky435\" target=\"_blank\">https://doi.org/10.1093/jas/sky435</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r13-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r13-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r14 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.2527/jas.2016-0561\" target=\"_blank\">https://doi.org/10.2527/jas.2016-0561</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r14-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r14-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r15 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb.15488\" target=\"_blank\">https://doi.org/10.22175/mmb.15488</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r15-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r15-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r15-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r16 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/S0309-1740(03)00081-0\" target=\"_blank\">https://doi.org/10.1016/S0309-1740(03)00081-0</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r17 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.2527/jas.2014-7613\" target=\"_blank\">https://doi.org/10.2527/jas.2014-7613</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-4\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-5\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-6\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-7\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(7)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-8\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(8)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-9\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(9)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-10\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(10)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-11\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(11)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r18 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/0309-1740(93)90003-Z\" target=\"_blank\">https://doi.org/10.1016/0309-1740(93)90003-Z</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r19 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.2527/jas.2012-5223\" target=\"_blank\">https://doi.org/10.2527/jas.2012-5223</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r19-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r19-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r19-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r19-4\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r19-5\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r19-6\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r20 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1088/1755-1315/365/1/012072\" target=\"_blank\">https://doi.org/10.1088/1755-1315/365/1/012072</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r21 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.foodres.2011.08.023\" target=\"_blank\">https://doi.org/10.1016/j.foodres.2011.08.023</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r21-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r21-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r22 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2018.01.024\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2018.01.024</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r22-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r22-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r22-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r23 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb.12473\" target=\"_blank\">https://doi.org/10.22175/mmb.12473</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r23-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r23-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r23-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r24 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.2527/1990.683659x\" target=\"_blank\">https://doi.org/10.2527/1990.683659x</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r24-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r24-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r25 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2005.06.010\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2005.06.010</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r26 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2008.01.009\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2008.01.009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r26-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r26-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r26-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r26-4\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r26-5\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r27 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2012.01.013\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2012.01.013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r27-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r27-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r27-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r28 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1111/j.1365-2621.1988.tb07802.x\" target=\"_blank\">https://doi.org/10.1111/j.1365-2621.1988.tb07802.x</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r29 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb2017.07.0037\" target=\"_blank\">https://doi.org/10.22175/mmb2017.07.0037</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r30 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb2019.07.0022\" target=\"_blank\">https://doi.org/10.22175/mmb2019.07.0022</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r30-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r30-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r31 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2008.10.006\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2008.10.006</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r31-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r31-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#block-4bkp4vwtp\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r31-4\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r32 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb2019.07.0024\" target=\"_blank\">https://doi.org/10.22175/mmb2019.07.0024</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r32-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r32-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r33 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/0309-1740(85)90082-8\" target=\"_blank\">https://doi.org/10.1016/0309-1740(85)90082-8</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r34 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.5851/kosfa.2015.35.6.772\" target=\"_blank\">https://doi.org/10.5851/kosfa.2015.35.6.772</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r34-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r34-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r35 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1021/acs.jafc.9b08098\" target=\"_blank\">https://doi.org/10.1021/acs.jafc.9b08098</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r36 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb2019.07.0027\" target=\"_blank\">https://doi.org/10.22175/mmb2019.07.0027</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r36-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r36-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r37 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2011.11.024\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2011.11.024</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r38 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2019.01.007\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2019.01.007</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r38-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r38-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r39 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.2527/1999.77102693x\" target=\"_blank\">https://doi.org/10.2527/1999.77102693x</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r40 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2014.06.032\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2014.06.032</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r41 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1111/j.1365-2621.1990.tb06748.x\" target=\"_blank\">https://doi.org/10.1111/j.1365-2621.1990.tb06748.x</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r41-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r41-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r42 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2009.05.003\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2009.05.003</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r42-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r42-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r43 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.foodchem.2022.133874\" target=\"_blank\">https://doi.org/10.1016/j.foodchem.2022.133874</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r43-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r43-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r44 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2018.11.018\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2018.11.018</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[itemprop=\"email\"] > span:nth-child(1)", + "html_snippet": "<span>6504@example.org</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(1) > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"/olh/article/4405/galley/7579/view/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(2) > a", + "html_snippet": "<a href=\"/olh/article/4405/galley/7579/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(3) > a", + "html_snippet": "<a href=\"/olh/article/4405/galley/7580/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(4) > a", + "html_snippet": "<a href=\"/olh/article/4405/galley/33919/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"info/\"]", + "html_snippet": "<a href=\"/olh/issue/401/info/\"> Volume 1 • Issue 1 • 2015 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "ul:nth-child(16) > li > a", + "html_snippet": "<a href=\"http://localhost:8000/olh/download/article/4405/supp_file/783/\">figure 1</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[rel=\"license\"]", + "html_snippet": "<a rel=\"license\" href=\"https://creativecomm...\" title=\"Attribution — You mu...\" target=\"_blank\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "ul:nth-child(22) > li > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"https://doi.org/10.16995/olh.15\" aria-label=\"D.O.I. for DEV: Evaluation of Fresh and Frozen Beef Strip Loins of Equal Aging Periods for Palatability Traits\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.07 (foreground color: #039be5, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\"> Open Library of Humanities </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".list-inline > li:nth-child(3) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/privacy\"> Privacy Policy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"accessibility/\"]", + "html_snippet": "<a href=\"/olh/accessibility/\">Accessibility</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.55 (foreground color: #039be5, background color: #eaeaea, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "link-name", + "impact": "serious", + "Selector": "#logo-container", + "html_snippet": "<a id=\"logo-container\" href=\"/olh/\" class=\"brand-logo\"> <img src=\"/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png\" class=\"header-override-image\" alt=\"\"> </a>", + "failure_summary": "Fix all of the following:\n Element is in tab order and does not have accessible text\n\nFix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "list", + "impact": "serious", + "Selector": "#reflist > ul", + "html_snippet": "<ul>", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: h2" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select", + "html_snippet": "<select name=\"language\" onchange=\"this.form.submit()\" class=\"browser-default language-select\" autocomplete=\"off\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#cite-r13-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r13\" aria-describedby=\"reference-header\" id=\"cite-r13-1\">Drey et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 113.1px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#cite-r41-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r41\" aria-describedby=\"reference-header\" id=\"cite-r41-2\">Wheeler et al., 1990</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 138.6px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-1\"]", + "html_snippet": "<a href=\"#block-t5nrhkj7h\" role=\"doc-backlink\" class=\"section-link\" title=\"Introduction\" data-citation-id=\"cite-r5-1\" aria-label=\"Introduction 1, Aroeira et al., 2016\"><span aria-hidden=\"true\">--", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 42.7px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 22.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-2\"]", + "html_snippet": "<a href=\"#block-t5nrhkj7h\" role=\"doc-backlink\" class=\"section-link\" title=\"Introduction\" data-citation-id=\"cite-r5-2\" aria-label=\"Introduction 2, Aroeira et al., 2016\"><span aria-hidden=\"true\">--", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 42.7px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 22.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-3\"]", + "html_snippet": "<a href=\"#block-t5nrhkj7h\" role=\"doc-backlink\" class=\"section-link\" title=\"Introduction\" data-citation-id=\"cite-r5-3\" aria-label=\"Introduction 3, Aroeira et al., 2016\"><span aria-hidden=\"true\">--", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 45.5px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(1) > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"/olh/article/4405/galley/7579/view/\">", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 87.5px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 14.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(2) > a", + "html_snippet": "<a href=\"/olh/article/4405/galley/7579/download/\">", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 65.3px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 19.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "rule_id": "target-size", + "impact": "serious", + "Selector": "ul:nth-child(8) > li:nth-child(3) > a", + "html_snippet": "<a href=\"/olh/article/4405/galley/7580/download/\">", + "failure_summary": "Fix any of the following:\n Target has insufficient size because it is partially obscured (smallest space is 68.3px by 22.5px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 21px instead of at least 24px." + } +] \ No newline at end of file diff --git a/a11y/results/json/olh.json b/a11y/results/json/olh.json new file mode 100644 index 0000000..07cd88e --- /dev/null +++ b/a11y/results/json/olh.json @@ -0,0 +1,5618 @@ +[ + { + "url": "http://localhost:8000/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(1)", + "html_snippet": "<a class=\"button\" style=\"background-color: #1d9bf0;\" href=\"https://twitter.com/openlibhums\" target=\"_blank\"> Twitter</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3 (foreground color: #ffffff, background color: #1d9bf0, font size: 13.0pt (17.28px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(3)", + "html_snippet": "<a class=\"button\" style=\"background-color: #ee802f;\" href=\"https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6\" target=\"_blank\"> Mailing List</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #ffffff, background color: #ee802f, font size: 13.0pt (17.28px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/?theme=olh", + "rule_id": "html-has-lang", + "impact": "serious", + "Selector": "html", + "html_snippet": "<html class=\"wf-loading wf-proximanova-n7-loading wf-proximanova-n1-loading wf-proximanova-n6-loading wf-proximanova-n4-loading wf-proximanova-n3-loading wf-merriweather-n7-loading wf-merriweather-n4-", + "failure_summary": "Fix any of the following:\n The <html> element does not have a lang attribute" + }, + { + "url": "http://localhost:8000/?theme=olh", + "rule_id": "image-alt", + "impact": "critical", + "Selector": ".large-6.columns:nth-child(2) > a > img", + "html_snippet": "<img class=\"\" src=\"https://www.openlibhums.org/media/press/Conference_programme.png\">", + "failure_summary": "Fix any of the following:\n Element does not have an alt attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/?theme=olh", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": "header > nav", + "html_snippet": "<nav>", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/?theme=olh", + "rule_id": "page-has-heading-one", + "impact": "moderate", + "Selector": "html", + "html_snippet": "<html class=\"wf-loading wf-proximanova-n7-loading wf-proximanova-n1-loading wf-proximanova-n6-loading wf-proximanova-n4-loading wf-proximanova-n3-loading wf-merriweather-n7-loading wf-merriweather-n4-", + "failure_summary": "Fix all of the following:\n Page must have a level-one heading" + }, + { + "url": "http://localhost:8000/404/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(1)", + "html_snippet": "<a class=\"button\" style=\"background-color: #1d9bf0;\" href=\"https://twitter.com/openlibhums\" target=\"_blank\"> Twitter</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3 (foreground color: #ffffff, background color: #1d9bf0, font size: 13.0pt (17.28px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/404/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(3)", + "html_snippet": "<a class=\"button\" style=\"background-color: #ee802f;\" href=\"https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6\" target=\"_blank\"> Mailing List</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #ffffff, background color: #ee802f, font size: 13.0pt (17.28px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/404/?theme=olh", + "rule_id": "document-title", + "impact": "serious", + "Selector": "html", + "html_snippet": "<html class=\"wf-loading wf-proximanova-n1-loading wf-proximanova-n6-loading wf-proximanova-n4-loading wf-proximanova-n3-loading wf-merriweather-n7-loading wf-merriweather-i4-loading wf-merriweather-i7", + "failure_summary": "Fix any of the following:\n Document does not have a non-empty <title> element" + }, + { + "url": "http://localhost:8000/404/?theme=olh", + "rule_id": "html-has-lang", + "impact": "serious", + "Selector": "html", + "html_snippet": "<html class=\"wf-loading wf-proximanova-n1-loading wf-proximanova-n6-loading wf-proximanova-n4-loading wf-proximanova-n3-loading wf-merriweather-n7-loading wf-merriweather-i4-loading wf-merriweather-i7", + "failure_summary": "Fix any of the following:\n The <html> element does not have a lang attribute" + }, + { + "url": "http://localhost:8000/journals/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#social-links > .button[target=\"_blank\"]:nth-child(1)", + "html_snippet": "<a class=\"button\" style=\"background-color: #1d9bf0;\" href=\"https://twitter.com/openlibhums\" target=\"_blank\"> Twitter</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3 (foreground color: #ffffff, background color: #1d9bf0, font size: 13.0pt (17.28px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/journals/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(3)", + "html_snippet": "<a class=\"button\" style=\"background-color: #ee802f;\" href=\"https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6\" target=\"_blank\"> Mailing List</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #ffffff, background color: #ee802f, font size: 13.0pt (17.28px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/journals/?theme=olh", + "rule_id": "html-has-lang", + "impact": "serious", + "Selector": "html", + "html_snippet": "<html class=\"wf-merriweather-i7-active wf-proximanova-n7-active wf-proximanova-n6-active wf-proximanova-n1-active wf-proximanova-n4-active wf-merriweather-n7-active wf-proximanova-n3-active wf-merriwe", + "failure_summary": "Fix any of the following:\n The <html> element does not have a lang attribute" + }, + { + "url": "http://localhost:8000/contact/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(1)", + "html_snippet": "<a class=\"button\" style=\"background-color: #1d9bf0;\" href=\"https://twitter.com/openlibhums\" target=\"_blank\"> Twitter</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3 (foreground color: #ffffff, background color: #1d9bf0, font size: 13.0pt (17.28px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/contact/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button[target=\"_blank\"]:nth-child(3)", + "html_snippet": "<a class=\"button\" style=\"background-color: #ee802f;\" href=\"https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6\" target=\"_blank\"> Mailing List</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 2.7 (foreground color: #ffffff, background color: #ee802f, font size: 13.0pt (17.28px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/contact/?theme=olh", + "rule_id": "html-has-lang", + "impact": "serious", + "Selector": "html", + "html_snippet": "<html class=\"wf-proximanova-n7-active wf-proximanova-n4-active wf-merriweather-n7-active wf-proximanova-n1-active wf-merriweather-i7-active wf-merriweather-i4-active wf-merriweather-n4-active wf-proxi", + "failure_summary": "Fix any of the following:\n The <html> element does not have a lang attribute" + }, + { + "url": "http://localhost:8000/contact/?theme=olh", + "rule_id": "label", + "impact": "critical", + "Selector": "#id_captcha_0", + "html_snippet": "<input type=\"text\" name=\"captcha_0\" size=\"5\" required=\"\" id=\"id_captcha_0\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element has no placeholder attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "input[value=\"Search\"]", + "html_snippet": "<input type=\"submit\" class=\"button\" value=\"Search\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(6) > a:nth-child(2)", + "html_snippet": "<a style=\"background-color: rgb(255, 255, 255);\" href=\"https://olh.openlibhums.org/collections/collection/\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a:nth-child(3)", + "html_snippet": "<a style=\"background-color: rgb(255, 255, 255);\" href=\"https://olh.openlibhums.org/site/special-collections/\">how to apply</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-759\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/759/\" aria-describedby=\"news-759\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-758\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/758/\" aria-describedby=\"news-758\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-757\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/757/\" aria-describedby=\"news-757\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-756\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/756/\" aria-describedby=\"news-756\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-755\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/755/\" aria-describedby=\"news-755\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "rule_id": "heading-order", + "impact": "moderate", + "Selector": ".large-12.columns > h4", + "html_snippet": "<h4 class=\"\">History of the Journal</h4>", + "failure_summary": "Fix any of the following:\n Heading order invalid" + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "rule_id": "label", + "impact": "critical", + "Selector": "input[type=\"text\"]", + "html_snippet": "<input name=\"article_search\" class=\"input-group-field\" type=\"text\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element has no placeholder attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "rule_id": "landmark-unique", + "impact": "moderate", + "Selector": "header > nav", + "html_snippet": "<nav>", + "failure_summary": "Fix any of the following:\n The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable" + }, + { + "url": "http://localhost:8000/olh/accessibility/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/accessibility/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=olh ", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=olh ", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/contact/?theme=olh ", + "rule_id": "label", + "impact": "critical", + "Selector": "#id_captcha_0", + "html_snippet": "<input type=\"text\" name=\"captcha_0\" size=\"5\" required=\"\" id=\"id_captcha_0\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element has no placeholder attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "div[data-resize=\"ollqi2-eq\"] > .medium-3.columns:nth-child(1) > .callout[data-equalizer-watch=\"\"] > p:nth-child(5) > small > a", + "html_snippet": "<a href=\"/olh/profile/76ce2832-629c-4240-a37b-a3772baba951/\" aria-describedby=\"member-76ce2832-629c-4240-a37b-a3772baba951\"> View Profile </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".medium-3.columns:nth-child(1) > .callout[data-equalizer-watch=\"\"] > p:nth-child(6) > small > a:nth-child(1)", + "html_snippet": "<a href=\"https://www.bbk.ac.uk/our-staff/profile/9244765/rose-harris-birtill\" aria-label=\"Person 2537 Family 2537's website\"> <i aria-hidden=\"true\" class=\"fa fa-globe\"></i> Website </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".medium-3.columns:nth-child(1) > .callout[data-equalizer-watch=\"\"] > p:nth-child(6) > small > a:nth-child(2)", + "html_snippet": "<a href=\"https://www.twitter.com/roseharrisb\" aria-label=\"Person 2537 Family 2537's twitter profile\"> <i aria-hidden=\"true\" class=\"fa fa-twitter-square\"></i> Twitter </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a:nth-child(3)", + "html_snippet": "<a href=\"https://www.linkedin.com/in/rosehb\" aria-label=\"Person 2537 Family 2537's linkedin profile\"> <i aria-hidden=\"true\" class=\"fa fa-linkedin-square\"></i> Linkedin </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "div[data-resize=\"ollqi2-eq\"] > .end.medium-3.columns > .callout[data-equalizer-watch=\"\"] > p:nth-child(5) > small > a", + "html_snippet": "<a href=\"/olh/profile/e6980887-f7c4-4833-b9e8-98318104169b/\" aria-describedby=\"member-e6980887-f7c4-4833-b9e8-98318104169b\"> View Profile </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(6) > small > a[aria-label=\"Caroline Edwards's website\"]", + "html_snippet": "<a href=\"http://www.drcarolineedwards.com/\" aria-label=\"Caroline Edwards's website\"> <i aria-hidden=\"true\" class=\"fa fa-globe\"></i> Website </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".end.medium-3.columns > .callout[data-equalizer-watch=\"\"] > p:nth-child(6) > small > a:nth-child(2)", + "html_snippet": "<a href=\"https://www.twitter.com/the_blochian\" aria-label=\"Caroline Edwards's twitter profile\"> <i aria-hidden=\"true\" class=\"fa fa-twitter-square\"></i> Twitter </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "div[data-resize=\"xscqp8-eq\"] > .end.medium-3.columns > .callout[data-equalizer-watch=\"\"] > p:nth-child(4) > small > a", + "html_snippet": "<a href=\"/olh/profile/bed4a260-430e-4741-9f5c-ea45384c8877/\" aria-describedby=\"member-bed4a260-430e-4741-9f5c-ea45384c8877\"> View Profile </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "div[data-resize=\"xscqp8-eq\"] > .end.medium-3.columns > .callout[data-equalizer-watch=\"\"] > p:nth-child(5) > small > a", + "html_snippet": "<a href=\"https://www.twitter.com/Simon_Everett\" aria-label=\"Simon Everett's twitter profile\"> <i aria-hidden=\"true\" class=\"fa fa-twitter-square\"></i> Twitter </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "div[data-resize=\"je072c-eq\"] > .end.medium-3.columns > .callout[data-equalizer-watch=\"\"] > p:nth-child(4) > small > a", + "html_snippet": "<a href=\"/olh/profile/954d6773-124a-4993-a69c-3ebd11afc784/\" aria-describedby=\"member-954d6773-124a-4993-a69c-3ebd11afc784\"> View Profile </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "div[data-resize=\"je072c-eq\"] > .end.medium-3.columns > .callout[data-equalizer-watch=\"\"] > p:nth-child(5) > small > a", + "html_snippet": "<a href=\"https://www.github.com/AmeliePlaysKath\" aria-label=\"Person 23281 Family 23281's github profile\"> <i aria-hidden=\"true\" class=\"fa fa-github-square\"></i> Github </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "div[data-resize=\"cxmuub-eq\"] > .end.medium-3.columns > .callout[data-equalizer-watch=\"\"] > p > small > a", + "html_snippet": "<a href=\"/olh/profile/b69c8c89-36fe-4f21-8679-cea21c61fbde/\" aria-describedby=\"member-b69c8c89-36fe-4f21-8679-cea21c61fbde\"> View Profile </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "div[data-resize=\"6tfoea-eq\"] > .end.medium-3.columns > .callout[data-equalizer-watch=\"\"] > p:nth-child(4) > small > a", + "html_snippet": "<a href=\"/olh/profile/e6980887-f7c4-4833-b9e8-98318104169b/\" aria-describedby=\"member-e6980887-f7c4-4833-b9e8-98318104169b\"> View Profile </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(5) > small > a[aria-label=\"Caroline Edwards's website\"]", + "html_snippet": "<a href=\"http://www.drcarolineedwards.com/\" aria-label=\"Caroline Edwards's website\"> <i aria-hidden=\"true\" class=\"fa fa-globe\"></i> Website </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(5) > small > a:nth-child(2)", + "html_snippet": "<a href=\"https://www.twitter.com/the_blochian\" aria-label=\"Caroline Edwards's twitter profile\"> <i aria-hidden=\"true\" class=\"fa fa-twitter-square\"></i> Twitter </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "small", + "html_snippet": "<small class=\"error\">This field is required.</small>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.96 (foreground color: #ff0000, background color: #fefefe, font size: 8.6pt (11.52px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button", + "html_snippet": "<button type=\"submit\" class=\"button\">Search</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/search/?theme=olh", + "rule_id": "list", + "impact": "serious", + "Selector": ".form-group:nth-child(1) > ul", + "html_snippet": "<ul>", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: ul" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.openlibhums.org\"][target=\"_blank\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org\" target=\"_blank\">Open Library of Humanities</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(1) > a:nth-child(4)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/collections/collection/\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a:nth-child(5)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/special-collections/\">how to apply</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"clockss.org\"]", + "html_snippet": "<a href=\"https://clockss.org\" target=\"_blank\">CLOCKSS</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[target=\"_blank\"]:nth-child(4)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/special-collections/\" target=\"_blank\"><em>Open Library of Humanities</em> Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[target=\"_blank\"]:nth-child(4) > em", + "html_snippet": "<em>Open Library of Humanities</em>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(5) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/special-collections/\" target=\"_blank\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(7) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/about/the-olh-model/\">international library consortium</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[target=\"_blank\"]:nth-child(2)", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/publisher-policies/#Archiving%20and%20Indexing\" target=\"_blank\">publisher's policy</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(10) > a[target=\"_blank\"]:nth-child(4)", + "html_snippet": "<a href=\"https://www.scopus.com/sourceid/21100867938\" target=\"_blank\">CiteScore on Scopus</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading0\"]", + "html_snippet": "<a href=\"#heading0\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Focus and Scope</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading1\"]", + "html_snippet": "<a href=\"#heading1\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Publication Frequency</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading2\"]", + "html_snippet": "<a href=\"#heading2\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Publication Fees</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading3\"]", + "html_snippet": "<a href=\"#heading3\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Citation Metrics</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": "aside", + "html_snippet": "<aside class=\"medium-4 columns sticky-container hide-for-small-only\">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "strong > a", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/special-collections/\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: bold). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#Submissions\"]", + "html_snippet": "<a href=\"#Submissions\">Submissions</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#Language and Text\"]", + "html_snippet": "<a href=\"#Language and Text\">Language and Text</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#Data and Symbols\"]", + "html_snippet": "<a href=\"#Data and Symbols\">Data and Symbols</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#Figures and Tables\"]", + "html_snippet": "<a href=\"#Figures and Tables\">Figures and Tables</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#References\"]", + "html_snippet": "<a href=\"#References\">References</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(15) > a:nth-child(2)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/blindreview/\">ensuring an anonymous review</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(30) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/competinginterests/\" target=\"_blank\">How to Declare Competing Interests</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(32) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://www.wma.net/policies-post/wma-declaration-of-helsinki-ethical-principles-for-medical-research-involving-human-subjects/\" target=\"_blank\">Declaration of Helsinki</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(75) > a", + "html_snippet": "<a href=\"http://en.wikipedia.org/wiki/Wikipedia:Manual_of_Style/Abbreviations#Miscellanea\">here</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(135) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"http://www.bipm.org/utils/common/pdf/si_brochure_8_en.pdf\" target=\"_blank\">Bureau International des Poids et Mesures</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(170) > a", + "html_snippet": "<a href=\"http://eprints.lincoln.ac.uk/id/eprint/25380/1/Harvard_Referencing_Guide.pdf\">document</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "blockquote:nth-child(248) > a", + "html_snippet": "<a href=\"https://www.theguardian.com/world/2020/sep/23/wednesday-briefing-last-orders-in-fight-to-avoid-lockdown\">https://www.theguardian.com/world/2020/sep/23/wednesday-briefing-last-orders-in-fight-", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "rule_id": "target-size", + "impact": "serious", + "Selector": "p:nth-child(15) > a:nth-child(3)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/help/view/editorial/topic/000044\">.</a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (11.5px by 36.8px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 11.4px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Editorial Oversight\"]", + "html_snippet": "<a href=\"#Editorial Oversight\">Editorial Oversight</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Peer Review Process\"]", + "html_snippet": "<a href=\"#Peer Review Process\">Peer Review Process</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Governance\"]", + "html_snippet": "<a href=\"#Governance\">Organisation and Governance</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Business Practices\"]", + "html_snippet": "<a href=\"#Business Practices\">Business Practices</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Preprint Policy\"]", + "html_snippet": "<a href=\"#Preprint Policy\">Preprint Policy</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a:nth-child(6)", + "html_snippet": "<a href=\"#Conduct and Expected Behaviour\">Conduct and Expected Behaviour</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Special Collections\"]", + "html_snippet": "<a href=\"#Special Collections\"><em>OLHJ</em> Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[href$=\"#Special Collections\"] > em", + "html_snippet": "<em>OLHJ</em>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(6) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://www.chase.ac.uk/research-placements\" target=\"_blank\">Consortium for the Humanities and Arts South-East England</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(12) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://publicationethics.org/guidance/Guidelines\" target=\"_blank\">Committee on Publication Ethics</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(26) > a[target=\"blank_\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/publisher-policies/#Reviewer%20Responsibilities\" target=\"blank_\">‘Responsibilities of Reviewers’</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(28) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/publisher-policies/#Publication%20Ethics%20and%20Malpractice\">Publication Ethics and Malpractice Statement</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"janeway.systems\"]", + "html_snippet": "<a href=\"https://janeway.systems\" target=\"_blank\">Janeway</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(37) > a", + "html_snippet": "<a href=\"https://olh.openlibhums.org/editorialteam/\"> editorial board</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(39) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/editorialteam/\" target=\"_blank\">editorial team</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(41) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/about/the-olh-model/\" target=\"_blank\">Library Partnership Subsidy</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(41) > a:nth-child(4)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/about/\">About</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(50) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/about/the-olh-model/\" target=\"_blank\">Library Partnership Subsidy</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(54) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/publisher-policies/#Publication%20Ethics%20and%20Malpractice\">Publication Ethics and Malpractice Statement’</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(55) > a:nth-child(2)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/contact/\">Contact</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(55) > a:nth-child(4)", + "html_snippet": "<a href=\"https://www.openlibhums.org/contact/\">directly with the publisher</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(55) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/publisher-policies/#Publisher%20Responsibilities\" target=\"_blank\">‘Publication Ethics and Malpractice Statement’</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(59) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://publicationethics.org/resources/discussion-documents/guest-edited-collections\" target=\"_blank\">best practice guidelines by COPE</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(63) > a[target=\"blank_\"]", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/publisher-policies/#Ethics%20Policies\" target=\"blank_\">Ethics Policies</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(64) > a", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/special-collections/\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".sidebar-item:nth-child(1) > a[href$=\"#Editorial Oversight\"]", + "html_snippet": "<a href=\"#Editorial Oversight\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Editorial Oversight</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading1\"]", + "html_snippet": "<a href=\"#heading1\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Appointment of Editors and Special Collection Editors</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading2\"]", + "html_snippet": "<a href=\"#heading2\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">The Remit of <em>OLHJ</em> Editorial Roles</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading2\"] > em", + "html_snippet": "<em>OLHJ</em>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading3\"]", + "html_snippet": "<a href=\"#heading3\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Editorial Decisions</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading4\"]", + "html_snippet": "<a href=\"#heading4\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Composition of the Editorial Team</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".sidebar-item:nth-child(6) > a[href$=\"#Peer Review Process\"]", + "html_snippet": "<a href=\"#Peer Review Process\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Peer Review Process</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading6\"]", + "html_snippet": "<a href=\"#heading6\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Assessing Articles for Peer Review</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading7\"]", + "html_snippet": "<a href=\"#heading7\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\"><em>OLHJ</em>’s Peer Review Practice</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading7\"] > em", + "html_snippet": "<em>OLHJ</em>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading8\"]", + "html_snippet": "<a href=\"#heading8\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Selection of Peer Reviewers</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading9\"]", + "html_snippet": "<a href=\"#heading9\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Guidance for Peer Reviewers</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading10\"]", + "html_snippet": "<a href=\"#heading10\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Publication of Peer Review Reports</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".sidebar-item:nth-child(12) > a[href$=\"#Governance\"]", + "html_snippet": "<a href=\"#Governance\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Organisation and Governance</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading12\"]", + "html_snippet": "<a href=\"#heading12\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">The Ownership and Structure of <em>OLHJ</em></a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading12\"] > em", + "html_snippet": "<em>OLHJ</em>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading14\"]", + "html_snippet": "<a href=\"#heading14\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\"><em>OLHJ</em>’s Funding Model</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading14\"] > em", + "html_snippet": "<em>OLHJ</em>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".sidebar-item:nth-child(16) > a[href$=\"#Business Practices\"]", + "html_snippet": "<a href=\"#Business Practices\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Business Practices</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading16\"]", + "html_snippet": "<a href=\"#heading16\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Advertising</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading17\"]", + "html_snippet": "<a href=\"#heading17\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Direct Marketing</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading18\"]", + "html_snippet": "<a href=\"#heading18\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Other Revenue</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".sidebar-item:nth-child(20) > a[href$=\"#Preprint Policy\"]", + "html_snippet": "<a href=\"#Preprint Policy\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Preprint Policy</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".sidebar-item:nth-child(21) > a", + "html_snippet": "<a href=\"#Conduct and Expected Behaviour\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Conduct and Expected Behaviour</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".sidebar-item:nth-child(22) > a[href$=\"#Special Collections\"]", + "html_snippet": "<a href=\"#Special Collections\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\"><em>OLHJ</em> Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".sidebar-item:nth-child(22) > a[href$=\"#Special Collections\"] > em", + "html_snippet": "<em>OLHJ</em>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": "aside", + "html_snippet": "<aside class=\"medium-4 columns sticky-container hide-for-small-only\">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(2) > strong > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/special-collections/\" target=\"_blank\">Special Collections</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: bold). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(3) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/author-guidelines/\" target=\"_blank\">Author Guidelines</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button:nth-child(1)", + "html_snippet": "<a href=\"/olh/register/step/1/?next=/olh/submissions/%3Ftheme%3Dolh\" class=\"button\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".button:nth-child(2)", + "html_snippet": "<a href=\"/olh/login/?next=/olh/submissions/%3Ftheme%3Dolh\" class=\"button\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(8) > a:nth-child(1)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/author-guidelines/\">Author Guidelines</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(8) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/competinginterests/\" target=\"_blank\">how to declare competing interests</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(9) > a:nth-child(1)", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/blindreview/\">ensuring an anonymous review</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(15) > a:nth-child(1)", + "html_snippet": "<a href=\"https://creativecommons.org/licenses/by/4.0/\">Creative Commons Attribution License</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(15) > a:nth-child(2)", + "html_snippet": "<a href=\"http://creativecommons.org/licenses/\">Creative Commons License</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[target=\"_new\"]", + "html_snippet": "<a href=\"http://opcit.eprints.org/oacitation-biblio.html\" target=\"_new\">The Effect of Open Access</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(21) > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://olh.openlibhums.org/site/journal-policies/#Peer%20Review%20Process\" target=\"_blank\">Journal Policies</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "li:nth-child(1) > strong > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://creativecommons.org/licenses/by/4.0\" target=\"_blank\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: bold). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"www.example.com\"]", + "html_snippet": "<a href=\"https://www.example.com\" target=\"_blank\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: bold). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p:nth-child(29) > a", + "html_snippet": "<a href=\"https://www.openlibhums.org/site/about/the-olh-model/\">international library consortium</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issues/?theme=olh", + "rule_id": "heading-order", + "impact": "moderate", + "Selector": "#\\31 287-box-title", + "html_snippet": "<h3 id=\"1287-box-title\"> <span aria-label=\"Volume 10, Issue 2, 2024\">Volume 10 • Issue 2 • 2024</span> </h3>", + "failure_summary": "Fix any of the following:\n Heading order invalid" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=olh", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": "aside", + "html_snippet": "<aside class=\"large-4 columns sticky-container\" data-sticky-container=\"\">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=olh", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": "aside", + "html_snippet": "<aside class=\"large-4 columns sticky-container\" data-sticky-container=\"\">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/olh/collections/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/963/\"]", + "html_snippet": "<a href=\"/olh/collections/963/\">Humour as a Human Right </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/905/\"]", + "html_snippet": "<a href=\"/olh/collections/905/\">Cultural Heritage Data for Research: Opening Museum Collections, Project Data and Digital Images for Research, Query and Discovery </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/895/\"]", + "html_snippet": "<a href=\"/olh/collections/895/\">Caliban's Mirror: Reflections of James Joyce and Oscar Wilde </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/877/\"]", + "html_snippet": "<a href=\"/olh/collections/877/\">Cultural Representations of Machine Vision </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/850/\"]", + "html_snippet": "<a href=\"/olh/collections/850/\">The Public Curatorship of the Medieval Past </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/846/\"]", + "html_snippet": "<a href=\"/olh/collections/846/\">Medieval Minds and Matter </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/803/\"]", + "html_snippet": "<a href=\"/olh/collections/803/\">Representing the Medieval in Popular Culture: Remembering the Angevins </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/505/\"]", + "html_snippet": "<a href=\"/olh/collections/505/\">The Politics and History of Menstruation: Contextualising the Scottish Campaign to End Period Poverty </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/455/\"]", + "html_snippet": "<a href=\"/olh/collections/455/\">Production Archives 03: Archival Practices </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/454/\"]", + "html_snippet": "<a href=\"/olh/collections/454/\">Production Archives 02: Production Contexts </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/453/\"]", + "html_snippet": "<a href=\"/olh/collections/453/\">Production Archives 01: Puppets for Action </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/452/\"]", + "html_snippet": "<a href=\"/olh/collections/452/\">Representing Classical Music in the Twenty-First Century </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/447/\"]", + "html_snippet": "<a href=\"/olh/collections/447/\">The Pathological Body: European Literary and Cultural Perspectives in the Age of Modern Medicine </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/449/\"]", + "html_snippet": "<a href=\"/olh/collections/449/\">Binary Modernisms: Re/Appropriations of Modernist Art in the Digital Age </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/450/\"]", + "html_snippet": "<a href=\"/olh/collections/450/\">Local and Universal in Irish Literature and Culture </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/412/\"]", + "html_snippet": "<a href=\"/olh/collections/412/\">Reading in Ruins: Exploring Posthumanist Narrative Studies </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/413/\"]", + "html_snippet": "<a href=\"/olh/collections/413/\">The Language of Perspective </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/414/\"]", + "html_snippet": "<a href=\"/olh/collections/414/\">Nancy Astor, Public Women and Gendered Political Culture in Interwar Britain </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/415/\"]", + "html_snippet": "<a href=\"/olh/collections/415/\">The Working-Class Avant-Garde </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/416/\"]", + "html_snippet": "<a href=\"/olh/collections/416/\">Colonialities in Dispute: Discourses on Colonialism and Race in the Spanish State </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/417/\"]", + "html_snippet": "<a href=\"/olh/collections/417/\">Powering the Future: Energy Resources in Science Fiction and Fantasy </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/418/\"]", + "html_snippet": "<a href=\"/olh/collections/418/\">Writers and Intellectuals on Britain and Europe, 1918–2018 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/419/\"]", + "html_snippet": "<a href=\"/olh/collections/419/\">Literature, Law and Psychoanalysis </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/420/\"]", + "html_snippet": "<a href=\"/olh/collections/420/\">Muslims in the Media </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/421/\"]", + "html_snippet": "<a href=\"/olh/collections/421/\">Encounters between Asian and Western Art in the 20th and 21st centuries: a liberating influence for Asia? </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/422/\"]", + "html_snippet": "<a href=\"/olh/collections/422/\">Waste: Disposability, Decay, and Depletion </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/423/\"]", + "html_snippet": "<a href=\"/olh/collections/423/\">Pride Revisited: Cinema, Activism and Re-Activation </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/424/\"]", + "html_snippet": "<a href=\"/olh/collections/424/\">New Approaches to Late Medieval Court Records </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/425/\"]", + "html_snippet": "<a href=\"/olh/collections/425/\">Utopian Art and Literature from Modern India </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/426/\"]", + "html_snippet": "<a href=\"/olh/collections/426/\">Right-Wing Populism and Mediated Activism: Creative Responses and Counter-Narratives </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/427/\"]", + "html_snippet": "<a href=\"/olh/collections/427/\">Representing Climate: Local to Global </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/428/\"]", + "html_snippet": "<a href=\"/olh/collections/428/\">Cultivating Spheres: Agriculture, Technical Communication, and the Publics </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/429/\"]", + "html_snippet": "<a href=\"/olh/collections/429/\">Freedom After Neoliberalism </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/430/\"]", + "html_snippet": "<a href=\"/olh/collections/430/\">The Medieval Brain </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/431/\"]", + "html_snippet": "<a href=\"/olh/collections/431/\">Remaking Collections </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/432/\"]", + "html_snippet": "<a href=\"/olh/collections/432/\">New Approaches to Medieval Water Studies </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/433/\"]", + "html_snippet": "<a href=\"/olh/collections/433/\">Imaginaries of the Future 01: Bodies and Media </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/434/\"]", + "html_snippet": "<a href=\"/olh/collections/434/\">Imaginaries of the Future 02: Politics, Poetics, Place </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/435/\"]", + "html_snippet": "<a href=\"/olh/collections/435/\">Imaginaries of the Future 03: Utopia at the Border </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/436/\"]", + "html_snippet": "<a href=\"/olh/collections/436/\">Postcolonial Perspectives in Game Studies </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/437/\"]", + "html_snippet": "<a href=\"/olh/collections/437/\">Station Eleven and Twenty-First-Century Writing </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/438/\"]", + "html_snippet": "<a href=\"/olh/collections/438/\">#Agreement20 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/439/\"]", + "html_snippet": "<a href=\"/olh/collections/439/\">What’s Left? Marxism, Literature and Culture in the 21st Century </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/440/\"]", + "html_snippet": "<a href=\"/olh/collections/440/\">New Voices in Jewish-American Literature </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/441/\"]", + "html_snippet": "<a href=\"/olh/collections/441/\">Authors, Narratives, and Audiences in Medieval Saints’ Lives </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/442/\"]", + "html_snippet": "<a href=\"/olh/collections/442/\">From TV To Film </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/443/\"]", + "html_snippet": "<a href=\"/olh/collections/443/\">American Literature & the Transnational Marketplace </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/444/\"]", + "html_snippet": "<a href=\"/olh/collections/444/\">Mnemosyne </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/445/\"]", + "html_snippet": "<a href=\"/olh/collections/445/\">Healing Gods, Heroes and Rituals in the Graeco-Roman World </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/collections/446/\"]", + "html_snippet": "<a href=\"/olh/collections/446/\">The Abolition of the University </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "heading-order", + "impact": "moderate", + "Selector": "#issue_top > h3", + "html_snippet": "<h3>Editors: </h3>", + "failure_summary": "Fix any of the following:\n Heading order invalid" + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=olh", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": "aside", + "html_snippet": "<aside class=\"large-4 columns sticky-container\" data-sticky-container=\"\" style=\"height: 1861.41px;\">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-759\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/759/\" aria-describedby=\"news-759\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-758\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/758/\" aria-describedby=\"news-758\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-757\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/757/\" aria-describedby=\"news-757\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-756\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/756/\" aria-describedby=\"news-756\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-755\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/755/\" aria-describedby=\"news-755\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-754\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/754/\" aria-describedby=\"news-754\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-753\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/753/\" aria-describedby=\"news-753\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-752\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/752/\" aria-describedby=\"news-752\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-751\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/751/\" aria-describedby=\"news-751\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-750\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/750/\" aria-describedby=\"news-750\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-749\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/749/\" aria-describedby=\"news-749\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[aria-describedby=\"news-748\"]", + "html_snippet": "<a class=\"button\" href=\"/olh/news/748/\" aria-describedby=\"news-748\"> Read More </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"news/\"]", + "html_snippet": "<a href=\"/olh/news/\" class=\"button\"> Back to News List </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".large-4 > .section[aria-labelledby=\"filter-title\"] > form[method=\"GET\"] > .button[action=\"\"][type=\"submit\"]", + "html_snippet": "<button action=\"\" class=\"button\" type=\"submit\">Apply</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #ffffff, background color: #2199e8, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".large-4 > .section[aria-labelledby=\"filter-title\"] > form[method=\"GET\"] > .warning.button[name=\"clear_all\"]", + "html_snippet": "<button class=\"button warning\" name=\"clear_all\">Clear all</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 1.85 (foreground color: #ffffff, background color: #ffae00, font size: 9.7pt (12.96px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=olh", + "rule_id": "landmark-complementary-is-top-level", + "impact": "moderate", + "Selector": ".large-4", + "html_snippet": "<aside class=\"large-4 columns show-for-large\">", + "failure_summary": "Fix any of the following:\n The null landmark is contained in another landmark." + }, + { + "url": "http://localhost:8000/olh/articles/?theme=olh", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select[name=\"order_by\"]", + "html_snippet": "<select class=\"input-group-field\" onchange=\"this.form.submit()\" name=\"order_by\" form=\"facet_form\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/articles/?theme=olh", + "rule_id": "select-name", + "impact": "critical", + "Selector": "select[name=\"paginate_by\"]", + "html_snippet": "<select class=\"input-group-field\" onchange=\"this.form.submit()\" name=\"paginate_by\" form=\"facet_form\">", + "failure_summary": "Fix any of the following:\n Element does not have an implicit (wrapped) <label>\n Element does not have an explicit <label>\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[onclick=\"resizeText(-1);\"]", + "html_snippet": "<button onclick=\"resizeText(-1);\" aria-label=\"decrease text size\">A-</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.05 (foreground color: #8a8a8a, background color: #f1f1f1, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[onclick=\"resizeText(1);\"]", + "html_snippet": "<button onclick=\"resizeText(1);\" aria-label=\"increase text size\">A+</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.05 (foreground color: #8a8a8a, background color: #f1f1f1, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#dyslexia-mode", + "html_snippet": "<button onclick=\"toggleDyslexia();\" id=\"dyslexia-mode\" aria-label=\"Dyslexia mode\">Dyslexia</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.05 (foreground color: #8a8a8a, background color: #f1f1f1, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/keywords/4890/\"]", + "html_snippet": "<a href=\"/olh/keywords/4890/\"> Saint Augustine-Ancient Greek-Pedagogy- Stephen D. Krashen-Second Language Acquisition<span aria-hidden=\"true\"></span> </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-content > span > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"https://doi.org/10.16995/olh.30\" aria-label=\"D.O.I. for Non amabam Litteras Graecas. Note sulla Testimonianza di Sant’Agostino come Discente del Greco Antico Rivisitata alla L", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#article_date_published", + "html_snippet": "<p id=\"article_date_published\"> Published on <br> 12 October 2015 </p>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #fefefe, background color: #2199e8, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".large-4.columns[data-equalizer-watch=\"\"]:nth-child(2) > p", + "html_snippet": "<p>Peer Reviewed</p>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #fefefe, background color: #2199e8, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".large-4.columns[data-equalizer-watch=\"\"]:nth-child(3) > p", + "html_snippet": "<p>License</p>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #fefefe, background color: #2199e8, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#license > p", + "html_snippet": "<p>test html in license text</p>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #fefefe, background color: #2199e8, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B91-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B91\" aria-describedby=\"reference-header\" id=\"cite-B91-1\">Waquet, 2004: 251–254</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B9-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B9\" aria-describedby=\"reference-header\" id=\"cite-B9-1\">Canfora and Cardinale, 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B58-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B58\" aria-describedby=\"reference-header\" id=\"cite-B58-1\">Olivia, 2008: 13</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B52-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B52\" aria-describedby=\"reference-header\" id=\"cite-B52-1\">Milanese, 2012: 67–82</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B67-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B67\" aria-describedby=\"reference-header\" id=\"cite-B67-1\">Ricucci, 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B69-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B69\" aria-describedby=\"reference-header\" id=\"cite-B69-1\">2014a</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B59-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B59\" aria-describedby=\"reference-header\" id=\"cite-B59-1\">1975</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B68-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B68\" aria-describedby=\"reference-header\" id=\"cite-B68-1\">Ricucci, 2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B70-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B70\" aria-describedby=\"reference-header\" id=\"cite-B70-1\">2014b</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B35-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B35\" aria-describedby=\"reference-header\" id=\"cite-B35-1\">Krashen, 1991</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B25-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B25\" aria-describedby=\"reference-header\" id=\"cite-B25-1\">Howatt and Smith, 2002</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B81-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B81\" aria-describedby=\"reference-header\" id=\"cite-B81-1\">Titone, 1987: 5</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B81-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B81\" aria-describedby=\"reference-header\" id=\"cite-B81-2\">Titone, 1987: 5</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B24-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B24\" aria-describedby=\"reference-header\" id=\"cite-B24-1\">Howatt, 1984: 284</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B75-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B75\" aria-describedby=\"reference-header\" id=\"cite-B75-1\">Schulz, 1975</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B42-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B42\" aria-describedby=\"reference-header\" id=\"cite-B42-1\">Lightbown, 1985</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B43-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B43\" aria-describedby=\"reference-header\" id=\"cite-B43-1\">Lightbown, 2000</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B14-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B14\" aria-describedby=\"reference-header\" id=\"cite-B14-1\">Debyser, 1973: 63–68</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B65-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B65\" aria-describedby=\"reference-header\" id=\"cite-B65-1\">Puren, 1994</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B76-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B76\" aria-describedby=\"reference-header\" id=\"cite-B76-1\">Serra Borneto, 1998</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B39-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B39\" aria-describedby=\"reference-header\" id=\"cite-B39-1\">Kumaravadivelu, 1994</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B40-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B40\" aria-describedby=\"reference-header\" id=\"cite-B40-1\">2006</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B10-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B10\" aria-describedby=\"reference-header\" id=\"cite-B10-1\">Celce-murcia, 1980</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B84-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B84\" aria-describedby=\"reference-header\" id=\"cite-B84-1\">Van Patten and Williams, 2005: 25</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B36-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B36\" aria-describedby=\"reference-header\" id=\"cite-B36-1\">1994: 45–46</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B29-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B29\" aria-describedby=\"reference-header\" id=\"cite-B29-1\">Kirwan, 1994: 188</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B51-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B51\" aria-describedby=\"reference-header\" id=\"cite-B51-1\">McLynn, 2005</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n10-nm1 > sup", + "html_snippet": "<sup>10</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B6-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B6\" aria-describedby=\"reference-header\" id=\"cite-B6-1\">Bellissima, 1955</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B11-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B11\" aria-describedby=\"reference-header\" id=\"cite-B11-1\">Collart, 1971</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B45-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B45\" aria-describedby=\"reference-header\" id=\"cite-B45-1\">Louth, 1989: 151</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n11-nm1 > sup", + "html_snippet": "<sup>11</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n12-nm1 > sup", + "html_snippet": "<sup>12</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n13-nm1 > sup", + "html_snippet": "<sup>13</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n14-nm1 > sup", + "html_snippet": "<sup>14</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n15-nm1 > sup", + "html_snippet": "<sup>15</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n16-nm1 > sup", + "html_snippet": "<sup>16</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B2-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B2\" aria-describedby=\"reference-header\" id=\"cite-B2-1\">Alfonsi, 1971: 42</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n17-nm1 > sup", + "html_snippet": "<sup>17</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B7-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B7\" aria-describedby=\"reference-header\" id=\"cite-B7-1\">Bonner, 1986: 180–183</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B57-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B57\" aria-describedby=\"reference-header\" id=\"cite-B57-1\">Neraudau, 1996: 58–59</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n18-nm1 > sup", + "html_snippet": "<sup>18</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n19-nm1 > sup", + "html_snippet": "<sup>19</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n20-nm1 > sup", + "html_snippet": "<sup>20</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B12-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B12\" aria-describedby=\"reference-header\" id=\"cite-B12-1\">Courcelle, 1943: 142</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B48-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B48\" aria-describedby=\"reference-header\" id=\"cite-B48-1\">Marrou, 1958<sup>4</sup>: 446 s.</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B78-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B78\" aria-describedby=\"reference-header\" id=\"cite-B78-1\">Solignac, 1962: 667</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n21-nm1 > sup", + "html_snippet": "<sup>21</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n22-nm1 > sup", + "html_snippet": "<sup>22</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n23-nm1 > sup", + "html_snippet": "<sup>23</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n24-nm1 > sup", + "html_snippet": "<sup>24</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n25-nm1 > sup", + "html_snippet": "<sup>25</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n26-nm1 > sup", + "html_snippet": "<sup>26</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n27-nm1 > sup", + "html_snippet": "<sup>27</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n28-nm1 > sup", + "html_snippet": "<sup>28</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n29-nm1 > sup", + "html_snippet": "<sup>29</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B53-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B53\" aria-describedby=\"reference-header\" id=\"cite-B53-1\">Miraglia 2004: 231–234</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B22-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B22\" aria-describedby=\"reference-header\" id=\"cite-B22-1\">Green, 1951</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B1-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B1\" aria-describedby=\"reference-header\" id=\"cite-B1-1\">Adams, 2003: 213–245</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B1-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B1\" aria-describedby=\"reference-header\" id=\"cite-B1-2\">Adams, 2003: 192–194</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B56-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B56\" aria-describedby=\"reference-header\" id=\"cite-B56-1\">2010: 531</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n30-nm1 > sup", + "html_snippet": "<sup>30</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n31-nm1 > sup", + "html_snippet": "<sup>31</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n32-nm1 > sup", + "html_snippet": "<sup>32</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n33-nm1 > sup", + "html_snippet": "<sup>33</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B49-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B49\" aria-describedby=\"reference-header\" id=\"cite-B49-1\">Marrou, 1966: 365–366</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n34-nm1 > sup", + "html_snippet": "<sup>34</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B77-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B77\" aria-describedby=\"reference-header\" id=\"cite-B77-1\">Simone, 1969: 106</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n35-nm1 > sup", + "html_snippet": "<sup>35</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B31-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B31\" aria-describedby=\"reference-header\" id=\"cite-B31-1\">Korhonen, 1996: 107</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B19-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B19\" aria-describedby=\"reference-header\" id=\"cite-B19-1\">Flammini, 1990: 17</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B79-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B79\" aria-describedby=\"reference-header\" id=\"cite-B79-1\">Tagliaferro, 2008: 68</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n36-nm1 > sup", + "html_snippet": "<sup>36</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B33-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B33\" aria-describedby=\"reference-header\" id=\"cite-B33-1\">1985: 4</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B34-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B34\" aria-describedby=\"reference-header\" id=\"cite-B34-1\">1987<sup>2</sup>: 66–67</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B8-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B8\" aria-describedby=\"reference-header\" id=\"cite-B8-1\">Cambiano, 1992: 526</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B74-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B74\" aria-describedby=\"reference-header\" id=\"cite-B74-1\">Sandys, 1910<sup>2</sup>: 235</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B20-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B20\" aria-describedby=\"reference-header\" id=\"cite-B20-1\">Gallo, 2003: 94</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#n37-nm1 > sup", + "html_snippet": "<sup>37</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 8.1pt (10.8px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B18-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B18\" aria-describedby=\"reference-header\" id=\"cite-B18-1\">Dombart and Kalb (ed.) 1960</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B92-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B92\" aria-describedby=\"reference-header\" id=\"cite-B92-1\">Weigel 1961</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B50-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B50\" aria-describedby=\"reference-header\" id=\"cite-B50-1\">Martin 1962</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B87-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B87\" aria-describedby=\"reference-header\" id=\"cite-B87-1\">Verheijen 1991</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B17-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B17\" aria-describedby=\"reference-header\" id=\"cite-B17-1\">Doignon 1997</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B82-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B82\" aria-describedby=\"reference-header\" id=\"cite-B82-1\">Too, 2001</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B90-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B90\" aria-describedby=\"reference-header\" id=\"cite-B90-1\">Vössing, 2003</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B62-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B62\" aria-describedby=\"reference-header\" id=\"cite-B62-1\">Pernot, 2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B5-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B5\" aria-describedby=\"reference-header\" id=\"cite-B5-1\">Bellandi and Ferri, 2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B41-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B41\" aria-describedby=\"reference-header\" id=\"cite-B41-1\">Laes, 2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B32-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B32\" aria-describedby=\"reference-header\" id=\"cite-B32-1\">Krashen, 1981</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B38-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B38\" aria-describedby=\"reference-header\" id=\"cite-B38-1\">Krashen and Terrell, 1983</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B37-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B37\" aria-describedby=\"reference-header\" id=\"cite-B37-1\">Krashen, 2003</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B44-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B44\" aria-describedby=\"reference-header\" id=\"cite-B44-1\">Lightbown and Spada, 2011<sup>3</sup>: 38</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B3-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B3\" aria-describedby=\"reference-header\" id=\"cite-B3-1\">Ando, 1994</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B88-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B88\" aria-describedby=\"reference-header\" id=\"cite-B88-1\">Vössing, 1992</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B89-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B89\" aria-describedby=\"reference-header\" id=\"cite-B89-1\">Vössing, 1997</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B55-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B55\" aria-describedby=\"reference-header\" id=\"cite-B55-1\">Moretti, 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B86-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B86\" aria-describedby=\"reference-header\" id=\"cite-B86-1\">Vecchio, 1994</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B46-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B46\" aria-describedby=\"reference-header\" id=\"cite-B46-1\">Manetti, 1987: 226–227</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B64-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B64\" aria-describedby=\"reference-header\" id=\"cite-B64-1\">Preti, 1956</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B4-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B4\" aria-describedby=\"reference-header\" id=\"cite-B4-1\">Baratin, 1981</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B83-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B83\" aria-describedby=\"reference-header\" id=\"cite-B83-1\">Toom, 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B47-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B47\" aria-describedby=\"reference-header\" id=\"cite-B47-1\">Markus, 1957</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B26-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B26\" aria-describedby=\"reference-header\" id=\"cite-B26-1\">Jackson, 1969</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B73-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B73\" aria-describedby=\"reference-header\" id=\"cite-B73-1\">Ruef, 1981</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B30-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B30\" aria-describedby=\"reference-header\" id=\"cite-B30-1\">Kirwan, 2001</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B23-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B23\" aria-describedby=\"reference-header\" id=\"cite-B23-1\">Henninger, 1989</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B60-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B60\" aria-describedby=\"reference-header\" id=\"cite-B60-1\">Paffenroth and Hughes, 2000</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B27-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B27\" aria-describedby=\"reference-header\" id=\"cite-B27-1\">Kaimio, 1979: 195–207</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B13-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B13\" aria-describedby=\"reference-header\" id=\"cite-B13-1\">Debut, 1983</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B15-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B15\" aria-describedby=\"reference-header\" id=\"cite-B15-1\">Dickey, 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B53-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B53\" aria-describedby=\"reference-header\" id=\"cite-B53-2\">2004: 226–227</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B72-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B72\" aria-describedby=\"reference-header\" id=\"cite-B72-1\">Rochette, 2008: 89–90</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B85-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B85\" aria-describedby=\"reference-header\" id=\"cite-B85-1\">Van Patten and Benati, 2010: 43</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B21-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B21\" aria-describedby=\"reference-header\" id=\"cite-B21-1\">Gardner, 1985: 10</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B28-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B28\" aria-describedby=\"reference-header\" id=\"cite-B28-1\">1976<sup>2</sup>: 323</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B63-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B63\" aria-describedby=\"reference-header\" id=\"cite-B63-1\">1997: 126</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B61-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B61\" aria-describedby=\"reference-header\" id=\"cite-B61-1\">Pallotti, 2001<sup>2</sup>: 219–220</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B16-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B16\" aria-describedby=\"reference-header\" id=\"cite-B16-1\">Diller, 1978: 72</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B66-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B66\" aria-describedby=\"reference-header\" id=\"cite-B66-1\">Richards and Rodgers, 2001<sup>2</sup>: 9</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B80-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B80\" aria-describedby=\"reference-header\" id=\"cite-B80-1\">Titone, 1968: 100–101</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B71-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B71\" aria-describedby=\"reference-header\" id=\"cite-B71-1\">Rivers, 1964: 19–20</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-B54-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#B54\" aria-describedby=\"reference-header\" id=\"cite-B54-1\">Moreschini, 1979: 38 s.</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-B1-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-B1-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#block-kj025vokp\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-B53-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#B58 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"http://www.treellle.org/files/lll/QA1.pdf\" target=\"_blank\">http://www.treellle.org/files/lll/QA1.pdf</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-B81-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#block-kptzyn8ec\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".section:nth-child(2) > ul > li:nth-child(1) > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"/olh/article/4403/galley/7575/view/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".section:nth-child(2) > ul > li:nth-child(2) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/7575/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".section:nth-child(2) > ul > li:nth-child(3) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/7576/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".section:nth-child(2) > ul > li:nth-child(4) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/33913/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".section:nth-child(2) > ul > li:nth-child(5) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/33914/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".section:nth-child(2) > ul > li:nth-child(6) > a", + "html_snippet": "<a href=\"/olh/article/4403/galley/33915/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"info/\"]", + "html_snippet": "<a href=\"/olh/issue/401/info/\"> Volume 1 • Issue 1 • 2015 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".section:nth-child(4) > ul > li > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"https://doi.org/10.16995/olh.30\" aria-label=\"D.O.I. for Non amabam Litteras Graecas. Note sulla Testimonianza di Sant’Agostino come Discente del Greco Antico Rivisitata alla L", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading0\"]", + "html_snippet": "<a href=\"#heading0\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">1. Premessa</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading1\"]", + "html_snippet": "<a href=\"#heading1\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">2. <em>Second Language Acquisition</em>: la posizione di Krashen</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading1\"] > em", + "html_snippet": "<em>Second Language Acquisition</em>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading2\"]", + "html_snippet": "<a href=\"#heading2\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">3. Agostino: “linguista”, docente e discente</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading3\"]", + "html_snippet": "<a href=\"#heading3\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">4. Da Agostino a Krashen: la ricerca dell’acquisizione del Logos</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading4\"]", + "html_snippet": "<a href=\"#heading4\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">5. Conclusioni</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading5\"]", + "html_snippet": "<a href=\"#heading5\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Competing Interests</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading6\"]", + "html_snippet": "<a href=\"#heading6\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Notes</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading7\"]", + "html_snippet": "<a href=\"#heading7\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">References</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"bbc.co.uk/\"]", + "html_snippet": "<a href=\"https://www.bbc.co.uk/\">Link</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".hide-for-small-only.section:nth-child(9) > ul > li > a", + "html_snippet": "<a href=\"https://doi.org/10.16995/olh.6318\">https://doi.org/10.16995/olh.6318</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#n3-nm1", + "html_snippet": "<a class=\"xref-fn\" href=\"#n3\" id=\"n3-nm1\"><sup>3</sup></a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (14.2px by 36.8px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 17.2px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=olh", + "rule_id": "target-size", + "impact": "serious", + "Selector": "#n36-nm1", + "html_snippet": "<a class=\"xref-fn\" href=\"#n36\" id=\"n36-nm1\"><sup>36</sup></a>", + "failure_summary": "Fix any of the following:\n Target has insufficient size (20.5px by 36.8px, should be at least 24px by 24px)\n Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of 20.6px instead of at least 24px." + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href$=\"login/\"]", + "html_snippet": "<a href=\"/olh/login/\" class=\"active\"> Log in </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "p > .active[href=\"/olh/register/step/1/\"]", + "html_snippet": "<a href=\"/olh/register/step/1/\" class=\"active\"> Register </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.09 (foreground color: #2199e8, background color: #ffffff, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[onclick=\"resizeText(-1);\"]", + "html_snippet": "<button onclick=\"resizeText(-1);\" aria-label=\"decrease text size\">A-</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.05 (foreground color: #8a8a8a, background color: #f1f1f1, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "button[onclick=\"resizeText(1);\"]", + "html_snippet": "<button onclick=\"resizeText(1);\" aria-label=\"increase text size\">A+</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.05 (foreground color: #8a8a8a, background color: #f1f1f1, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#dyslexia-mode", + "html_snippet": "<button onclick=\"toggleDyslexia();\" id=\"dyslexia-mode\" aria-label=\"Dyslexia mode\">Dyslexia</button>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.05 (foreground color: #8a8a8a, background color: #f1f1f1, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/keywords/1316/\"]", + "html_snippet": "<a href=\"/olh/keywords/1316/\"> education<span aria-hidden=\"true\">, </span> </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/keywords/4892/\"]", + "html_snippet": "<a href=\"/olh/keywords/4892/\"> political economy<span aria-hidden=\"true\">, </span> </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/keywords/4893/\"]", + "html_snippet": "<a href=\"/olh/keywords/4893/\"> secular crisis<span aria-hidden=\"true\">, </span> </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href=\"/olh/keywords/4894/\"]", + "html_snippet": "<a href=\"/olh/keywords/4894/\"> university<span aria-hidden=\"true\"></span> </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-content > span > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"https://doi.org/10.16995/olh.15\" aria-label=\"D.O.I. for DEV: Evaluation of Fresh and Frozen Beef Strip Loins of Equal Aging Periods for Palatability Traits\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#article_date_published", + "html_snippet": "<p id=\"article_date_published\"> Published on <br> 26 October 2015 </p>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #fefefe, background color: #2199e8, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".large-4.columns[data-equalizer-watch=\"\"]:nth-child(2) > p", + "html_snippet": "<p>Peer Reviewed</p>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #fefefe, background color: #2199e8, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".large-4.columns[data-equalizer-watch=\"\"]:nth-child(3) > p", + "html_snippet": "<p>License</p>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #fefefe, background color: #2199e8, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#license > p", + "html_snippet": "<p>Creative Commons Attribution 4.0</p>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #fefefe, background color: #2199e8, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r20-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r20\" aria-describedby=\"reference-header\" id=\"cite-r20-1\">Iskandar et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r10-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r10\" aria-describedby=\"reference-header\" id=\"cite-r10-1\">Buckley et al., 1977</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r31-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r31\" aria-describedby=\"reference-header\" id=\"cite-r31-1\">Pietrasik and Janz, 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r31-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r31\" aria-describedby=\"reference-header\" id=\"cite-r31-2\">Pietrasik and Janz, 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-1\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-1\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-2\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r9-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r9\" aria-describedby=\"reference-header\" id=\"cite-r9-1\">Botinestean et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r43-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r43\" aria-describedby=\"reference-header\" id=\"cite-r43-1\">Zhang et al., 2023</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r28-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r28\" aria-describedby=\"reference-header\" id=\"cite-r28-1\">Martino and Zaritzky, 1988</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-2\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-3\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r41-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r41\" aria-describedby=\"reference-header\" id=\"cite-r41-1\">Wheeler et al., 1990</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r26-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r26\" aria-describedby=\"reference-header\" id=\"cite-r26-1\">Lagerstedt et al., 2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r19-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r19\" aria-describedby=\"reference-header\" id=\"cite-r19-1\">Hergenreder et al., 2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-3\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r19-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r19\" aria-describedby=\"reference-header\" id=\"cite-r19-2\">Hergenreder et al., 2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-4", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-4\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-5", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-5\">2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-4", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-4\">2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r19-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r19\" aria-describedby=\"reference-header\" id=\"cite-r19-3\">2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r31-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r31\" aria-describedby=\"reference-header\" id=\"cite-r31-3\">Pietrasik and Janz, 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".xref-fig", + "html_snippet": "<a class=\"xref-fig\" href=\"#f1\">Figure 1</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r13-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r13\" aria-describedby=\"reference-header\" id=\"cite-r13-1\">Drey et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r30-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r30\" aria-describedby=\"reference-header\" id=\"cite-r30-1\">Olson et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r32-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r32\" aria-describedby=\"reference-header\" id=\"cite-r32-1\">Prill et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r36-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r36\" aria-describedby=\"reference-header\" id=\"cite-r36-1\">Rice et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r8-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r8\" aria-describedby=\"reference-header\" id=\"cite-r8-1\">Beyer et al., 2021</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r15-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r15\" aria-describedby=\"reference-header\" id=\"cite-r15-1\">Farmer et al., 2022</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r3-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r3\" aria-describedby=\"reference-header\" id=\"cite-r3-1\">AMSA, 2015</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r8-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r8\" aria-describedby=\"reference-header\" id=\"cite-r8-2\">2021</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r13-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r13\" aria-describedby=\"reference-header\" id=\"cite-r13-2\">Drey et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r30-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r30\" aria-describedby=\"reference-header\" id=\"cite-r30-2\">Olson et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r32-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r32\" aria-describedby=\"reference-header\" id=\"cite-r32-2\">Prill et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r36-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r36\" aria-describedby=\"reference-header\" id=\"cite-r36-2\">Rice et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r15-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r15\" aria-describedby=\"reference-header\" id=\"cite-r15-2\">Farmer et al., 2022</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r3-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r3\" aria-describedby=\"reference-header\" id=\"cite-r3-2\">AMSA, 2015</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r15-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r15\" aria-describedby=\"reference-header\" id=\"cite-r15-3\">2022</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r39-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r39\" aria-describedby=\"reference-header\" id=\"cite-r39-1\">1999</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r23-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r23\" aria-describedby=\"reference-header\" id=\"cite-r23-1\">King et al., 2023</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r3-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r3\" aria-describedby=\"reference-header\" id=\"cite-r3-3\">AMSA, 2015</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r12-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r12\" aria-describedby=\"reference-header\" id=\"cite-r12-1\">2021</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r23-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r23\" aria-describedby=\"reference-header\" id=\"cite-r23-2\">King et al., 2023</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r23-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r23\" aria-describedby=\"reference-header\" id=\"cite-r23-3\">King et al., 2023</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r1-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r1\" aria-describedby=\"reference-header\" id=\"cite-r1-1\">1998</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r11-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r11\" aria-describedby=\"reference-header\" id=\"cite-r11-1\">Dahmer et al., 2022</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab1\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab1\">Table 1</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm2 > sup > sup", + "html_snippet": "<sup>ab</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 6.1pt (8.1px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm3 > sup > sup", + "html_snippet": "<sup>bc</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 6.1pt (8.1px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm4 > sup > sup", + "html_snippet": "<sup>cd</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 6.1pt (8.1px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm5 > sup > sup", + "html_snippet": "<sup>cd</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 6.1pt (8.1px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm6 > sup > sup", + "html_snippet": "<sup>de</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 6.1pt (8.1px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm8 > sup > sup", + "html_snippet": "<sup>ef</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 6.1pt (8.1px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm10 > sup > sup", + "html_snippet": "<sup>fg</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 6.1pt (8.1px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm13 > sup > sup", + "html_snippet": "<sup>gh</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 6.1pt (8.1px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm14 > sup > sup", + "html_snippet": "<sup>ghi</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 6.1pt (8.1px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab2-fn1-nm15 > sup > sup", + "html_snippet": "<sup>hi</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 6.1pt (8.1px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab3\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab3\">Table 3</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab4\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab4\">Table 4</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab5\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab5\">Table 5</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab6\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab6\">Table 6</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab7\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab7\">Table 7</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#tab8\"]", + "html_snippet": "<a class=\"xref-table\" href=\"#tab8\">Tables 8</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab8-fn1-nm14 > sup > sup", + "html_snippet": "<sup>ab</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 6.1pt (8.1px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab9-fn1-nm9 > sup > sup", + "html_snippet": "<sup>ab</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 6.1pt (8.1px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#tab9-fn1-nm15 > sup > sup", + "html_snippet": "<sup>ab</sup>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 6.1pt (8.1px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r26-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r26\" aria-describedby=\"reference-header\" id=\"cite-r26-2\">Lagerstedt et al., 2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-6", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-6\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-5", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-5\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r33-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r33\" aria-describedby=\"reference-header\" id=\"cite-r33-1\">Rahelić et al., 1985</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-6", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-6\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r26-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r26\" aria-describedby=\"reference-header\" id=\"cite-r26-3\">Lagerstedt et al., 2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-7", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-7\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-7", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-7\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r26-4", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r26\" aria-describedby=\"reference-header\" id=\"cite-r26-4\">2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-8", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-8\">2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r24-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r24\" aria-describedby=\"reference-header\" id=\"cite-r24-1\">Koohmaraie, 1990</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r24-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r24\" aria-describedby=\"reference-header\" id=\"cite-r24-2\">Koohmaraie, 1990</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r25-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r25\" aria-describedby=\"reference-header\" id=\"cite-r25-1\">Kristensen et al., 2006</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-9", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-9\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-8", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-8\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-10", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-10\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-9", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-9\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r41-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r41\" aria-describedby=\"reference-header\" id=\"cite-r41-2\">Wheeler et al., 1990</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r26-5", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r26\" aria-describedby=\"reference-header\" id=\"cite-r26-5\">Lagerstedt et al., 2008</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r17-11", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r17\" aria-describedby=\"reference-header\" id=\"cite-r17-11\">Grayson et al., 2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-10", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-10\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r19-4", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r19\" aria-describedby=\"reference-header\" id=\"cite-r19-4\">2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r18-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r18\" aria-describedby=\"reference-header\" id=\"cite-r18-1\">Grujić et al., 1993</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-11", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-11\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r19-5", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r19\" aria-describedby=\"reference-header\" id=\"cite-r19-5\">2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r27-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r27\" aria-describedby=\"reference-header\" id=\"cite-r27-1\">Leygonie et al., 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-12", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-12\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r22-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r22\" aria-describedby=\"reference-header\" id=\"cite-r22-1\">Kim et al., 2018</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-13", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-13\">2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-14", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-14\">2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-15", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-15\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r27-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r27\" aria-describedby=\"reference-header\" id=\"cite-r27-2\">Leygonie et al., 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-16", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-16\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r22-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r22\" aria-describedby=\"reference-header\" id=\"cite-r22-2\">Kim et al., 2018</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r37-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r37\" aria-describedby=\"reference-header\" id=\"cite-r37-1\">Sánchez del Pulgar et al., 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r14-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r14\" aria-describedby=\"reference-header\" id=\"cite-r14-1\">English et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r35-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r35\" aria-describedby=\"reference-header\" id=\"cite-r35-1\">Ramanathan et al., 2020</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r14-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r14\" aria-describedby=\"reference-header\" id=\"cite-r14-2\">English et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r21-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r21\" aria-describedby=\"reference-header\" id=\"cite-r21-1\">Jeong et al., 2011</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r7-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r7\" aria-describedby=\"reference-header\" id=\"cite-r7-1\">Bekhit and Faustman, 2005</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r40-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r40\" aria-describedby=\"reference-header\" id=\"cite-r40-1\">2014</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r19-6", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r19\" aria-describedby=\"reference-header\" id=\"cite-r19-6\">Hergenreder et al., 2013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r21-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r21\" aria-describedby=\"reference-header\" id=\"cite-r21-2\">Jeong et al., 2011</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r29-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r29\" aria-describedby=\"reference-header\" id=\"cite-r29-1\">Nair et al., 2017</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r34-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r34\" aria-describedby=\"reference-header\" id=\"cite-r34-1\">Rahman et al., 2015</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r38-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r38\" aria-describedby=\"reference-header\" id=\"cite-r38-1\">Setyabrata and Kim, 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r2-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r2\" aria-describedby=\"reference-header\" id=\"cite-r2-1\">Al-Dalali et al., 2022</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r34-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r34\" aria-describedby=\"reference-header\" id=\"cite-r34-2\">Rahman et al., 2015</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r38-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r38\" aria-describedby=\"reference-header\" id=\"cite-r38-2\">Setyabrata and Kim, 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r43-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r43\" aria-describedby=\"reference-header\" id=\"cite-r43-2\">Zhang et al., 2023</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r42-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r42\" aria-describedby=\"reference-header\" id=\"cite-r42-1\">Xia et al., 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r6-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r6\" aria-describedby=\"reference-header\" id=\"cite-r6-1\">Bao et al., 2021</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r42-2", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r42\" aria-describedby=\"reference-header\" id=\"cite-r42-2\">Xia et al., 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r44-1", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r44\" aria-describedby=\"reference-header\" id=\"cite-r44-1\">Zhang et al., 2019</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r27-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r27\" aria-describedby=\"reference-header\" id=\"cite-r27-3\">Leygonie et al., 2012</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r5-17", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r5\" aria-describedby=\"reference-header\" id=\"cite-r5-17\">Aroeira et al., 2016</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r22-3", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r22\" aria-describedby=\"reference-header\" id=\"cite-r22-3\">Kim et al., 2018</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#cite-r31-4", + "html_snippet": "<a class=\"xref-bibr\" href=\"#r31\" aria-describedby=\"reference-header\" id=\"cite-r31-4\">Pietrasik and Janz, 2009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r1 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/S0309-1740(97)00101-0\" target=\"_blank\">https://doi.org/10.1016/S0309-1740(97)00101-0</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r2 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.foodchem.2021.131881\" target=\"_blank\">https://doi.org/10.1016/j.foodchem.2021.131881</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r3-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r3-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#block-cz4k4wum9\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r5 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2016.02.006\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2016.02.006</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-4\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-5\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-6\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-7\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(7)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-8\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(8)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-9\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(9)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-10\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(10)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-11\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(11)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-12\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(12)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-13\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(13)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-14\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(14)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-15\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(15)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-16\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(16)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r5-17\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(17)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r6 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1111/1541-4337.12841\" target=\"_blank\">https://doi.org/10.1111/1541-4337.12841</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r7 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2005.04.032\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2005.04.032</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r8 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb.12424\" target=\"_blank\">https://doi.org/10.22175/mmb.12424</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r8-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r8-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r9 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.lwt.2016.07.026\" target=\"_blank\">https://doi.org/10.1016/j.lwt.2016.07.026</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r10 > a[target=\"_blank\"]:nth-child(2)", + "html_snippet": "<a href=\"https://www.jstor.org/stable/25557929\" target=\"_blank\">https://www.jstor.org/stable/25557929</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r10 > a[target=\"_blank\"]:nth-child(3)", + "html_snippet": "<a href=\"https://www.jstor.org/stable/25557929\" target=\"_blank\">https://www.jstor.org/stable/25557929</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r11 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1093/tas/txac060\" target=\"_blank\">https://doi.org/10.1093/tas/txac060</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r12 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2021.108454\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2021.108454</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r13 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1093/jas/sky435\" target=\"_blank\">https://doi.org/10.1093/jas/sky435</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r13-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r13-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r14 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.2527/jas.2016-0561\" target=\"_blank\">https://doi.org/10.2527/jas.2016-0561</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r14-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r14-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r15 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb.15488\" target=\"_blank\">https://doi.org/10.22175/mmb.15488</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r15-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r15-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r15-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r16 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/S0309-1740(03)00081-0\" target=\"_blank\">https://doi.org/10.1016/S0309-1740(03)00081-0</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r17 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.2527/jas.2014-7613\" target=\"_blank\">https://doi.org/10.2527/jas.2014-7613</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-4\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-5\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-6\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-7\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(7)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-8\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(8)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-9\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(9)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-10\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(10)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r17-11\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(11)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r18 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/0309-1740(93)90003-Z\" target=\"_blank\">https://doi.org/10.1016/0309-1740(93)90003-Z</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r19 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.2527/jas.2012-5223\" target=\"_blank\">https://doi.org/10.2527/jas.2012-5223</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r19-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r19-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r19-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r19-4\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r19-5\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r19-6\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(6)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r20 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1088/1755-1315/365/1/012072\" target=\"_blank\">https://doi.org/10.1088/1755-1315/365/1/012072</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r21 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.foodres.2011.08.023\" target=\"_blank\">https://doi.org/10.1016/j.foodres.2011.08.023</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r21-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r21-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r22 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2018.01.024\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2018.01.024</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r22-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r22-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r22-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r23 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb.12473\" target=\"_blank\">https://doi.org/10.22175/mmb.12473</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r23-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r23-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r23-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r24 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.2527/1990.683659x\" target=\"_blank\">https://doi.org/10.2527/1990.683659x</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r24-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r24-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r25 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2005.06.010\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2005.06.010</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r26 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2008.01.009\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2008.01.009</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r26-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r26-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r26-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r26-4\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r26-5\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(5)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r27 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2012.01.013\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2012.01.013</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r27-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r27-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r27-3\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r28 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1111/j.1365-2621.1988.tb07802.x\" target=\"_blank\">https://doi.org/10.1111/j.1365-2621.1988.tb07802.x</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r29 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb2017.07.0037\" target=\"_blank\">https://doi.org/10.22175/mmb2017.07.0037</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r30 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb2019.07.0022\" target=\"_blank\">https://doi.org/10.22175/mmb2019.07.0022</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r30-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r30-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r31 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2008.10.006\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2008.10.006</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r31-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r31-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#block-bac4rnkez\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(3)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r31-4\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(4)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r32 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb2019.07.0024\" target=\"_blank\">https://doi.org/10.22175/mmb2019.07.0024</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r32-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r32-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r33 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/0309-1740(85)90082-8\" target=\"_blank\">https://doi.org/10.1016/0309-1740(85)90082-8</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r34 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.5851/kosfa.2015.35.6.772\" target=\"_blank\">https://doi.org/10.5851/kosfa.2015.35.6.772</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r34-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r34-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r35 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1021/acs.jafc.9b08098\" target=\"_blank\">https://doi.org/10.1021/acs.jafc.9b08098</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r36 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.22175/mmb2019.07.0027\" target=\"_blank\">https://doi.org/10.22175/mmb2019.07.0027</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r36-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r36-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r37 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2011.11.024\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2011.11.024</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r38 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2019.01.007\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2019.01.007</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r38-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r38-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r39 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.2527/1999.77102693x\" target=\"_blank\">https://doi.org/10.2527/1999.77102693x</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r40 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2014.06.032\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2014.06.032</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r41 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1111/j.1365-2621.1990.tb06748.x\" target=\"_blank\">https://doi.org/10.1111/j.1365-2621.1990.tb06748.x</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r41-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r41-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r42 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2009.05.003\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2009.05.003</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r42-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r42-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r43 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.foodchem.2022.133874\" target=\"_blank\">https://doi.org/10.1016/j.foodchem.2022.133874</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r43-1\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(1)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[data-citation-id=\"cite-r43-2\"] > span[aria-hidden=\"true\"]", + "html_snippet": "<span aria-hidden=\"true\">---^(2)</span>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "#r44 > a[target=\"_blank\"]", + "html_snippet": "<a href=\"https://doi.org/10.1016/j.meatsci.2018.11.018\" target=\"_blank\">https://doi.org/10.1016/j.meatsci.2018.11.018</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".section:nth-child(2) > ul > li:nth-child(1) > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"/olh/article/4405/galley/7579/view/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".section:nth-child(2) > ul > li:nth-child(2) > a", + "html_snippet": "<a href=\"/olh/article/4405/galley/7579/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".section:nth-child(2) > ul > li:nth-child(3) > a", + "html_snippet": "<a href=\"/olh/article/4405/galley/7580/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".section:nth-child(2) > ul > li:nth-child(4) > a", + "html_snippet": "<a href=\"/olh/article/4405/galley/33919/download/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"info/\"]", + "html_snippet": "<a href=\"/olh/issue/401/info/\"> Volume 1 • Issue 1 • 2015 </a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".section:nth-child(4) > ul > li > a[target=\"_blank\"]", + "html_snippet": "<a target=\"_blank\" href=\"https://doi.org/10.16995/olh.15\" aria-label=\"D.O.I. for DEV: Evaluation of Fresh and Frozen Beef Strip Loins of Equal Aging Periods for Palatability Traits\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": ".section:nth-child(6) > ul > li > a", + "html_snippet": "<a href=\"/olh/download/article/4405/supp_file/783/\">", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading0\"]", + "html_snippet": "<a href=\"#heading0\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Introduction</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading1\"]", + "html_snippet": "<a href=\"#heading1\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Materials and Methods</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading2\"]", + "html_snippet": "<a href=\"#heading2\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Sample collection and fabrication</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading3\"]", + "html_snippet": "<a href=\"#heading3\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Trained sensory panels</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading4\"]", + "html_snippet": "<a href=\"#heading4\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Consumer sensory panels</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading5\"]", + "html_snippet": "<a href=\"#heading5\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Shear force, cooking characteristics, and internal color</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading6\"]", + "html_snippet": "<a href=\"#heading6\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Sample preparation and proximate analysis</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading7\"]", + "html_snippet": "<a href=\"#heading7\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Surface hydrophobicity</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading8\"]", + "html_snippet": "<a href=\"#heading8\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Metmyoglobin-reducing activity</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading9\"]", + "html_snippet": "<a href=\"#heading9\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Lipid oxidation</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading10\"]", + "html_snippet": "<a href=\"#heading10\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Statistical analysis</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading11\"]", + "html_snippet": "<a href=\"#heading11\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Results</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading12\"]", + "html_snippet": "<a href=\"#heading12\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Consumer sensory evaluation</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading13\"]", + "html_snippet": "<a href=\"#heading13\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Trained sensory evaluation</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading14\"]", + "html_snippet": "<a href=\"#heading14\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Warner-Bratzler shear force and cooking characteristics</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading15\"]", + "html_snippet": "<a href=\"#heading15\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Internal cooked color, color stability, lipid oxidation, and surface", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading16\"]", + "html_snippet": "<a href=\"#heading16\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Discussion</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading17\"]", + "html_snippet": "<a href=\"#heading17\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Conclusions</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading18\"]", + "html_snippet": "<a href=\"#heading18\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Acknowledgement</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "color-contrast", + "impact": "serious", + "Selector": "a[href$=\"#heading19\"]", + "html_snippet": "<a href=\"#heading19\" onclick=\"$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;\">Reference</a>", + "failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.06 (foreground color: #2199e8, background color: #fefefe, font size: 10.8pt (14.4px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "rule_id": "list", + "impact": "serious", + "Selector": "#reflist > ul", + "html_snippet": "<ul>", + "failure_summary": "Fix all of the following:\n List element has direct children that are not allowed: h2" + } +] \ No newline at end of file diff --git a/a11y/results/markdown/alt-text.md b/a11y/results/markdown/alt-text.md new file mode 100644 index 0000000..0cab6b5 --- /dev/null +++ b/a11y/results/markdown/alt-text.md @@ -0,0 +1,1423 @@ +# Alt Text Branch Accessibility report (WCAG 2.2) + +**URLs tested:** 65 +**URLs passing (no violations):** 4 +**URLs with violations:** 61 +**Total rule violations:** 133 +**Total failing elements (nodes):** 1220 + +## Summary by URL + +| URL | Errors | Status | +| --- | --- | --- | +| http://localhost:8000/?theme=clean | 27 | :x: fail | +| http://localhost:8000/404/?theme=clean | 5 | :x: fail | +| http://localhost:8000/journals/?theme=clean | 5 | :x: fail | +| http://localhost:8000/contact/?theme=clean | 6 | :x: fail | +| http://localhost:8000/olh/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/accessibility/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/contact/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/editorialteam/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/search/?theme=clean | 8 | :x: fail | +| http://localhost:8000/olh/site/about/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 2 | :x: fail | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/submissions/?theme=clean | 2 | :x: fail | +| http://localhost:8000/olh/issues/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/collections/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/collections/846/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/news/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/news/429/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/articles/?theme=clean | 3 | :x: fail | +| http://localhost:8000/olh/article/id/4403/?theme=clean | | :white_check_mark: pass | +| http://localhost:8000/olh/article/id/4405/?theme=clean | | :white_check_mark: pass | +| http://localhost:8000/?theme=olh | 4 | :x: fail | +| http://localhost:8000/404/?theme=olh | 4 | :x: fail | +| http://localhost:8000/journals/?theme=olh | 3 | :x: fail | +| http://localhost:8000/contact/?theme=olh | 4 | :x: fail | +| http://localhost:8000/olh/?theme=olh | 11 | :x: fail | +| http://localhost:8000/olh/accessibility/?theme=olh | 2 | :x: fail | +| http://localhost:8000/olh/contact/?theme=olh | 3 | :x: fail | +| http://localhost:8000/olh/editorialteam/?theme=olh | 17 | :x: fail | +| http://localhost:8000/olh/search/?theme=olh | 5 | :x: fail | +| http://localhost:8000/olh/site/about/?theme=olh | 16 | :x: fail | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 16 | :x: fail | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 53 | :x: fail | +| http://localhost:8000/olh/submissions/?theme=olh | 16 | :x: fail | +| http://localhost:8000/olh/issues/?theme=olh | 2 | :x: fail | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 2 | :x: fail | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 2 | :x: fail | +| http://localhost:8000/olh/collections/?theme=olh | 2 | :x: fail | +| http://localhost:8000/olh/collections/846/?theme=olh | 51 | :x: fail | +| http://localhost:8000/olh/news/?theme=olh | 14 | :x: fail | +| http://localhost:8000/olh/news/429/?theme=olh | 3 | :x: fail | +| http://localhost:8000/olh/articles/?theme=olh | 6 | :x: fail | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 158 | :x: fail | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 293 | :x: fail | +| http://localhost:8000/olh/?theme=material | 14 | :x: fail | +| http://localhost:8000/olh/accessibility/?theme=material | 5 | :x: fail | +| http://localhost:8000/olh/contact/?theme=material | 14 | :x: fail | +| http://localhost:8000/olh/editorialteam/?theme=material | 20 | :x: fail | +| http://localhost:8000/olh/search/?theme=material | 16 | :x: fail | +| http://localhost:8000/olh/site/about/?theme=material | 17 | :x: fail | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 19 | :x: fail | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 34 | :x: fail | +| http://localhost:8000/olh/submissions/?theme=material | 20 | :x: fail | +| http://localhost:8000/olh/issues/?theme=material | 42 | :x: fail | +| http://localhost:8000/olh/issue/402/info/?theme=material | 25 | :x: fail | +| http://localhost:8000/olh/issue/409/info/?theme=material | 25 | :x: fail | +| http://localhost:8000/olh/collections/?theme=material | 55 | :x: fail | +| http://localhost:8000/olh/collections/846/?theme=material | 56 | :x: fail | +| http://localhost:8000/olh/news/?theme=material | 18 | :x: fail | +| http://localhost:8000/olh/news/429/?theme=material | 9 | :x: fail | +| http://localhost:8000/olh/articles/?theme=material | 73 | :x: fail | +| http://localhost:8000/olh/article/id/4403/?theme=material | | :white_check_mark: pass | +| http://localhost:8000/olh/article/id/4405/?theme=material | | :white_check_mark: pass | + +## Rules run and results + +All rules executed in this run (WCAG 2.2 Level A and AA, ACT). Status indicates whether the rule had any violations across the tested URLs. + +| Rule ID | Description | Errors | Status | +| --- | --- | --- | --- | +| aria-allowed-attr | Elements must only use supported ARIA attributes | | :white_check_mark: pass | +| aria-conditional-attr | ARIA attributes must be used as specified for the element's role | | :white_check_mark: pass | +| aria-deprecated-role | Deprecated ARIA roles must not be used | | :white_check_mark: pass | +| aria-hidden-body | aria-hidden="true" must not be present on the document body | | :white_check_mark: pass | +| aria-hidden-focus | ARIA hidden element must not be focusable or contain focusable elements | | :white_check_mark: pass | +| aria-prohibited-attr | Elements must only use permitted ARIA attributes | | :white_check_mark: pass | +| aria-required-attr | Required ARIA attributes must be provided | | :white_check_mark: pass | +| aria-roles | ARIA roles used must conform to valid values | | :white_check_mark: pass | +| aria-valid-attr | ARIA attributes must conform to valid names | | :white_check_mark: pass | +| aria-valid-attr-value | ARIA attributes must conform to valid values | | :white_check_mark: pass | +| avoid-inline-spacing | Inline text spacing must be adjustable with custom stylesheets | | :white_check_mark: pass | +| button-name | Buttons must have discernible text | | :white_check_mark: pass | +| bypass | Page must have means to bypass repeated blocks | | :white_check_mark: pass | +| color-contrast | Elements must meet minimum color contrast ratio thresholds | 1079 | :x: fail | +| document-title | Documents must have `<title>` element to aid in navigation | 1 | :x: fail | +| duplicate-id-aria | IDs used in ARIA and labels must be unique | | :white_check_mark: pass | +| html-has-lang | `<html>` element must have a lang attribute | 4 | :x: fail | +| html-lang-valid | `<html>` element must have a valid value for the lang attribute | | :white_check_mark: pass | +| image-alt | Images must have alternative text | 27 | :x: fail | +| link-name | Links must have discernible text | 35 | :x: fail | +| list | `<ul>` and `<ol>` must only directly contain `<li>`, `<script>` or `<template>` elements | 24 | :x: fail | +| listitem | `<li>` elements must be contained in a `<ul>` or `<ol>` | | :white_check_mark: pass | +| meta-viewport | Zooming and scaling must not be disabled | | :white_check_mark: pass | +| nested-interactive | Interactive controls must not be nested | | :white_check_mark: pass | +| target-size | All touch targets must be 24px large, or leave sufficient space | 17 | :x: fail | + +--- + +## Details by URL + +## Failure summary reference + +Each issue in the details below links to one of these summaries. + +<span id="color-contrast"></span> +### Failure color-contrast (1079) + +- Element has insufficient color contrast. + +<span id="document-title"></span> +### Failure document-title (1) + +- Document does not have a non-empty `<title>` element + +<span id="html-has-lang"></span> +### Failure html-has-lang (4) + +- The `<html>` element does not have a lang attribute + +<span id="image-alt"></span> +### Failure image-alt (27) + +- Element does not have an alt attribute +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="label"></span> +### Failure label (8) + +- Element does not have an implicit (wrapped) `<label>` +- Element does not have an explicit `<label>` +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element has no placeholder attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="link-name"></span> +### Failure link-name (35) + +- Element is in tab order and does not have accessible text +- Element does not have text that is visible to screen readers +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute + +<span id="list-1"></span> +### Failure list 1 (17) + +- List element has direct children that are not allowed: p + +<span id="list-2"></span> +### Failure list 2 (2) + +- List element has direct children that are not allowed: ul + +<span id="list-3"></span> +### Failure list 3 (1) + +- List element has direct children that are not allowed: h2 + +<span id="list-4"></span> +### Failure list 4 (4) + +- List element has direct children that are not allowed: a + +<span id="select-name"></span> +### Failure select-name (25) + +- Element does not have an implicit (wrapped) `<label>` +- Element does not have an explicit `<label>` +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="target-size"></span> +### Failure target-size (17) + +- Target has insufficient size + +--- + +## Results + +| Page | Rule | Impact | Selector | HTML | Issue ref | +| --- | --- | --- | --- | --- | --- | +| [?theme=clean](http://localhost:8000/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(2)` | `<a class="button" style="background-color: #2374e1;" href="https://www.facebook.com/OpenLibHums" target="_blank"> Facebook</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(1) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/4318b0e9-7fe0-458e-b581-47a8272445ff.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(2) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/d51381e2-1e9d-43af-8a16-426ebd422c2b.png">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(3) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/2f229b0f-fe4b-4305-8ef8-d79605b9a39a.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(4) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/d1f92d18-6e26-416a-8ddc-e4e064e74e0e.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(5) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/e051960a-9ce2-4b67-bdb0-8e5c0802a702.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(6) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/9501ef33-cd65-4af1-b8e7-17af621e56e0.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(7) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/7ff745d8-348a-4e3a-a988-c4b259c59c2d.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(8) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/0cfb39c2-f06f-4d29-a37b-de44ee71fc0d.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(9) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/9cbf1eea-4add-4c66-acf2-d72f4ea77b6d.38">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(10) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/cfb0e4ce-5a9f-492d-8461-802e02eebe51.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(11) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/f78bdc5d-9e23-40bd-8db8-5e63d598f8a0.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(12) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/1de2f639-9b01-4892-9d15-86632a5b1e53.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(13) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/4f538326-d67e-49f5-a01f-03bd86921b74.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(14) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/cb49fae9-7091-4314-ac3f-838cb9797965.png">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(15) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/6815d33a-4ccf-49f5-9897-2d9f19623a1c.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(16) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/cb7b88b7-f019-4c75-9448-18a1f07cb794">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(17) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/f587b2c3-7c94-4b9f-bc62-f740906c4586.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(18) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/2b0cf43f-492c-4d69-93aa-2113adce0120.png">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(19) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/a9f5bb3d-0647-4be7-8bc7-e9fcf684a03a.png">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(20) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/402a83ca-d270-42a8-a0bf-a9bc2cbd7da4.png">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(21) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/78d30292-9373-45ca-a179-2abbb4ca2a3a.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `a > img` | `<img class="" src="https://www.openlibhums.org/media/press/Conference_programme.png">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `#footer > .row > .col-md-2 > .top-bar-image.img-fluid[src$="cover/"]` | `<img src="/press/cover/" class="top-bar-image img-fluid">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/accessibility/">Accessibility</a>` | [Failure target-size](#target-size) | +| [404/?theme=clean](http://localhost:8000/404/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [404/?theme=clean](http://localhost:8000/404/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(2)` | `<a class="button" style="background-color: #2374e1;" href="https://www.facebook.com/OpenLibHums" target="_blank"> Facebook</a>` | [Failure color-contrast](#color-contrast) | +| [404/?theme=clean](http://localhost:8000/404/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [404/?theme=clean](http://localhost:8000/404/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `#footer > .row > .col-md-2 > img` | `<img src="/press/cover/" class="top-bar-image img-fluid">` | [Failure image-alt](#image-alt) | +| [404/?theme=clean](http://localhost:8000/404/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/accessibility/">Accessibility</a>` | [Failure target-size](#target-size) | +| [journals/?theme=clean](http://localhost:8000/journals/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [journals/?theme=clean](http://localhost:8000/journals/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(2)` | `<a class="button" style="background-color: #2374e1;" href="https://www.facebook.com/OpenLibHums" target="_blank"> Facebook</a>` | [Failure color-contrast](#color-contrast) | +| [journals/?theme=clean](http://localhost:8000/journals/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [journals/?theme=clean](http://localhost:8000/journals/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `#footer > .row > .col-md-2 > .top-bar-image[src$="cover/"]` | `<img src="/press/cover/" class="top-bar-image img-fluid">` | [Failure image-alt](#image-alt) | +| [journals/?theme=clean](http://localhost:8000/journals/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/accessibility/">Accessibility</a>` | [Failure target-size](#target-size) | +| [contact/?theme=clean](http://localhost:8000/contact/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=clean](http://localhost:8000/contact/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(2)` | `<a class="button" style="background-color: #2374e1;" href="https://www.facebook.com/OpenLibHums" target="_blank"> Facebook</a>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=clean](http://localhost:8000/contact/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=clean](http://localhost:8000/contact/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `#footer > .row > .col-md-2 > img` | `<img src="/press/cover/" class="top-bar-image img-fluid">` | [Failure image-alt](#image-alt) | +| [contact/?theme=clean](http://localhost:8000/contact/?theme=clean) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#id_captcha_0` | `<input type="text" name="captcha_0" size="5" required="" id="id_captcha_0">` | [Failure label](#label) | +| [contact/?theme=clean](http://localhost:8000/contact/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/accessibility/">Accessibility</a>` | [Failure target-size](#target-size) | +| [olh/?theme=clean](http://localhost:8000/olh/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/accessibility/?theme=clean](http://localhost:8000/olh/accessibility/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/contact/?theme=clean ](http://localhost:8000/olh/contact/?theme=clean ) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/editorialteam/?theme=clean](http://localhost:8000/olh/editorialteam/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_title"]` | `<label class="form-check-label" for="id_title">Search Titles</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_abstract"]` | `<label class="form-check-label" for="id_abstract">Search Abstract</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_authors"]` | `<label class="form-check-label" for="id_authors">Search Authors</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_keywords"]` | `<label class="form-check-label" for="id_keywords">Search Keywords</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_full_text"]` | `<label class="form-check-label" for="id_full_text">Search Full Text</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_orcid"]` | `<label class="form-check-label" for="id_orcid">Search ORCIDs</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.form-group:nth-child(1) > ul` | `<ul>` | [Failure list 2](#list-2) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/site/about/?theme=clean](http://localhost:8000/olh/site/about/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/site/author-guidelines/?theme=clean](http://localhost:8000/olh/site/author-guidelines/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/site/author-guidelines/?theme=clean](http://localhost:8000/olh/site/author-guidelines/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(15) > a:nth-child(3)` | `<a href="https://olh.openlibhums.org/help/view/editorial/topic/000044">.</a>` | [Failure target-size](#target-size) | +| [olh/site/journal-policies/?theme=clean](http://localhost:8000/olh/site/journal-policies/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/submissions/?theme=clean](http://localhost:8000/olh/submissions/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/submissions/?theme=clean](http://localhost:8000/olh/submissions/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `li:nth-child(9) > a[target="_blank"]` | `<a href="/help/view/editorial/topic/000044" target="_blank">.</a>` | [Failure target-size](#target-size) | +| [olh/issues/?theme=clean](http://localhost:8000/olh/issues/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/issue/402/info/?theme=clean](http://localhost:8000/olh/issue/402/info/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/issue/409/info/?theme=clean](http://localhost:8000/olh/issue/409/info/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/collections/?theme=clean](http://localhost:8000/olh/collections/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/collections/846/?theme=clean](http://localhost:8000/olh/collections/846/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/news/?theme=clean](http://localhost:8000/olh/news/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/news/429/?theme=clean](http://localhost:8000/olh/news/429/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/articles/?theme=clean](http://localhost:8000/olh/articles/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/articles/?theme=clean](http://localhost:8000/olh/articles/?theme=clean) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select[name="order_by"]` | `<select class="custom-select" onchange="this.form.submit()" name="order_by" form="facet_form">` | [Failure select-name](#select-name) | +| [olh/articles/?theme=clean](http://localhost:8000/olh/articles/?theme=clean) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select[name="paginate_by"]` | `<select class="custom-select" onchange="this.form.submit()" name="paginate_by" form="facet_form">` | [Failure select-name](#select-name) | +| [?theme=olh](http://localhost:8000/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=olh](http://localhost:8000/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=olh](http://localhost:8000/?theme=olh) | [html-has-lang](https://dequeuniversity.com/rules/axe/4.11/html-has-lang?application=playwright) | serious | `html` | `<html class="wf-loading wf-proximanova-n7-loading wf-proximanova-n1-loading wf-proximanova-n6-loading wf-proximanova-n4-loading wf-proximanova-n3-loading wf-merriweather-n7-loading wf-merriweather-n4-…` | [Failure html-has-lang](#html-has-lang) | +| [?theme=olh](http://localhost:8000/?theme=olh) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.large-6.columns:nth-child(2) > a > img` | `<img class="" src="https://www.openlibhums.org/media/press/Conference_programme.png">` | [Failure image-alt](#image-alt) | +| [404/?theme=olh](http://localhost:8000/404/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [404/?theme=olh](http://localhost:8000/404/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [404/?theme=olh](http://localhost:8000/404/?theme=olh) | [document-title](https://dequeuniversity.com/rules/axe/4.11/document-title?application=playwright) | serious | `html` | `<html class="wf-proximanova-n7-active wf-merriweather-n7-active wf-proximanova-n3-active wf-proximanova-n1-active wf-merriweather-i7-active wf-proximanova-n6-active wf-merriweather-i4-active wf-merriw…` | [Failure document-title](#document-title) | +| [404/?theme=olh](http://localhost:8000/404/?theme=olh) | [html-has-lang](https://dequeuniversity.com/rules/axe/4.11/html-has-lang?application=playwright) | serious | `html` | `<html class="wf-proximanova-n7-active wf-merriweather-n7-active wf-proximanova-n3-active wf-proximanova-n1-active wf-merriweather-i7-active wf-proximanova-n6-active wf-merriweather-i4-active wf-merriw…` | [Failure html-has-lang](#html-has-lang) | +| [journals/?theme=olh](http://localhost:8000/journals/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#social-links > .button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [journals/?theme=olh](http://localhost:8000/journals/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [journals/?theme=olh](http://localhost:8000/journals/?theme=olh) | [html-has-lang](https://dequeuniversity.com/rules/axe/4.11/html-has-lang?application=playwright) | serious | `html` | `<html class="wf-proximanova-n7-active wf-proximanova-n1-active wf-proximanova-n6-active wf-proximanova-n3-active wf-merriweather-n4-active wf-merriweather-n7-active wf-merriweather-i4-active wf-proxim…` | [Failure html-has-lang](#html-has-lang) | +| [contact/?theme=olh](http://localhost:8000/contact/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=olh](http://localhost:8000/contact/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=olh](http://localhost:8000/contact/?theme=olh) | [html-has-lang](https://dequeuniversity.com/rules/axe/4.11/html-has-lang?application=playwright) | serious | `html` | `<html class="wf-proximanova-n7-active wf-proximanova-n6-active wf-proximanova-n1-active wf-merriweather-i7-active wf-merriweather-n4-active wf-merriweather-i4-active wf-merriweather-n7-active wf-proxi…` | [Failure html-has-lang](#html-has-lang) | +| [contact/?theme=olh](http://localhost:8000/contact/?theme=olh) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#id_captcha_0` | `<input type="text" name="captcha_0" size="5" required="" id="id_captcha_0">` | [Failure label](#label) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `input[value="Search"]` | `<input type="submit" class="button" value="Search">` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(6) > a:nth-child(2)` | `<a style="background-color: rgb(255, 255, 255);" href="https://olh.openlibhums.org/collections/collection/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(3)` | `<a style="background-color: rgb(255, 255, 255);" href="https://olh.openlibhums.org/site/special-collections/">how to apply</a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-759"]` | `<a class="button" href="/olh/news/759/" aria-describedby="news-759"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-758"]` | `<a class="button" href="/olh/news/758/" aria-describedby="news-758"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-757"]` | `<a class="button" href="/olh/news/757/" aria-describedby="news-757"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-756"]` | `<a class="button" href="/olh/news/756/" aria-describedby="news-756"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-755"]` | `<a class="button" href="/olh/news/755/" aria-describedby="news-755"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `input[type="text"]` | `<input name="article_search" class="input-group-field" type="text">` | [Failure label](#label) | +| [olh/accessibility/?theme=olh](http://localhost:8000/olh/accessibility/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/accessibility/?theme=olh](http://localhost:8000/olh/accessibility/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=olh ](http://localhost:8000/olh/contact/?theme=olh ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=olh ](http://localhost:8000/olh/contact/?theme=olh ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=olh ](http://localhost:8000/olh/contact/?theme=olh ) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#id_captcha_0` | `<input type="text" name="captcha_0" size="5" required="" id="id_captcha_0">` | [Failure label](#label) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="yt86lo-eq"] > .medium-3.columns:nth-child(1) > .callout[data-equalizer-watch=""] > p:nth-child(5) > small > a` | `<a href="/olh/profile/76ce2832-629c-4240-a37b-a3772baba951/" aria-describedby="member-76ce2832-629c-4240-a37b-a3772baba951"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.medium-3.columns:nth-child(1) > .callout[data-equalizer-watch=""] > p:nth-child(6) > small > a:nth-child(1)` | `<a href="https://www.bbk.ac.uk/our-staff/profile/9244765/rose-harris-birtill" aria-label="Person 2537 Family 2537's website"> <i aria-hidden="true" class="fa fa-globe"></i> Website </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.medium-3.columns:nth-child(1) > .callout[data-equalizer-watch=""] > p:nth-child(6) > small > a:nth-child(2)` | `<a href="https://www.twitter.com/roseharrisb" aria-label="Person 2537 Family 2537's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(3)` | `<a href="https://www.linkedin.com/in/rosehb" aria-label="Person 2537 Family 2537's linkedin profile"> <i aria-hidden="true" class="fa fa-linkedin-square"></i> Linkedin </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="yt86lo-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(5) > small > a` | `<a href="/olh/profile/e6980887-f7c4-4833-b9e8-98318104169b/" aria-describedby="member-e6980887-f7c4-4833-b9e8-98318104169b"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(6) > small > a[aria-label="Caroline Edwards's website"]` | `<a href="http://www.drcarolineedwards.com/" aria-label="Caroline Edwards's website"> <i aria-hidden="true" class="fa fa-globe"></i> Website </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(6) > small > a:nth-child(2)` | `<a href="https://www.twitter.com/the_blochian" aria-label="Caroline Edwards's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="71gaak-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(4) > small > a` | `<a href="/olh/profile/bed4a260-430e-4741-9f5c-ea45384c8877/" aria-describedby="member-bed4a260-430e-4741-9f5c-ea45384c8877"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="71gaak-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(5) > small > a` | `<a href="https://www.twitter.com/Simon_Everett" aria-label="Simon Everett's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="vkmh9x-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(4) > small > a` | `<a href="/olh/profile/954d6773-124a-4993-a69c-3ebd11afc784/" aria-describedby="member-954d6773-124a-4993-a69c-3ebd11afc784"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="vkmh9x-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(5) > small > a` | `<a href="https://www.github.com/AmeliePlaysKath" aria-label="Person 23281 Family 23281's github profile"> <i aria-hidden="true" class="fa fa-github-square"></i> Github </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="k5dmcd-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p > small > a` | `<a href="/olh/profile/b69c8c89-36fe-4f21-8679-cea21c61fbde/" aria-describedby="member-b69c8c89-36fe-4f21-8679-cea21c61fbde"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="46ymzs-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(4) > small > a` | `<a href="/olh/profile/e6980887-f7c4-4833-b9e8-98318104169b/" aria-describedby="member-e6980887-f7c4-4833-b9e8-98318104169b"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(5) > small > a[aria-label="Caroline Edwards's website"]` | `<a href="http://www.drcarolineedwards.com/" aria-label="Caroline Edwards's website"> <i aria-hidden="true" class="fa fa-globe"></i> Website </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(5) > small > a:nth-child(2)` | `<a href="https://www.twitter.com/the_blochian" aria-label="Caroline Edwards's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=olh](http://localhost:8000/olh/search/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=olh](http://localhost:8000/olh/search/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=olh](http://localhost:8000/olh/search/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `small` | `<small class="error">This field is required.</small>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=olh](http://localhost:8000/olh/search/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button` | `<button type="submit" class="button">Search</button>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=olh](http://localhost:8000/olh/search/?theme=olh) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.form-group:nth-child(1) > ul` | `<ul>` | [Failure list 2](#list-2) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"][target="_blank"]` | `<a href="https://www.openlibhums.org" target="_blank">Open Library of Humanities</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(1) > a:nth-child(4)` | `<a href="https://olh.openlibhums.org/collections/collection/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(5)` | `<a href="https://olh.openlibhums.org/site/special-collections/">how to apply</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="clockss.org"]` | `<a href="https://clockss.org" target="_blank">CLOCKSS</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[target="_blank"]:nth-child(4)` | `<a href="https://olh.openlibhums.org/site/special-collections/" target="_blank"><em>Open Library of Humanities</em> Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_blank"]:nth-child(4) > em` | `<em>Open Library of Humanities</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(5) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/special-collections/" target="_blank">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(7) > a` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/">international library consortium</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_blank"]:nth-child(2)` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Archiving%20and%20Indexing" target="_blank">publisher's policy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(10) > a[target="_blank"]:nth-child(4)` | `<a href="https://www.scopus.com/sourceid/21100867938" target="_blank">CiteScore on Scopus</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading0"]` | `<a href="#heading0" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Focus and Scope</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading1"]` | `<a href="#heading1" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Publication Frequency</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading2"]` | `<a href="#heading2" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Publication Fees</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading3"]` | `<a href="#heading3" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Citation Metrics</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `strong > a` | `<a href="https://olh.openlibhums.org/site/special-collections/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Submissions"]` | `<a href="#Submissions">Submissions</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Language and Text"]` | `<a href="#Language and Text">Language and Text</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Data and Symbols"]` | `<a href="#Data and Symbols">Data and Symbols</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Figures and Tables"]` | `<a href="#Figures and Tables">Figures and Tables</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#References"]` | `<a href="#References">References</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(15) > a:nth-child(2)` | `<a href="https://olh.openlibhums.org/site/blindreview/">ensuring an anonymous review</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(30) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/competinginterests/" target="_blank">How to Declare Competing Interests</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(32) > a[target="_blank"]` | `<a href="https://www.wma.net/policies-post/wma-declaration-of-helsinki-ethical-principles-for-medical-research-involving-human-subjects/" target="_blank">Declaration of Helsinki</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(75) > a` | `<a href="http://en.wikipedia.org/wiki/Wikipedia:Manual_of_Style/Abbreviations#Miscellanea">here</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(135) > a[target="_blank"]` | `<a href="http://www.bipm.org/utils/common/pdf/si_brochure_8_en.pdf" target="_blank">Bureau International des Poids et Mesures</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(170) > a` | `<a href="http://eprints.lincoln.ac.uk/id/eprint/25380/1/Harvard_Referencing_Guide.pdf">document</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `blockquote:nth-child(248) > a` | `<a href="https://www.theguardian.com/world/2020/sep/23/wednesday-briefing-last-orders-in-fight-to-avoid-lockdown">https://www.theguardian.com/world/2020/sep/23/wednesday-briefing-last-orders-in-fight-…` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(15) > a:nth-child(3)` | `<a href="https://olh.openlibhums.org/help/view/editorial/topic/000044">.</a>` | [Failure target-size](#target-size) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Editorial Oversight"]` | `<a href="#Editorial Oversight">Editorial Oversight</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Peer Review Process"]` | `<a href="#Peer Review Process">Peer Review Process</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Governance"]` | `<a href="#Governance">Organisation and Governance</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Business Practices"]` | `<a href="#Business Practices">Business Practices</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Preprint Policy"]` | `<a href="#Preprint Policy">Preprint Policy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(6)` | `<a href="#Conduct and Expected Behaviour">Conduct and Expected Behaviour</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Special Collections"]` | `<a href="#Special Collections"><em>OLHJ</em> Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Special Collections"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(6) > a[target="_blank"]` | `<a href="https://www.chase.ac.uk/research-placements" target="_blank">Consortium for the Humanities and Arts South-East England</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(12) > a[target="_blank"]` | `<a href="https://publicationethics.org/guidance/Guidelines" target="_blank">Committee on Publication Ethics</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(26) > a[target="blank_"]` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Reviewer%20Responsibilities" target="blank_">‘Responsibilities of Reviewers’</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(28) > a` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Publication%20Ethics%20and%20Malpractice">Publication Ethics and Malpractice Statement</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="janeway.systems"]` | `<a href="https://janeway.systems" target="_blank">Janeway</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(37) > a` | `<a href="https://olh.openlibhums.org/editorialteam/"> editorial board</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(39) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/editorialteam/" target="_blank">editorial team</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(41) > a[target="_blank"]` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/" target="_blank">Library Partnership Subsidy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(41) > a:nth-child(4)` | `<a href="https://olh.openlibhums.org/site/about/">About</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(50) > a[target="_blank"]` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/" target="_blank">Library Partnership Subsidy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(54) > a` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Publication%20Ethics%20and%20Malpractice">Publication Ethics and Malpractice Statement’</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(55) > a:nth-child(2)` | `<a href="https://olh.openlibhums.org/contact/">Contact</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(55) > a:nth-child(4)` | `<a href="https://www.openlibhums.org/contact/">directly with the publisher</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(55) > a[target="_blank"]` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Publisher%20Responsibilities" target="_blank">‘Publication Ethics and Malpractice Statement’</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(59) > a[target="_blank"]` | `<a href="https://publicationethics.org/resources/discussion-documents/guest-edited-collections" target="_blank">best practice guidelines by COPE</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(63) > a[target="blank_"]` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Ethics%20Policies" target="blank_">Ethics Policies</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(64) > a` | `<a href="https://olh.openlibhums.org/site/special-collections/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(1) > a[href$="#Editorial Oversight"]` | `<a href="#Editorial Oversight" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Editorial Oversight</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading1"]` | `<a href="#heading1" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Appointment of Editors and Special Collection Editors</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading2"]` | `<a href="#heading2" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">The Remit of <em>OLHJ</em> Editorial Roles</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading2"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading3"]` | `<a href="#heading3" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Editorial Decisions</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading4"]` | `<a href="#heading4" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Composition of the Editorial Team</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(6) > a[href$="#Peer Review Process"]` | `<a href="#Peer Review Process" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Peer Review Process</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading6"]` | `<a href="#heading6" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Assessing Articles for Peer Review</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading7"]` | `<a href="#heading7" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;"><em>OLHJ</em>’s Peer Review Practice</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading7"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading8"]` | `<a href="#heading8" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Selection of Peer Reviewers</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading9"]` | `<a href="#heading9" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Guidance for Peer Reviewers</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading10"]` | `<a href="#heading10" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Publication of Peer Review Reports</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(12) > a[href$="#Governance"]` | `<a href="#Governance" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Organisation and Governance</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading12"]` | `<a href="#heading12" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">The Ownership and Structure of <em>OLHJ</em></a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading12"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading14"]` | `<a href="#heading14" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;"><em>OLHJ</em>’s Funding Model</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading14"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(16) > a[href$="#Business Practices"]` | `<a href="#Business Practices" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Business Practices</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading16"]` | `<a href="#heading16" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Advertising</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading17"]` | `<a href="#heading17" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Direct Marketing</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading18"]` | `<a href="#heading18" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Other Revenue</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(20) > a[href$="#Preprint Policy"]` | `<a href="#Preprint Policy" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Preprint Policy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(21) > a` | `<a href="#Conduct and Expected Behaviour" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Conduct and Expected Behaviour</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(22) > a[href$="#Special Collections"]` | `<a href="#Special Collections" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;"><em>OLHJ</em> Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(22) > a[href$="#Special Collections"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(2) > strong > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/special-collections/" target="_blank">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/author-guidelines/" target="_blank">Author Guidelines</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button:nth-child(1)` | `<a href="/olh/register/step/1/?next=/olh/submissions/%3Ftheme%3Dolh" class="button"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button:nth-child(2)` | `<a href="/olh/login/?next=/olh/submissions/%3Ftheme%3Dolh" class="button"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(8) > a:nth-child(1)` | `<a href="https://olh.openlibhums.org/site/author-guidelines/">Author Guidelines</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(8) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/competinginterests/" target="_blank">how to declare competing interests</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(9) > a:nth-child(1)` | `<a href="https://olh.openlibhums.org/site/blindreview/">ensuring an anonymous review</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(15) > a:nth-child(1)` | `<a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution License</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(15) > a:nth-child(2)` | `<a href="http://creativecommons.org/licenses/">Creative Commons License</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_new"]` | `<a href="http://opcit.eprints.org/oacitation-biblio.html" target="_new">The Effect of Open Access</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(21) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/journal-policies/#Peer%20Review%20Process" target="_blank">Journal Policies</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(1) > strong > a[target="_blank"]` | `<a href="https://creativecommons.org/licenses/by/4.0" target="_blank">` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.example.com"]` | `<a href="https://www.example.com" target="_blank">` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(29) > a` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/">international library consortium</a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=olh](http://localhost:8000/olh/issues/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=olh](http://localhost:8000/olh/issues/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=olh](http://localhost:8000/olh/issue/402/info/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=olh](http://localhost:8000/olh/issue/402/info/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=olh](http://localhost:8000/olh/issue/409/info/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=olh](http://localhost:8000/olh/issue/409/info/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=olh](http://localhost:8000/olh/collections/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=olh](http://localhost:8000/olh/collections/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/963/"]` | `<a href="/olh/collections/963/">Humour as a Human Right </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/905/"]` | `<a href="/olh/collections/905/">Cultural Heritage Data for Research: Opening Museum Collections, Project Data and Digital Images for Research, Query and Discovery </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/895/"]` | `<a href="/olh/collections/895/">Caliban's Mirror: Reflections of James Joyce and Oscar Wilde </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/877/"]` | `<a href="/olh/collections/877/">Cultural Representations of Machine Vision </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/850/"]` | `<a href="/olh/collections/850/">The Public Curatorship of the Medieval Past </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/846/"]` | `<a href="/olh/collections/846/">Medieval Minds and Matter </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/803/"]` | `<a href="/olh/collections/803/">Representing the Medieval in Popular Culture: Remembering the Angevins </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/505/"]` | `<a href="/olh/collections/505/">The Politics and History of Menstruation: Contextualising the Scottish Campaign to End Period Poverty </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/455/"]` | `<a href="/olh/collections/455/">Production Archives 03: Archival Practices </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/454/"]` | `<a href="/olh/collections/454/">Production Archives 02: Production Contexts </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/453/"]` | `<a href="/olh/collections/453/">Production Archives 01: Puppets for Action </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/452/"]` | `<a href="/olh/collections/452/">Representing Classical Music in the Twenty-First Century </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/449/"]` | `<a href="/olh/collections/449/">Binary Modernisms: Re/Appropriations of Modernist Art in the Digital Age </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/450/"]` | `<a href="/olh/collections/450/">Local and Universal in Irish Literature and Culture </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/412/"]` | `<a href="/olh/collections/412/">Reading in Ruins: Exploring Posthumanist Narrative Studies </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/413/"]` | `<a href="/olh/collections/413/">The Language of Perspective </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/414/"]` | `<a href="/olh/collections/414/">Nancy Astor, Public Women and Gendered Political Culture in Interwar Britain </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/415/"]` | `<a href="/olh/collections/415/">The Working-Class Avant-Garde </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/416/"]` | `<a href="/olh/collections/416/">Colonialities in Dispute: Discourses on Colonialism and Race in the Spanish State </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/417/"]` | `<a href="/olh/collections/417/">Powering the Future: Energy Resources in Science Fiction and Fantasy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/418/"]` | `<a href="/olh/collections/418/">Writers and Intellectuals on Britain and Europe, 1918–2018 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/419/"]` | `<a href="/olh/collections/419/">Literature, Law and Psychoanalysis </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/420/"]` | `<a href="/olh/collections/420/">Muslims in the Media </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/421/"]` | `<a href="/olh/collections/421/">Encounters between Asian and Western Art in the 20th and 21st centuries: a liberating influence for Asia? </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/422/"]` | `<a href="/olh/collections/422/">Waste: Disposability, Decay, and Depletion </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/423/"]` | `<a href="/olh/collections/423/">Pride Revisited: Cinema, Activism and Re-Activation </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/424/"]` | `<a href="/olh/collections/424/">New Approaches to Late Medieval Court Records </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/425/"]` | `<a href="/olh/collections/425/">Utopian Art and Literature from Modern India </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/426/"]` | `<a href="/olh/collections/426/">Right-Wing Populism and Mediated Activism: Creative Responses and Counter-Narratives </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/427/"]` | `<a href="/olh/collections/427/">Representing Climate: Local to Global </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/428/"]` | `<a href="/olh/collections/428/">Cultivating Spheres: Agriculture, Technical Communication, and the Publics </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/429/"]` | `<a href="/olh/collections/429/">Freedom After Neoliberalism </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/430/"]` | `<a href="/olh/collections/430/">The Medieval Brain </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/431/"]` | `<a href="/olh/collections/431/">Remaking Collections </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/432/"]` | `<a href="/olh/collections/432/">New Approaches to Medieval Water Studies </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/433/"]` | `<a href="/olh/collections/433/">Imaginaries of the Future 01: Bodies and Media </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/434/"]` | `<a href="/olh/collections/434/">Imaginaries of the Future 02: Politics, Poetics, Place </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/435/"]` | `<a href="/olh/collections/435/">Imaginaries of the Future 03: Utopia at the Border </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/436/"]` | `<a href="/olh/collections/436/">Postcolonial Perspectives in Game Studies </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/437/"]` | `<a href="/olh/collections/437/">Station Eleven and Twenty-First-Century Writing </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/438/"]` | `<a href="/olh/collections/438/">#Agreement20 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/439/"]` | `<a href="/olh/collections/439/">What’s Left? Marxism, Literature and Culture in the 21st Century </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/440/"]` | `<a href="/olh/collections/440/">New Voices in Jewish-American Literature </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/441/"]` | `<a href="/olh/collections/441/">Authors, Narratives, and Audiences in Medieval Saints’ Lives </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/442/"]` | `<a href="/olh/collections/442/">From TV To Film </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/443/"]` | `<a href="/olh/collections/443/">American Literature & the Transnational Marketplace </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/444/"]` | `<a href="/olh/collections/444/">Mnemosyne </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/445/"]` | `<a href="/olh/collections/445/">Healing Gods, Heroes and Rituals in the Graeco-Roman World </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/446/"]` | `<a href="/olh/collections/446/">The Abolition of the University </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-759"]` | `<a class="button" href="/olh/news/759/" aria-describedby="news-759"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-758"]` | `<a class="button" href="/olh/news/758/" aria-describedby="news-758"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-757"]` | `<a class="button" href="/olh/news/757/" aria-describedby="news-757"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-756"]` | `<a class="button" href="/olh/news/756/" aria-describedby="news-756"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-755"]` | `<a class="button" href="/olh/news/755/" aria-describedby="news-755"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-754"]` | `<a class="button" href="/olh/news/754/" aria-describedby="news-754"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-753"]` | `<a class="button" href="/olh/news/753/" aria-describedby="news-753"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-752"]` | `<a class="button" href="/olh/news/752/" aria-describedby="news-752"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-751"]` | `<a class="button" href="/olh/news/751/" aria-describedby="news-751"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-750"]` | `<a class="button" href="/olh/news/750/" aria-describedby="news-750"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-749"]` | `<a class="button" href="/olh/news/749/" aria-describedby="news-749"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-748"]` | `<a class="button" href="/olh/news/748/" aria-describedby="news-748"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/429/?theme=olh](http://localhost:8000/olh/news/429/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/429/?theme=olh](http://localhost:8000/olh/news/429/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/429/?theme=olh](http://localhost:8000/olh/news/429/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="news/"]` | `<a href="/olh/news/" class="button"> Back to News List </a>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=olh](http://localhost:8000/olh/articles/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=olh](http://localhost:8000/olh/articles/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=olh](http://localhost:8000/olh/articles/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.large-4 > .section[aria-labelledby="filter-title"] > form[method="GET"] > .button[action=""][type="submit"]` | `<button action="" class="button" type="submit">Apply</button>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=olh](http://localhost:8000/olh/articles/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.large-4 > .section[aria-labelledby="filter-title"] > form[method="GET"] > .warning.button[name="clear_all"]` | `<button class="button warning" name="clear_all">Clear all</button>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=olh](http://localhost:8000/olh/articles/?theme=olh) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select[name="order_by"]` | `<select class="input-group-field" onchange="this.form.submit()" name="order_by" form="facet_form">` | [Failure select-name](#select-name) | +| [olh/articles/?theme=olh](http://localhost:8000/olh/articles/?theme=olh) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select[name="paginate_by"]` | `<select class="input-group-field" onchange="this.form.submit()" name="paginate_by" form="facet_form">` | [Failure select-name](#select-name) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[onclick="resizeText(-1);"]` | `<button onclick="resizeText(-1);" aria-label="decrease text size">A-</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[onclick="resizeText(1);"]` | `<button onclick="resizeText(1);" aria-label="increase text size">A+</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#dyslexia-mode` | `<button onclick="toggleDyslexia();" id="dyslexia-mode" aria-label="Dyslexia mode">Dyslexia</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/4890/"]` | `<a href="/olh/keywords/4890/"> Saint Augustine-Ancient Greek-Pedagogy- Stephen D. Krashen-Second Language Acquisition<span aria-hidden="true"></span> </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-content > span > a[target="_blank"]` | `<a target="_blank" href="https://doi.org/10.16995/olh.30" aria-label="D.O.I. for Non amabam Litteras Graecas. Note sulla Testimonianza di Sant’Agostino come Discente del Greco Antico Rivisitata alla L…` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#article_date_published` | `<p id="article_date_published"> Published on <br> 12 October 2015 </p>…` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.large-4.columns[data-equalizer-watch=""]:nth-child(2) > p` | `<p>Peer Reviewed</p>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.large-4.columns[data-equalizer-watch=""]:nth-child(3) > p` | `<p>License</p>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#license > p` | `<p>test html in license text</p>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B91-1` | `<a class="xref-bibr" href="#B91" aria-describedby="reference-header" id="cite-B91-1">Waquet, 2004: 251–254</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B9-1` | `<a class="xref-bibr" href="#B9" aria-describedby="reference-header" id="cite-B9-1">Canfora and Cardinale, 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B58-1` | `<a class="xref-bibr" href="#B58" aria-describedby="reference-header" id="cite-B58-1">Olivia, 2008: 13</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B52-1` | `<a class="xref-bibr" href="#B52" aria-describedby="reference-header" id="cite-B52-1">Milanese, 2012: 67–82</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B67-1` | `<a class="xref-bibr" href="#B67" aria-describedby="reference-header" id="cite-B67-1">Ricucci, 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B69-1` | `<a class="xref-bibr" href="#B69" aria-describedby="reference-header" id="cite-B69-1">2014a</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B59-1` | `<a class="xref-bibr" href="#B59" aria-describedby="reference-header" id="cite-B59-1">1975</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B68-1` | `<a class="xref-bibr" href="#B68" aria-describedby="reference-header" id="cite-B68-1">Ricucci, 2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B70-1` | `<a class="xref-bibr" href="#B70" aria-describedby="reference-header" id="cite-B70-1">2014b</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B35-1` | `<a class="xref-bibr" href="#B35" aria-describedby="reference-header" id="cite-B35-1">Krashen, 1991</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B25-1` | `<a class="xref-bibr" href="#B25" aria-describedby="reference-header" id="cite-B25-1">Howatt and Smith, 2002</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B81-1` | `<a class="xref-bibr" href="#B81" aria-describedby="reference-header" id="cite-B81-1">Titone, 1987: 5</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B81-2` | `<a class="xref-bibr" href="#B81" aria-describedby="reference-header" id="cite-B81-2">Titone, 1987: 5</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B24-1` | `<a class="xref-bibr" href="#B24" aria-describedby="reference-header" id="cite-B24-1">Howatt, 1984: 284</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B75-1` | `<a class="xref-bibr" href="#B75" aria-describedby="reference-header" id="cite-B75-1">Schulz, 1975</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B42-1` | `<a class="xref-bibr" href="#B42" aria-describedby="reference-header" id="cite-B42-1">Lightbown, 1985</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B43-1` | `<a class="xref-bibr" href="#B43" aria-describedby="reference-header" id="cite-B43-1">Lightbown, 2000</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B14-1` | `<a class="xref-bibr" href="#B14" aria-describedby="reference-header" id="cite-B14-1">Debyser, 1973: 63–68</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B65-1` | `<a class="xref-bibr" href="#B65" aria-describedby="reference-header" id="cite-B65-1">Puren, 1994</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B76-1` | `<a class="xref-bibr" href="#B76" aria-describedby="reference-header" id="cite-B76-1">Serra Borneto, 1998</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B39-1` | `<a class="xref-bibr" href="#B39" aria-describedby="reference-header" id="cite-B39-1">Kumaravadivelu, 1994</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B40-1` | `<a class="xref-bibr" href="#B40" aria-describedby="reference-header" id="cite-B40-1">2006</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B10-1` | `<a class="xref-bibr" href="#B10" aria-describedby="reference-header" id="cite-B10-1">Celce-murcia, 1980</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B84-1` | `<a class="xref-bibr" href="#B84" aria-describedby="reference-header" id="cite-B84-1">Van Patten and Williams, 2005: 25</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B36-1` | `<a class="xref-bibr" href="#B36" aria-describedby="reference-header" id="cite-B36-1">1994: 45–46</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B29-1` | `<a class="xref-bibr" href="#B29" aria-describedby="reference-header" id="cite-B29-1">Kirwan, 1994: 188</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B51-1` | `<a class="xref-bibr" href="#B51" aria-describedby="reference-header" id="cite-B51-1">McLynn, 2005</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n10-nm1 > sup` | `<sup>10</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B6-1` | `<a class="xref-bibr" href="#B6" aria-describedby="reference-header" id="cite-B6-1">Bellissima, 1955</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B11-1` | `<a class="xref-bibr" href="#B11" aria-describedby="reference-header" id="cite-B11-1">Collart, 1971</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B45-1` | `<a class="xref-bibr" href="#B45" aria-describedby="reference-header" id="cite-B45-1">Louth, 1989: 151</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n11-nm1 > sup` | `<sup>11</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n12-nm1 > sup` | `<sup>12</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n13-nm1 > sup` | `<sup>13</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n14-nm1 > sup` | `<sup>14</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n15-nm1 > sup` | `<sup>15</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n16-nm1 > sup` | `<sup>16</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B2-1` | `<a class="xref-bibr" href="#B2" aria-describedby="reference-header" id="cite-B2-1">Alfonsi, 1971: 42</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n17-nm1 > sup` | `<sup>17</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B7-1` | `<a class="xref-bibr" href="#B7" aria-describedby="reference-header" id="cite-B7-1">Bonner, 1986: 180–183</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B57-1` | `<a class="xref-bibr" href="#B57" aria-describedby="reference-header" id="cite-B57-1">Neraudau, 1996: 58–59</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n18-nm1 > sup` | `<sup>18</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n19-nm1 > sup` | `<sup>19</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n20-nm1 > sup` | `<sup>20</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B12-1` | `<a class="xref-bibr" href="#B12" aria-describedby="reference-header" id="cite-B12-1">Courcelle, 1943: 142</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B48-1` | `<a class="xref-bibr" href="#B48" aria-describedby="reference-header" id="cite-B48-1">Marrou, 1958<sup>4</sup>: 446 s.</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B78-1` | `<a class="xref-bibr" href="#B78" aria-describedby="reference-header" id="cite-B78-1">Solignac, 1962: 667</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n21-nm1 > sup` | `<sup>21</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n22-nm1 > sup` | `<sup>22</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n23-nm1 > sup` | `<sup>23</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n24-nm1 > sup` | `<sup>24</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n25-nm1 > sup` | `<sup>25</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n26-nm1 > sup` | `<sup>26</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n27-nm1 > sup` | `<sup>27</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n28-nm1 > sup` | `<sup>28</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n29-nm1 > sup` | `<sup>29</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B53-1` | `<a class="xref-bibr" href="#B53" aria-describedby="reference-header" id="cite-B53-1">Miraglia 2004: 231–234</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B22-1` | `<a class="xref-bibr" href="#B22" aria-describedby="reference-header" id="cite-B22-1">Green, 1951</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B1-1` | `<a class="xref-bibr" href="#B1" aria-describedby="reference-header" id="cite-B1-1">Adams, 2003: 213–245</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B1-2` | `<a class="xref-bibr" href="#B1" aria-describedby="reference-header" id="cite-B1-2">Adams, 2003: 192–194</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B56-1` | `<a class="xref-bibr" href="#B56" aria-describedby="reference-header" id="cite-B56-1">2010: 531</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n30-nm1 > sup` | `<sup>30</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n31-nm1 > sup` | `<sup>31</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n32-nm1 > sup` | `<sup>32</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n33-nm1 > sup` | `<sup>33</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B49-1` | `<a class="xref-bibr" href="#B49" aria-describedby="reference-header" id="cite-B49-1">Marrou, 1966: 365–366</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n34-nm1 > sup` | `<sup>34</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B77-1` | `<a class="xref-bibr" href="#B77" aria-describedby="reference-header" id="cite-B77-1">Simone, 1969: 106</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n35-nm1 > sup` | `<sup>35</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B31-1` | `<a class="xref-bibr" href="#B31" aria-describedby="reference-header" id="cite-B31-1">Korhonen, 1996: 107</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B19-1` | `<a class="xref-bibr" href="#B19" aria-describedby="reference-header" id="cite-B19-1">Flammini, 1990: 17</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B79-1` | `<a class="xref-bibr" href="#B79" aria-describedby="reference-header" id="cite-B79-1">Tagliaferro, 2008: 68</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n36-nm1 > sup` | `<sup>36</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B33-1` | `<a class="xref-bibr" href="#B33" aria-describedby="reference-header" id="cite-B33-1">1985: 4</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B34-1` | `<a class="xref-bibr" href="#B34" aria-describedby="reference-header" id="cite-B34-1">1987<sup>2</sup>: 66–67</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B8-1` | `<a class="xref-bibr" href="#B8" aria-describedby="reference-header" id="cite-B8-1">Cambiano, 1992: 526</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B74-1` | `<a class="xref-bibr" href="#B74" aria-describedby="reference-header" id="cite-B74-1">Sandys, 1910<sup>2</sup>: 235</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B20-1` | `<a class="xref-bibr" href="#B20" aria-describedby="reference-header" id="cite-B20-1">Gallo, 2003: 94</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n37-nm1 > sup` | `<sup>37</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B18-1` | `<a class="xref-bibr" href="#B18" aria-describedby="reference-header" id="cite-B18-1">Dombart and Kalb (ed.) 1960</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B92-1` | `<a class="xref-bibr" href="#B92" aria-describedby="reference-header" id="cite-B92-1">Weigel 1961</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B50-1` | `<a class="xref-bibr" href="#B50" aria-describedby="reference-header" id="cite-B50-1">Martin 1962</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B87-1` | `<a class="xref-bibr" href="#B87" aria-describedby="reference-header" id="cite-B87-1">Verheijen 1991</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B17-1` | `<a class="xref-bibr" href="#B17" aria-describedby="reference-header" id="cite-B17-1">Doignon 1997</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B82-1` | `<a class="xref-bibr" href="#B82" aria-describedby="reference-header" id="cite-B82-1">Too, 2001</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B90-1` | `<a class="xref-bibr" href="#B90" aria-describedby="reference-header" id="cite-B90-1">Vössing, 2003</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B62-1` | `<a class="xref-bibr" href="#B62" aria-describedby="reference-header" id="cite-B62-1">Pernot, 2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B5-1` | `<a class="xref-bibr" href="#B5" aria-describedby="reference-header" id="cite-B5-1">Bellandi and Ferri, 2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B41-1` | `<a class="xref-bibr" href="#B41" aria-describedby="reference-header" id="cite-B41-1">Laes, 2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B32-1` | `<a class="xref-bibr" href="#B32" aria-describedby="reference-header" id="cite-B32-1">Krashen, 1981</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B38-1` | `<a class="xref-bibr" href="#B38" aria-describedby="reference-header" id="cite-B38-1">Krashen and Terrell, 1983</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B37-1` | `<a class="xref-bibr" href="#B37" aria-describedby="reference-header" id="cite-B37-1">Krashen, 2003</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B44-1` | `<a class="xref-bibr" href="#B44" aria-describedby="reference-header" id="cite-B44-1">Lightbown and Spada, 2011<sup>3</sup>: 38</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B3-1` | `<a class="xref-bibr" href="#B3" aria-describedby="reference-header" id="cite-B3-1">Ando, 1994</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B88-1` | `<a class="xref-bibr" href="#B88" aria-describedby="reference-header" id="cite-B88-1">Vössing, 1992</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B89-1` | `<a class="xref-bibr" href="#B89" aria-describedby="reference-header" id="cite-B89-1">Vössing, 1997</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B55-1` | `<a class="xref-bibr" href="#B55" aria-describedby="reference-header" id="cite-B55-1">Moretti, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B86-1` | `<a class="xref-bibr" href="#B86" aria-describedby="reference-header" id="cite-B86-1">Vecchio, 1994</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B46-1` | `<a class="xref-bibr" href="#B46" aria-describedby="reference-header" id="cite-B46-1">Manetti, 1987: 226–227</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B64-1` | `<a class="xref-bibr" href="#B64" aria-describedby="reference-header" id="cite-B64-1">Preti, 1956</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B4-1` | `<a class="xref-bibr" href="#B4" aria-describedby="reference-header" id="cite-B4-1">Baratin, 1981</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B83-1` | `<a class="xref-bibr" href="#B83" aria-describedby="reference-header" id="cite-B83-1">Toom, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B47-1` | `<a class="xref-bibr" href="#B47" aria-describedby="reference-header" id="cite-B47-1">Markus, 1957</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B26-1` | `<a class="xref-bibr" href="#B26" aria-describedby="reference-header" id="cite-B26-1">Jackson, 1969</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B73-1` | `<a class="xref-bibr" href="#B73" aria-describedby="reference-header" id="cite-B73-1">Ruef, 1981</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B30-1` | `<a class="xref-bibr" href="#B30" aria-describedby="reference-header" id="cite-B30-1">Kirwan, 2001</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B23-1` | `<a class="xref-bibr" href="#B23" aria-describedby="reference-header" id="cite-B23-1">Henninger, 1989</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B60-1` | `<a class="xref-bibr" href="#B60" aria-describedby="reference-header" id="cite-B60-1">Paffenroth and Hughes, 2000</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B27-1` | `<a class="xref-bibr" href="#B27" aria-describedby="reference-header" id="cite-B27-1">Kaimio, 1979: 195–207</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B13-1` | `<a class="xref-bibr" href="#B13" aria-describedby="reference-header" id="cite-B13-1">Debut, 1983</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B15-1` | `<a class="xref-bibr" href="#B15" aria-describedby="reference-header" id="cite-B15-1">Dickey, 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B53-2` | `<a class="xref-bibr" href="#B53" aria-describedby="reference-header" id="cite-B53-2">2004: 226–227</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B72-1` | `<a class="xref-bibr" href="#B72" aria-describedby="reference-header" id="cite-B72-1">Rochette, 2008: 89–90</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B85-1` | `<a class="xref-bibr" href="#B85" aria-describedby="reference-header" id="cite-B85-1">Van Patten and Benati, 2010: 43</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B21-1` | `<a class="xref-bibr" href="#B21" aria-describedby="reference-header" id="cite-B21-1">Gardner, 1985: 10</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B28-1` | `<a class="xref-bibr" href="#B28" aria-describedby="reference-header" id="cite-B28-1">1976<sup>2</sup>: 323</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B63-1` | `<a class="xref-bibr" href="#B63" aria-describedby="reference-header" id="cite-B63-1">1997: 126</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B61-1` | `<a class="xref-bibr" href="#B61" aria-describedby="reference-header" id="cite-B61-1">Pallotti, 2001<sup>2</sup>: 219–220</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B16-1` | `<a class="xref-bibr" href="#B16" aria-describedby="reference-header" id="cite-B16-1">Diller, 1978: 72</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B66-1` | `<a class="xref-bibr" href="#B66" aria-describedby="reference-header" id="cite-B66-1">Richards and Rodgers, 2001<sup>2</sup>: 9</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B80-1` | `<a class="xref-bibr" href="#B80" aria-describedby="reference-header" id="cite-B80-1">Titone, 1968: 100–101</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B71-1` | `<a class="xref-bibr" href="#B71" aria-describedby="reference-header" id="cite-B71-1">Rivers, 1964: 19–20</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B54-1` | `<a class="xref-bibr" href="#B54" aria-describedby="reference-header" id="cite-B54-1">Moreschini, 1979: 38 s.</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-B1-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-B1-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#block-lanqbt9nw"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-B53-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#B58 > a[target="_blank"]` | `<a href="http://www.treellle.org/files/lll/QA1.pdf" target="_blank">http://www.treellle.org/files/lll/QA1.pdf</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-B81-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#block-4faghh0xm"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(1) > a[target="_blank"]` | `<a target="_blank" href="/olh/article/4403/galley/7575/view/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(2) > a` | `<a href="/olh/article/4403/galley/7575/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(3) > a` | `<a href="/olh/article/4403/galley/7576/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(4) > a` | `<a href="/olh/article/4403/galley/33913/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(5) > a` | `<a href="/olh/article/4403/galley/33914/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(6) > a` | `<a href="/olh/article/4403/galley/33915/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="info/"]` | `<a href="/olh/issue/401/info/"> Volume 1 • Issue 1 • 2015 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(4) > ul > li > a[target="_blank"]` | `<a target="_blank" href="https://doi.org/10.16995/olh.30" aria-label="D.O.I. for Non amabam Litteras Graecas. Note sulla Testimonianza di Sant’Agostino come Discente del Greco Antico Rivisitata alla L…` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading0"]` | `<a href="#heading0" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">1. Premessa</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading1"]` | `<a href="#heading1" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">2. <em>Second Language Acquisition</em>: la posizione di Krashen</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading1"] > em` | `<em>Second Language Acquisition</em>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading2"]` | `<a href="#heading2" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">3. Agostino: “linguista”, docente e discente</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading3"]` | `<a href="#heading3" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">4. Da Agostino a Krashen: la ricerca dell’acquisizione del Logos</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading4"]` | `<a href="#heading4" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">5. Conclusioni</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading5"]` | `<a href="#heading5" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Competing Interests</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading6"]` | `<a href="#heading6" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Notes</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading7"]` | `<a href="#heading7" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">References</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n3-nm1` | `<a class="xref-fn" href="#n3" id="n3-nm1"><sup>3</sup></a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n36-nm1` | `<a class="xref-fn" href="#n36" id="n36-nm1"><sup>36</sup></a>` | [Failure target-size](#target-size) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[onclick="resizeText(-1);"]` | `<button onclick="resizeText(-1);" aria-label="decrease text size">A-</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[onclick="resizeText(1);"]` | `<button onclick="resizeText(1);" aria-label="increase text size">A+</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#dyslexia-mode` | `<button onclick="toggleDyslexia();" id="dyslexia-mode" aria-label="Dyslexia mode">Dyslexia</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/1316/"]` | `<a href="/olh/keywords/1316/"> education<span aria-hidden="true">, </span> </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/4892/"]` | `<a href="/olh/keywords/4892/"> political economy<span aria-hidden="true">, </span> </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/4893/"]` | `<a href="/olh/keywords/4893/"> secular crisis<span aria-hidden="true">, </span> </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/4894/"]` | `<a href="/olh/keywords/4894/"> university<span aria-hidden="true"></span> </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-content > span > a[target="_blank"]` | `<a target="_blank" href="https://doi.org/10.16995/olh.15" aria-label="D.O.I. for DEV: Evaluation of Fresh and Frozen Beef Strip Loins of Equal Aging Periods for Palatability Traits">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#article_date_published` | `<p id="article_date_published"> Published on <br> 26 October 2015 </p>…` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.large-4.columns[data-equalizer-watch=""]:nth-child(2) > p` | `<p>Peer Reviewed</p>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.large-4.columns[data-equalizer-watch=""]:nth-child(3) > p` | `<p>License</p>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#license > p` | `<p>Creative Commons Attribution 4.0</p>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r20-1` | `<a class="xref-bibr" href="#r20" aria-describedby="reference-header" id="cite-r20-1">Iskandar et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r10-1` | `<a class="xref-bibr" href="#r10" aria-describedby="reference-header" id="cite-r10-1">Buckley et al., 1977</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r31-1` | `<a class="xref-bibr" href="#r31" aria-describedby="reference-header" id="cite-r31-1">Pietrasik and Janz, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r31-2` | `<a class="xref-bibr" href="#r31" aria-describedby="reference-header" id="cite-r31-2">Pietrasik and Janz, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-1` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-1">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-1` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-1">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-2` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-2">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r9-1` | `<a class="xref-bibr" href="#r9" aria-describedby="reference-header" id="cite-r9-1">Botinestean et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r43-1` | `<a class="xref-bibr" href="#r43" aria-describedby="reference-header" id="cite-r43-1">Zhang et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r28-1` | `<a class="xref-bibr" href="#r28" aria-describedby="reference-header" id="cite-r28-1">Martino and Zaritzky, 1988</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-2` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-2">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-3` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-3">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r41-1` | `<a class="xref-bibr" href="#r41" aria-describedby="reference-header" id="cite-r41-1">Wheeler et al., 1990</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-1` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-1">Lagerstedt et al., 2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-1` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-1">Hergenreder et al., 2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-3` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-3">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-2` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-2">Hergenreder et al., 2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-4` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-4">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-5` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-5">2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-4` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-4">2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-3` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-3">2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r31-3` | `<a class="xref-bibr" href="#r31" aria-describedby="reference-header" id="cite-r31-3">Pietrasik and Janz, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.xref-fig` | `<a class="xref-fig" href="#f1">Figure 1</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r13-1` | `<a class="xref-bibr" href="#r13" aria-describedby="reference-header" id="cite-r13-1">Drey et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r30-1` | `<a class="xref-bibr" href="#r30" aria-describedby="reference-header" id="cite-r30-1">Olson et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r32-1` | `<a class="xref-bibr" href="#r32" aria-describedby="reference-header" id="cite-r32-1">Prill et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r36-1` | `<a class="xref-bibr" href="#r36" aria-describedby="reference-header" id="cite-r36-1">Rice et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r8-1` | `<a class="xref-bibr" href="#r8" aria-describedby="reference-header" id="cite-r8-1">Beyer et al., 2021</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r15-1` | `<a class="xref-bibr" href="#r15" aria-describedby="reference-header" id="cite-r15-1">Farmer et al., 2022</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r3-1` | `<a class="xref-bibr" href="#r3" aria-describedby="reference-header" id="cite-r3-1">AMSA, 2015</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r8-2` | `<a class="xref-bibr" href="#r8" aria-describedby="reference-header" id="cite-r8-2">2021</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r13-2` | `<a class="xref-bibr" href="#r13" aria-describedby="reference-header" id="cite-r13-2">Drey et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r30-2` | `<a class="xref-bibr" href="#r30" aria-describedby="reference-header" id="cite-r30-2">Olson et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r32-2` | `<a class="xref-bibr" href="#r32" aria-describedby="reference-header" id="cite-r32-2">Prill et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r36-2` | `<a class="xref-bibr" href="#r36" aria-describedby="reference-header" id="cite-r36-2">Rice et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r15-2` | `<a class="xref-bibr" href="#r15" aria-describedby="reference-header" id="cite-r15-2">Farmer et al., 2022</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r3-2` | `<a class="xref-bibr" href="#r3" aria-describedby="reference-header" id="cite-r3-2">AMSA, 2015</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r15-3` | `<a class="xref-bibr" href="#r15" aria-describedby="reference-header" id="cite-r15-3">2022</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r39-1` | `<a class="xref-bibr" href="#r39" aria-describedby="reference-header" id="cite-r39-1">1999</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r23-1` | `<a class="xref-bibr" href="#r23" aria-describedby="reference-header" id="cite-r23-1">King et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r3-3` | `<a class="xref-bibr" href="#r3" aria-describedby="reference-header" id="cite-r3-3">AMSA, 2015</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r12-1` | `<a class="xref-bibr" href="#r12" aria-describedby="reference-header" id="cite-r12-1">2021</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r23-2` | `<a class="xref-bibr" href="#r23" aria-describedby="reference-header" id="cite-r23-2">King et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r23-3` | `<a class="xref-bibr" href="#r23" aria-describedby="reference-header" id="cite-r23-3">King et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r1-1` | `<a class="xref-bibr" href="#r1" aria-describedby="reference-header" id="cite-r1-1">1998</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r11-1` | `<a class="xref-bibr" href="#r11" aria-describedby="reference-header" id="cite-r11-1">Dahmer et al., 2022</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab1"]` | `<a class="xref-table" href="#tab1">Table 1</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm2 > sup > sup` | `<sup>ab</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm3 > sup > sup` | `<sup>bc</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm4 > sup > sup` | `<sup>cd</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm5 > sup > sup` | `<sup>cd</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm6 > sup > sup` | `<sup>de</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm8 > sup > sup` | `<sup>ef</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm10 > sup > sup` | `<sup>fg</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm13 > sup > sup` | `<sup>gh</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm14 > sup > sup` | `<sup>ghi</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm15 > sup > sup` | `<sup>hi</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab3"]` | `<a class="xref-table" href="#tab3">Table 3</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab4"]` | `<a class="xref-table" href="#tab4">Table 4</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab5"]` | `<a class="xref-table" href="#tab5">Table 5</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab6"]` | `<a class="xref-table" href="#tab6">Table 6</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab7"]` | `<a class="xref-table" href="#tab7">Table 7</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab8"]` | `<a class="xref-table" href="#tab8">Tables 8</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab8-fn1-nm14 > sup > sup` | `<sup>ab</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab9-fn1-nm9 > sup > sup` | `<sup>ab</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab9-fn1-nm15 > sup > sup` | `<sup>ab</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-2` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-2">Lagerstedt et al., 2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-6` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-6">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-5` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-5">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r33-1` | `<a class="xref-bibr" href="#r33" aria-describedby="reference-header" id="cite-r33-1">Rahelić et al., 1985</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-6` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-6">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-3` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-3">Lagerstedt et al., 2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-7` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-7">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-7` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-7">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-4` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-4">2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-8` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-8">2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r24-1` | `<a class="xref-bibr" href="#r24" aria-describedby="reference-header" id="cite-r24-1">Koohmaraie, 1990</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r24-2` | `<a class="xref-bibr" href="#r24" aria-describedby="reference-header" id="cite-r24-2">Koohmaraie, 1990</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r25-1` | `<a class="xref-bibr" href="#r25" aria-describedby="reference-header" id="cite-r25-1">Kristensen et al., 2006</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-9` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-9">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-8` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-8">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-10` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-10">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-9` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-9">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r41-2` | `<a class="xref-bibr" href="#r41" aria-describedby="reference-header" id="cite-r41-2">Wheeler et al., 1990</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-5` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-5">Lagerstedt et al., 2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-11` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-11">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-10` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-10">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-4` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-4">2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r18-1` | `<a class="xref-bibr" href="#r18" aria-describedby="reference-header" id="cite-r18-1">Grujić et al., 1993</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-11` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-11">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-5` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-5">2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r27-1` | `<a class="xref-bibr" href="#r27" aria-describedby="reference-header" id="cite-r27-1">Leygonie et al., 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-12` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-12">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r22-1` | `<a class="xref-bibr" href="#r22" aria-describedby="reference-header" id="cite-r22-1">Kim et al., 2018</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-13` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-13">2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-14` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-14">2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-15` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-15">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r27-2` | `<a class="xref-bibr" href="#r27" aria-describedby="reference-header" id="cite-r27-2">Leygonie et al., 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-16` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-16">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r22-2` | `<a class="xref-bibr" href="#r22" aria-describedby="reference-header" id="cite-r22-2">Kim et al., 2018</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r37-1` | `<a class="xref-bibr" href="#r37" aria-describedby="reference-header" id="cite-r37-1">Sánchez del Pulgar et al., 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r14-1` | `<a class="xref-bibr" href="#r14" aria-describedby="reference-header" id="cite-r14-1">English et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r35-1` | `<a class="xref-bibr" href="#r35" aria-describedby="reference-header" id="cite-r35-1">Ramanathan et al., 2020</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r14-2` | `<a class="xref-bibr" href="#r14" aria-describedby="reference-header" id="cite-r14-2">English et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r21-1` | `<a class="xref-bibr" href="#r21" aria-describedby="reference-header" id="cite-r21-1">Jeong et al., 2011</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r7-1` | `<a class="xref-bibr" href="#r7" aria-describedby="reference-header" id="cite-r7-1">Bekhit and Faustman, 2005</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r40-1` | `<a class="xref-bibr" href="#r40" aria-describedby="reference-header" id="cite-r40-1">2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-6` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-6">Hergenreder et al., 2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r21-2` | `<a class="xref-bibr" href="#r21" aria-describedby="reference-header" id="cite-r21-2">Jeong et al., 2011</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r29-1` | `<a class="xref-bibr" href="#r29" aria-describedby="reference-header" id="cite-r29-1">Nair et al., 2017</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r34-1` | `<a class="xref-bibr" href="#r34" aria-describedby="reference-header" id="cite-r34-1">Rahman et al., 2015</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r38-1` | `<a class="xref-bibr" href="#r38" aria-describedby="reference-header" id="cite-r38-1">Setyabrata and Kim, 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r2-1` | `<a class="xref-bibr" href="#r2" aria-describedby="reference-header" id="cite-r2-1">Al-Dalali et al., 2022</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r34-2` | `<a class="xref-bibr" href="#r34" aria-describedby="reference-header" id="cite-r34-2">Rahman et al., 2015</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r38-2` | `<a class="xref-bibr" href="#r38" aria-describedby="reference-header" id="cite-r38-2">Setyabrata and Kim, 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r43-2` | `<a class="xref-bibr" href="#r43" aria-describedby="reference-header" id="cite-r43-2">Zhang et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r42-1` | `<a class="xref-bibr" href="#r42" aria-describedby="reference-header" id="cite-r42-1">Xia et al., 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r6-1` | `<a class="xref-bibr" href="#r6" aria-describedby="reference-header" id="cite-r6-1">Bao et al., 2021</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r42-2` | `<a class="xref-bibr" href="#r42" aria-describedby="reference-header" id="cite-r42-2">Xia et al., 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r44-1` | `<a class="xref-bibr" href="#r44" aria-describedby="reference-header" id="cite-r44-1">Zhang et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r27-3` | `<a class="xref-bibr" href="#r27" aria-describedby="reference-header" id="cite-r27-3">Leygonie et al., 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-17` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-17">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r22-3` | `<a class="xref-bibr" href="#r22" aria-describedby="reference-header" id="cite-r22-3">Kim et al., 2018</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r31-4` | `<a class="xref-bibr" href="#r31" aria-describedby="reference-header" id="cite-r31-4">Pietrasik and Janz, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r1 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/S0309-1740(97)00101-0" target="_blank">https://doi.org/10.1016/S0309-1740(97)00101-0</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r2 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.foodchem.2021.131881" target="_blank">https://doi.org/10.1016/j.foodchem.2021.131881</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r3-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r3-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#block-r82rcbdh1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r5 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2016.02.006" target="_blank">https://doi.org/10.1016/j.meatsci.2016.02.006</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-5"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-6"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-7"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(7)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-8"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(8)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-9"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(9)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-10"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(10)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-11"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(11)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-12"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(12)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-13"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(13)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-14"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(14)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-15"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(15)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-16"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(16)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-17"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(17)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r6 > a[target="_blank"]` | `<a href="https://doi.org/10.1111/1541-4337.12841" target="_blank">https://doi.org/10.1111/1541-4337.12841</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r7 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2005.04.032" target="_blank">https://doi.org/10.1016/j.meatsci.2005.04.032</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r8 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb.12424" target="_blank">https://doi.org/10.22175/mmb.12424</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r8-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r8-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r9 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.lwt.2016.07.026" target="_blank">https://doi.org/10.1016/j.lwt.2016.07.026</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r10 > a[target="_blank"]:nth-child(2)` | `<a href="https://www.jstor.org/stable/25557929" target="_blank">https://www.jstor.org/stable/25557929</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r10 > a[target="_blank"]:nth-child(3)` | `<a href="https://www.jstor.org/stable/25557929" target="_blank">https://www.jstor.org/stable/25557929</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r11 > a[target="_blank"]` | `<a href="https://doi.org/10.1093/tas/txac060" target="_blank">https://doi.org/10.1093/tas/txac060</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r12 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2021.108454" target="_blank">https://doi.org/10.1016/j.meatsci.2021.108454</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r13 > a[target="_blank"]` | `<a href="https://doi.org/10.1093/jas/sky435" target="_blank">https://doi.org/10.1093/jas/sky435</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r13-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r13-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r14 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/jas.2016-0561" target="_blank">https://doi.org/10.2527/jas.2016-0561</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r14-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r14-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r15 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb.15488" target="_blank">https://doi.org/10.22175/mmb.15488</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r15-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r15-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r15-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r16 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/S0309-1740(03)00081-0" target="_blank">https://doi.org/10.1016/S0309-1740(03)00081-0</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r17 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/jas.2014-7613" target="_blank">https://doi.org/10.2527/jas.2014-7613</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-5"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-6"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-7"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(7)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-8"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(8)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-9"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(9)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-10"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(10)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-11"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(11)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r18 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/0309-1740(93)90003-Z" target="_blank">https://doi.org/10.1016/0309-1740(93)90003-Z</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r19 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/jas.2012-5223" target="_blank">https://doi.org/10.2527/jas.2012-5223</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-5"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-6"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r20 > a[target="_blank"]` | `<a href="https://doi.org/10.1088/1755-1315/365/1/012072" target="_blank">https://doi.org/10.1088/1755-1315/365/1/012072</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r21 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.foodres.2011.08.023" target="_blank">https://doi.org/10.1016/j.foodres.2011.08.023</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r21-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r21-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r22 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2018.01.024" target="_blank">https://doi.org/10.1016/j.meatsci.2018.01.024</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r22-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r22-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r22-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r23 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb.12473" target="_blank">https://doi.org/10.22175/mmb.12473</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r23-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r23-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r23-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r24 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/1990.683659x" target="_blank">https://doi.org/10.2527/1990.683659x</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r24-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r24-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r25 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2005.06.010" target="_blank">https://doi.org/10.1016/j.meatsci.2005.06.010</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r26 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2008.01.009" target="_blank">https://doi.org/10.1016/j.meatsci.2008.01.009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-5"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r27 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2012.01.013" target="_blank">https://doi.org/10.1016/j.meatsci.2012.01.013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r27-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r27-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r27-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r28 > a[target="_blank"]` | `<a href="https://doi.org/10.1111/j.1365-2621.1988.tb07802.x" target="_blank">https://doi.org/10.1111/j.1365-2621.1988.tb07802.x</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r29 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb2017.07.0037" target="_blank">https://doi.org/10.22175/mmb2017.07.0037</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r30 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb2019.07.0022" target="_blank">https://doi.org/10.22175/mmb2019.07.0022</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r30-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r30-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r31 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2008.10.006" target="_blank">https://doi.org/10.1016/j.meatsci.2008.10.006</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r31-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r31-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#block-magkiyw69"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r31-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r32 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb2019.07.0024" target="_blank">https://doi.org/10.22175/mmb2019.07.0024</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r32-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r32-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r33 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/0309-1740(85)90082-8" target="_blank">https://doi.org/10.1016/0309-1740(85)90082-8</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r34 > a[target="_blank"]` | `<a href="https://doi.org/10.5851/kosfa.2015.35.6.772" target="_blank">https://doi.org/10.5851/kosfa.2015.35.6.772</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r34-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r34-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r35 > a[target="_blank"]` | `<a href="https://doi.org/10.1021/acs.jafc.9b08098" target="_blank">https://doi.org/10.1021/acs.jafc.9b08098</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r36 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb2019.07.0027" target="_blank">https://doi.org/10.22175/mmb2019.07.0027</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r36-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r36-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r37 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2011.11.024" target="_blank">https://doi.org/10.1016/j.meatsci.2011.11.024</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r38 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2019.01.007" target="_blank">https://doi.org/10.1016/j.meatsci.2019.01.007</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r38-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r38-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r39 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/1999.77102693x" target="_blank">https://doi.org/10.2527/1999.77102693x</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r40 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2014.06.032" target="_blank">https://doi.org/10.1016/j.meatsci.2014.06.032</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r41 > a[target="_blank"]` | `<a href="https://doi.org/10.1111/j.1365-2621.1990.tb06748.x" target="_blank">https://doi.org/10.1111/j.1365-2621.1990.tb06748.x</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r41-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r41-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r42 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2009.05.003" target="_blank">https://doi.org/10.1016/j.meatsci.2009.05.003</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r42-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r42-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r43 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.foodchem.2022.133874" target="_blank">https://doi.org/10.1016/j.foodchem.2022.133874</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r43-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r43-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r44 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2018.11.018" target="_blank">https://doi.org/10.1016/j.meatsci.2018.11.018</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(1) > a[target="_blank"]` | `<a target="_blank" href="/olh/article/4405/galley/7579/view/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(2) > a` | `<a href="/olh/article/4405/galley/7579/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(3) > a` | `<a href="/olh/article/4405/galley/7580/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(4) > a` | `<a href="/olh/article/4405/galley/33919/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="info/"]` | `<a href="/olh/issue/401/info/"> Volume 1 • Issue 1 • 2015 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(4) > ul > li > a[target="_blank"]` | `<a target="_blank" href="https://doi.org/10.16995/olh.15" aria-label="D.O.I. for DEV: Evaluation of Fresh and Frozen Beef Strip Loins of Equal Aging Periods for Palatability Traits">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(6) > ul > li > a` | `<a href="/olh/download/article/4405/supp_file/783/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading0"]` | `<a href="#heading0" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Introduction</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading1"]` | `<a href="#heading1" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Materials and Methods</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading2"]` | `<a href="#heading2" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Sample collection and fabrication</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading3"]` | `<a href="#heading3" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Trained sensory panels</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading4"]` | `<a href="#heading4" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Consumer sensory panels</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading5"]` | `<a href="#heading5" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Shear force, cooking characteristics, and internal color</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading6"]` | `<a href="#heading6" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Sample preparation and proximate analysis</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading7"]` | `<a href="#heading7" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Surface hydrophobicity</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading8"]` | `<a href="#heading8" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Metmyoglobin-reducing activity</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading9"]` | `<a href="#heading9" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Lipid oxidation</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading10"]` | `<a href="#heading10" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Statistical analysis</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading11"]` | `<a href="#heading11" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Results</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading12"]` | `<a href="#heading12" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Consumer sensory evaluation</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading13"]` | `<a href="#heading13" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Trained sensory evaluation</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading14"]` | `<a href="#heading14" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Warner-Bratzler shear force and cooking characteristics</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading15"]` | `<a href="#heading15" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Internal cooked color, color stability, lipid oxidation, and surface…` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading16"]` | `<a href="#heading16" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Discussion</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading17"]` | `<a href="#heading17" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Conclusions</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading18"]` | `<a href="#heading18" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Acknowledgement</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading19"]` | `<a href="#heading19" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Reference</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `#reflist > ul` | `<ul>` | [Failure list 3](#list-3) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label` | `<label for="article_search">Search</label>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/collections/collection/" target="_blank">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(6) > a:nth-child(2)` | `<a style="background-color: rgb(255, 255, 255);" href="https://olh.openlibhums.org/collections/collection/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(6) > a:nth-child(3)` | `<a style="background-color: rgb(255, 255, 255);" href="https://olh.openlibhums.org/site/special-collections/">how to apply</a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/759/"]` | `<a href="/olh/news/759/" aria-describedby="news-759"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/758/"]` | `<a href="/olh/news/758/" aria-describedby="news-758"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/757/"]` | `<a href="/olh/news/757/" aria-describedby="news-757"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/756/"]` | `<a href="/olh/news/756/" aria-describedby="news-756"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/755/"]` | `<a href="/olh/news/755/" aria-describedby="news-755"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/?theme=material](http://localhost:8000/olh/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/accessibility/?theme=material](http://localhost:8000/olh/accessibility/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/accessibility/?theme=material](http://localhost:8000/olh/accessibility/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/accessibility/?theme=material](http://localhost:8000/olh/accessibility/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/accessibility/?theme=material](http://localhost:8000/olh/accessibility/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/accessibility/?theme=material](http://localhost:8000/olh/accessibility/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.control-label` | `<label class="control-label s12 ">Who would you like to contact?</label>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_sender"]` | `<label class="" for="id_sender">Your contact email address</label>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_subject"]` | `<label class="" for="id_subject">Subject</label>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_body"]` | `<label class="" for="id_body">Your message</label>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_captcha"]` | `<label class="" for="id_captcha">Answer this question: </label>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button` | `<button type="submit" class="btn">Send Message</button>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#m_select-input-9abefa04-16a4-429b-2fa2-5ff97b862d13` | `<input id="m_select-input-9abef..." class="select-dropdown drop..." type="text" readonly="true" data-target="select-options-c371d..." aria-readonly="true" aria-required="false" role="combobox" aria-ow…` | [Failure label](#label) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#id_captcha_0` | `<input type="text" name="captcha_0" size="5" class=" validate" required="" id="id_captcha_0">` | [Failure label](#label) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select[name="recipient"]` | `<select name="recipient" class=" validate" tabindex="-1">` | [Failure select-name](#select-name) | +| [olh/contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `.browser-default` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(2) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a` | `<a href="/olh/profile/76ce2832-629c-4240-a37b-a3772baba951/" aria-describedby="member-76ce2832-629c-4240-a37b-a3772baba951"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(2) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a:nth-child(1)` | `<a href="https://www.bbk.ac.uk/our-staff/profile/9244765/rose-harris-birtill" aria-label="Person 2537 Family 2537's website"> <i aria-hidden="true" class="fa fa-globe"></i> Website </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.m3.col:nth-child(2) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a:nth-child(2)` | `<a href="https://www.twitter.com/roseharrisb" aria-label="Person 2537 Family 2537's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(3)` | `<a href="https://www.linkedin.com/in/rosehb" aria-label="Person 2537 Family 2537's linkedin profile"> <i aria-hidden="true" class="fa fa-linkedin-square"></i> Linkedin </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a` | `<a href="/olh/profile/e6980887-f7c4-4833-b9e8-98318104169b/" aria-describedby="member-e6980887-f7c4-4833-b9e8-98318104169b"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a[aria-label="Caroline Edwards's website"]` | `<a href="http://www.drcarolineedwards.com/" aria-label="Caroline Edwards's website"> <i aria-hidden="true" class="fa fa-globe"></i> Website </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a:nth-child(2)` | `<a href="https://www.twitter.com/the_blochian" aria-label="Caroline Edwards's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(3) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a` | `<a href="/olh/profile/bed4a260-430e-4741-9f5c-ea45384c8877/" aria-describedby="member-bed4a260-430e-4741-9f5c-ea45384c8877"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(3) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a` | `<a href="https://www.twitter.com/Simon_Everett" aria-label="Simon Everett's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(4) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a` | `<a href="/olh/profile/954d6773-124a-4993-a69c-3ebd11afc784/" aria-describedby="member-954d6773-124a-4993-a69c-3ebd11afc784"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(4) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a` | `<a href="https://www.github.com/AmeliePlaysKath" aria-label="Person 23281 Family 23281's github profile"> <i aria-hidden="true" class="fa fa-github-square"></i> Github </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(5) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a` | `<a href="/olh/profile/b69c8c89-36fe-4f21-8679-cea21c61fbde/" aria-describedby="member-b69c8c89-36fe-4f21-8679-cea21c61fbde"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(13) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a` | `<a href="/olh/profile/e6980887-f7c4-4833-b9e8-98318104169b/" aria-describedby="member-e6980887-f7c4-4833-b9e8-98318104169b"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(13) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a[aria-label="Caroline Edwards's website"]` | `<a href="http://www.drcarolineedwards.com/" aria-label="Caroline Edwards's website"> <i aria-hidden="true" class="fa fa-globe"></i> Website </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(13) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a:nth-child(2)` | `<a href="https://www.twitter.com/the_blochian" aria-label="Caroline Edwards's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_article_search"]` | `<label class="" for="id_article_search">Search term</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(2) > div > label > span` | `<span>Search Titles</span>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(3) > div > label > span` | `<span>Search Abstract</span>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(4) > div > label > span` | `<span>Search Authors</span>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(5) > div > label > span` | `<span>Search Keywords</span>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(6) > div > label > span` | `<span>Search Full Text</span>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(7) > div > label > span` | `<span>Search ORCIDs</span>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.control-label` | `<label class="control-label s12 ">Sort results by</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button` | `<button type="submit" class="btn btn-primary"> Filter </button>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#m_select-input-9a812611-6a6d-3054-bc97-62a1698eb3c5` | `<input id="m_select-input-9a812..." class="select-dropdown drop..." type="text" readonly="true" data-target="select-options-682e7..." aria-readonly="true" aria-required="false" role="combobox" aria-ow…` | [Failure label](#label) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `.invalid` | `<select name="sort" class=" validate invalid" tabindex="-1">` | [Failure select-name](#select-name) | +| [olh/search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `.browser-default` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"][target="_blank"]` | `<a href="https://www.openlibhums.org" target="_blank">Open Library of Humanities</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(1) > a:nth-child(4)` | `<a href="https://olh.openlibhums.org/collections/collection/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(5)` | `<a href="https://olh.openlibhums.org/site/special-collections/">how to apply</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="clockss.org"]` | `<a href="https://clockss.org" target="_blank">CLOCKSS</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[target="_blank"]:nth-child(4)` | `<a href="https://olh.openlibhums.org/site/special-collections/" target="_blank"><em>Open Library of Humanities</em> Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_blank"]:nth-child(4) > em` | `<em>Open Library of Humanities</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(5) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/special-collections/" target="_blank">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(7) > a` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/">international library consortium</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_blank"]:nth-child(2)` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Archiving%20and%20Indexing" target="_blank">publisher's policy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(10) > a[target="_blank"]:nth-child(4)` | `<a href="https://www.scopus.com/sourceid/21100867938" target="_blank">CiteScore on Scopus</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(2) > a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(1) > a:nth-child(4)` | `<a href="https://olh.openlibhums.org/collections/collection/">Special Collections</a>` | [Failure target-size](#target-size) | +| [olh/site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="clockss.org"]` | `<a href="https://clockss.org" target="_blank">CLOCKSS</a>` | [Failure target-size](#target-size) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `strong > a` | `<a href="https://olh.openlibhums.org/site/special-collections/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Submissions"]` | `<a href="#Submissions">Submissions</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Language and Text"]` | `<a href="#Language and Text">Language and Text</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Data and Symbols"]` | `<a href="#Data and Symbols">Data and Symbols</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Figures and Tables"]` | `<a href="#Figures and Tables">Figures and Tables</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#References"]` | `<a href="#References">References</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(15) > a:nth-child(2)` | `<a href="https://olh.openlibhums.org/site/blindreview/">ensuring an anonymous review</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(30) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/competinginterests/" target="_blank">How to Declare Competing Interests</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(32) > a[target="_blank"]` | `<a href="https://www.wma.net/policies-post/wma-declaration-of-helsinki-ethical-principles-for-medical-research-involving-human-subjects/" target="_blank">Declaration of Helsinki</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(75) > a` | `<a href="http://en.wikipedia.org/wiki/Wikipedia:Manual_of_Style/Abbreviations#Miscellanea">here</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(135) > a[target="_blank"]` | `<a href="http://www.bipm.org/utils/common/pdf/si_brochure_8_en.pdf" target="_blank">Bureau International des Poids et Mesures</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(170) > a` | `<a href="http://eprints.lincoln.ac.uk/id/eprint/25380/1/Harvard_Referencing_Guide.pdf">document</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `blockquote:nth-child(248) > a` | `<a href="https://www.theguardian.com/world/2020/sep/23/wednesday-briefing-last-orders-in-fight-to-avoid-lockdown">https://www.theguardian.com/world/2020/sep/23/wednesday-briefing-last-orders-in-fight-…` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(15) > a:nth-child(3)` | `<a href="https://olh.openlibhums.org/help/view/editorial/topic/000044">.</a>` | [Failure target-size](#target-size) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Editorial Oversight"]` | `<a href="#Editorial Oversight">Editorial Oversight</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Peer Review Process"]` | `<a href="#Peer Review Process">Peer Review Process</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Governance"]` | `<a href="#Governance">Organisation and Governance</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Business Practices"]` | `<a href="#Business Practices">Business Practices</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Preprint Policy"]` | `<a href="#Preprint Policy">Preprint Policy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(6)` | `<a href="#Conduct and Expected Behaviour">Conduct and Expected Behaviour</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Special Collections"]` | `<a href="#Special Collections"><em>OLHJ</em> Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Special Collections"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(6) > a[target="_blank"]` | `<a href="https://www.chase.ac.uk/research-placements" target="_blank">Consortium for the Humanities and Arts South-East England</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(12) > a[target="_blank"]` | `<a href="https://publicationethics.org/guidance/Guidelines" target="_blank">Committee on Publication Ethics</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(26) > a[target="blank_"]` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Reviewer%20Responsibilities" target="blank_">‘Responsibilities of Reviewers’</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(28) > a` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Publication%20Ethics%20and%20Malpractice">Publication Ethics and Malpractice Statement</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="janeway.systems"]` | `<a href="https://janeway.systems" target="_blank">Janeway</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(37) > a` | `<a href="https://olh.openlibhums.org/editorialteam/"> editorial board</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(39) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/editorialteam/" target="_blank">editorial team</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(41) > a[target="_blank"]` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/" target="_blank">Library Partnership Subsidy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(41) > a:nth-child(4)` | `<a href="https://olh.openlibhums.org/site/about/">About</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(50) > a[target="_blank"]` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/" target="_blank">Library Partnership Subsidy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(54) > a` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Publication%20Ethics%20and%20Malpractice">Publication Ethics and Malpractice Statement’</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(55) > a:nth-child(2)` | `<a href="https://olh.openlibhums.org/contact/">Contact</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(55) > a:nth-child(4)` | `<a href="https://www.openlibhums.org/contact/">directly with the publisher</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(55) > a[target="_blank"]` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Publisher%20Responsibilities" target="_blank">‘Publication Ethics and Malpractice Statement’</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(59) > a[target="_blank"]` | `<a href="https://publicationethics.org/resources/discussion-documents/guest-edited-collections" target="_blank">best practice guidelines by COPE</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(63) > a[target="blank_"]` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Ethics%20Policies" target="blank_">Ethics Policies</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(64) > a` | `<a href="https://olh.openlibhums.org/site/special-collections/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(3) > a[href$="#Peer Review Process"]` | `<a href="#Peer Review Process">Peer Review Process</a>` | [Failure target-size](#target-size) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(3) > a[href$="#Governance"]` | `<a href="#Governance">Organisation and Governance</a>` | [Failure target-size](#target-size) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(3) > a[href$="#Business Practices"]` | `<a href="#Business Practices">Business Practices</a>` | [Failure target-size](#target-size) | +| [olh/site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(55) > a:nth-child(2)` | `<a href="https://olh.openlibhums.org/contact/">Contact</a>` | [Failure target-size](#target-size) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(1) > strong > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/special-collections/" target="_blank">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(2) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/author-guidelines/" target="_blank">Author Guidelines</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.btn.btn-primary:nth-child(1)` | `<a href="/olh/register/step/1/?next=/olh/submissions/%3Ftheme%3Dmaterial" class="btn btn-primary"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.btn.btn-primary:nth-child(2)` | `<a href="/olh/login/?next=/olh/submissions/%3Ftheme%3Dmaterial" class="btn btn-primary"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(8) > a:nth-child(1)` | `<a href="https://olh.openlibhums.org/site/author-guidelines/">Author Guidelines</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(8) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/competinginterests/" target="_blank">how to declare competing interests</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(9) > a:nth-child(1)` | `<a href="https://olh.openlibhums.org/site/blindreview/">ensuring an anonymous review</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a:nth-child(1)` | `<a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution License</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.default-li:nth-child(6) > p:nth-child(3) > a:nth-child(2)` | `<a href="http://creativecommons.org/licenses/">Creative Commons License</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_new"]` | `<a href="http://opcit.eprints.org/oacitation-biblio.html" target="_new">The Effect of Open Access</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/journal-policies/#Peer%20Review%20Process" target="_blank">Journal Policies</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item:nth-child(1) > strong > a[target="_blank"]` | `<a href="https://creativecommons.org/licenses/by/4.0" target="_blank">` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.example.com"]` | `<a href="https://www.example.com" target="_blank">` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.default-li:nth-child(9) > p:nth-child(2) > a` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/">international library consortium</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `li:nth-child(9) > a[target="_blank"]` | `<a href="/help/view/editorial/topic/000044" target="_blank">.</a>` | [Failure target-size](#target-size) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-1287"]` | `<a href="/olh/issue/1287/info/" aria-describedby="issue-1287"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-1298"]` | `<a href="/olh/issue/1298/info/" aria-describedby="issue-1298"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-964"]` | `<a href="/olh/issue/964/info/" aria-describedby="issue-964"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-899"]` | `<a href="/olh/issue/899/info/" aria-describedby="issue-899"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-871"]` | `<a href="/olh/issue/871/info/" aria-describedby="issue-871"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-852"]` | `<a href="/olh/issue/852/info/" aria-describedby="issue-852"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-823"]` | `<a href="/olh/issue/823/info/" aria-describedby="issue-823"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-457"]` | `<a href="/olh/issue/457/info/" aria-describedby="issue-457"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-411"]` | `<a href="/olh/issue/411/info/" aria-describedby="issue-411"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-410"]` | `<a href="/olh/issue/410/info/" aria-describedby="issue-410"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-409"]` | `<a href="/olh/issue/409/info/" aria-describedby="issue-409"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-408"]` | `<a href="/olh/issue/408/info/" aria-describedby="issue-408"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-407"]` | `<a href="/olh/issue/407/info/" aria-describedby="issue-407"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-406"]` | `<a href="/olh/issue/406/info/" aria-describedby="issue-406"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-405"]` | `<a href="/olh/issue/405/info/" aria-describedby="issue-405"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-404"]` | `<a href="/olh/issue/404/info/" aria-describedby="issue-404"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-403"]` | `<a href="/olh/issue/403/info/" aria-describedby="issue-403"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-402"]` | `<a href="/olh/issue/402/info/" aria-describedby="issue-402"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-401"]` | `<a href="/olh/issue/401/info/" aria-describedby="issue-401"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(1) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/1287/info/"> <img class="issue_image img-fluid" src="/media/cover_images/b0b000d8-d489-4506-baf9-d557b1c913a0.2" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(3) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/964/info/"> <img class="issue_image img-fluid" src="/media/cover_images/a7181b5b-5c7b-4fb8-9e9d-f2131d8116cf.1" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(4) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/899/info/"> <img class="issue_image img-fluid" src="/media/cover_images/43209864-a491-4695-8a5b-b0d95a212a6a.2" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(5) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/871/info/"> <img class="issue_image img-fluid" src="/media/cover_images/e46ee8a3-af37-4d7a-be85-45b9d2721f83.1" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(6) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/852/info/"> <img class="issue_image img-fluid" src="/media/cover_images/ba4ac185-32ac-48d9-8684-2c46f0ee7af1.2" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(7) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/823/info/"> <img class="issue_image img-fluid" src="/media/cover_images/c80d026b-c7af-4a03-bfcc-12c5003fac20.1" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(8) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/457/info/"> <img class="issue_image img-fluid" src="/media/cover_images/1c737a1a-6ea4-46c0-80cc-844b153c1f72.2" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(9) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/411/info/"> <img class="issue_image img-fluid" src="/media/cover_images/006bbf8d-03d7-433e-8511-b15c86d52be8.1" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(10) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/410/info/"> <img class="issue_image img-fluid" src="/media/cover_images/cc856d05-9994-479a-ad47-b2599148302e.2" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(11) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/409/info/"> <img class="issue_image img-fluid" src="/media/cover_images/b12e3f05-0d94-4b86-a53c-1429447794c5.1" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(12) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/408/info/"> <img class="issue_image img-fluid" src="/media/cover_images/74b9eb3e-61b4-45f7-b3b6-801d22ff4d73.1" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(13) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/407/info/"> <img class="issue_image img-fluid" src="/media/cover_images/cd9eda90-749e-4144-883f-1a98fb7a4932.2" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(14) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/406/info/"> <img class="issue_image img-fluid" src="/media/cover_images/44e42856-c4d2-4ac3-8260-563c63a0a65d.1" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(15) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/405/info/"> <img class="issue_image img-fluid" src="/media/cover_images/9d345e21-e9a5-4a22-96a4-637283a136e2.2" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(16) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/404/info/"> <img class="issue_image img-fluid" src="/media/cover_images/218da36c-2f53-418f-a20c-72e56b8a76bc.1" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(17) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/403/info/"> <img class="issue_image img-fluid" src="/media/cover_images/6c090202-aad2-4bfc-8fbf-677c092bc702.2" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(18) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/402/info/"> <img class="issue_image img-fluid" src="/media/cover_images/3f5f9e63-fc6c-4f63-959d-63163266118f.1" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `.l6.xl4.m12:nth-child(19) > .horizontal.card > .card-image > a[href$="info/"]` | `<a href="/olh/issue/401/info/"> <img class="issue_image img-fluid" src="/media/cover_images/64bdaf7a-6443-4959-a8a1-569fbcc1f391.1" alt=""> </a>` | [Failure link-name](#link-name) | +| [olh/issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(1)` | `<a class="collection-item " href="/olh/issue/1287/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 10 • Issue 2 • 2024 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(2)` | `<a class="collection-item " href="/olh/issue/1298/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 11 • 2024 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(3)` | `<a class="collection-item " href="/olh/issue/964/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 10 • Issue 1 • 2024 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(4)` | `<a class="collection-item " href="/olh/issue/899/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 9 • Issue 2 • 2023 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(5)` | `<a class="collection-item " href="/olh/issue/871/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 9 • Issue 1 • 2023 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(6)` | `<a class="collection-item " href="/olh/issue/852/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 8 • Issue 2 • 2022 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(7)` | `<a class="collection-item " href="/olh/issue/823/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 8 • Issue 1 • 2022 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(8)` | `<a class="collection-item " href="/olh/issue/457/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 7 • Issue 2 • 2021 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(9)` | `<a class="collection-item " href="/olh/issue/411/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 7 • Issue 1 • 2021 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(10)` | `<a class="collection-item " href="/olh/issue/410/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 6 • Issue 2 • 2020 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(11)` | `<a class="collection-item " href="/olh/issue/409/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 6 • Issue 1 • 2020 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(12)` | `<a class="collection-item " href="/olh/issue/408/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 5 • Issue 1 • 2019 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(13)` | `<a class="collection-item " href="/olh/issue/407/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 4 • Issue 2 • 2018 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(14)` | `<a class="collection-item " href="/olh/issue/406/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 4 • Issue 1 • 2018 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(15)` | `<a class="collection-item " href="/olh/issue/405/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 3 • Issue 2 • 2017 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(16)` | `<a class="collection-item " href="/olh/issue/404/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 3 • Issue 1 • 2017 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(17)` | `<a class="collection-item " href="/olh/issue/403/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 2 • Issue 2 • 2016 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.active.collection-item[href$="info/"]` | `<a class="collection-item active" href="/olh/issue/402/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 2 • Issue 1 • 2016 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(19)` | `<a class="collection-item " href="/olh/issue/401/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 1 • Issue 1 • 2015 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.collection` | `<ul class="collection">` | [Failure list 4](#list-4) | +| [olh/issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(1)` | `<a class="collection-item " href="/olh/issue/1287/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 10 • Issue 2 • 2024 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(2)` | `<a class="collection-item " href="/olh/issue/1298/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 11 • 2024 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(3)` | `<a class="collection-item " href="/olh/issue/964/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 10 • Issue 1 • 2024 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(4)` | `<a class="collection-item " href="/olh/issue/899/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 9 • Issue 2 • 2023 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(5)` | `<a class="collection-item " href="/olh/issue/871/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 9 • Issue 1 • 2023 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(6)` | `<a class="collection-item " href="/olh/issue/852/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 8 • Issue 2 • 2022 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(7)` | `<a class="collection-item " href="/olh/issue/823/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 8 • Issue 1 • 2022 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(8)` | `<a class="collection-item " href="/olh/issue/457/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 7 • Issue 2 • 2021 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(9)` | `<a class="collection-item " href="/olh/issue/411/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 7 • Issue 1 • 2021 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(10)` | `<a class="collection-item " href="/olh/issue/410/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 6 • Issue 2 • 2020 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.active.collection-item[href$="info/"]` | `<a class="collection-item active" href="/olh/issue/409/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 6 • Issue 1 • 2020 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(12)` | `<a class="collection-item " href="/olh/issue/408/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 5 • Issue 1 • 2019 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(13)` | `<a class="collection-item " href="/olh/issue/407/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 4 • Issue 2 • 2018 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(14)` | `<a class="collection-item " href="/olh/issue/406/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 4 • Issue 1 • 2018 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(15)` | `<a class="collection-item " href="/olh/issue/405/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 3 • Issue 2 • 2017 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(16)` | `<a class="collection-item " href="/olh/issue/404/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 3 • Issue 1 • 2017 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(17)` | `<a class="collection-item " href="/olh/issue/403/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 2 • Issue 2 • 2016 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(18)` | `<a class="collection-item " href="/olh/issue/402/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 2 • Issue 1 • 2016 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(19)` | `<a class="collection-item " href="/olh/issue/401/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 1 • Issue 1 • 2015 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.collection` | `<ul class="collection">` | [Failure list 4](#list-4) | +| [olh/issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/963/"]` | `<a href="/olh/collections/963/" aria-describedby="collection-963"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/905/"]` | `<a href="/olh/collections/905/" aria-describedby="collection-905"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/895/"]` | `<a href="/olh/collections/895/" aria-describedby="collection-895"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/877/"]` | `<a href="/olh/collections/877/" aria-describedby="collection-877"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/850/"]` | `<a href="/olh/collections/850/" aria-describedby="collection-850"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/846/"]` | `<a href="/olh/collections/846/" aria-describedby="collection-846"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/803/"]` | `<a href="/olh/collections/803/" aria-describedby="collection-803"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/505/"]` | `<a href="/olh/collections/505/" aria-describedby="collection-505"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/455/"]` | `<a href="/olh/collections/455/" aria-describedby="collection-455"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/454/"]` | `<a href="/olh/collections/454/" aria-describedby="collection-454"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/453/"]` | `<a href="/olh/collections/453/" aria-describedby="collection-453"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/452/"]` | `<a href="/olh/collections/452/" aria-describedby="collection-452"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/447/"]` | `<a href="/olh/collections/447/" aria-describedby="collection-447"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/449/"]` | `<a href="/olh/collections/449/" aria-describedby="collection-449"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/450/"]` | `<a href="/olh/collections/450/" aria-describedby="collection-450"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/412/"]` | `<a href="/olh/collections/412/" aria-describedby="collection-412"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/413/"]` | `<a href="/olh/collections/413/" aria-describedby="collection-413"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/414/"]` | `<a href="/olh/collections/414/" aria-describedby="collection-414"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/415/"]` | `<a href="/olh/collections/415/" aria-describedby="collection-415"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/416/"]` | `<a href="/olh/collections/416/" aria-describedby="collection-416"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/417/"]` | `<a href="/olh/collections/417/" aria-describedby="collection-417"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/418/"]` | `<a href="/olh/collections/418/" aria-describedby="collection-418"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/419/"]` | `<a href="/olh/collections/419/" aria-describedby="collection-419"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/420/"]` | `<a href="/olh/collections/420/" aria-describedby="collection-420"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/421/"]` | `<a href="/olh/collections/421/" aria-describedby="collection-421"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/422/"]` | `<a href="/olh/collections/422/" aria-describedby="collection-422"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/423/"]` | `<a href="/olh/collections/423/" aria-describedby="collection-423"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/424/"]` | `<a href="/olh/collections/424/" aria-describedby="collection-424"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/425/"]` | `<a href="/olh/collections/425/" aria-describedby="collection-425"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/426/"]` | `<a href="/olh/collections/426/" aria-describedby="collection-426"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/427/"]` | `<a href="/olh/collections/427/" aria-describedby="collection-427"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/428/"]` | `<a href="/olh/collections/428/" aria-describedby="collection-428"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/429/"]` | `<a href="/olh/collections/429/" aria-describedby="collection-429"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/430/"]` | `<a href="/olh/collections/430/" aria-describedby="collection-430"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/431/"]` | `<a href="/olh/collections/431/" aria-describedby="collection-431"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/432/"]` | `<a href="/olh/collections/432/" aria-describedby="collection-432"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/433/"]` | `<a href="/olh/collections/433/" aria-describedby="collection-433"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/434/"]` | `<a href="/olh/collections/434/" aria-describedby="collection-434"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/435/"]` | `<a href="/olh/collections/435/" aria-describedby="collection-435"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/436/"]` | `<a href="/olh/collections/436/" aria-describedby="collection-436"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/437/"]` | `<a href="/olh/collections/437/" aria-describedby="collection-437"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/438/"]` | `<a href="/olh/collections/438/" aria-describedby="collection-438"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/439/"]` | `<a href="/olh/collections/439/" aria-describedby="collection-439"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/440/"]` | `<a href="/olh/collections/440/" aria-describedby="collection-440"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/441/"]` | `<a href="/olh/collections/441/" aria-describedby="collection-441"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/442/"]` | `<a href="/olh/collections/442/" aria-describedby="collection-442"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/443/"]` | `<a href="/olh/collections/443/" aria-describedby="collection-443"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/444/"]` | `<a href="/olh/collections/444/" aria-describedby="collection-444"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/445/"]` | `<a href="/olh/collections/445/" aria-describedby="collection-445"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/446/"]` | `<a href="/olh/collections/446/" aria-describedby="collection-446"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/963/"]` | `<a class="collection-item " href="/olh/collections/963/">Humour as a Human Right </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/905/"]` | `<a class="collection-item " href="/olh/collections/905/">Cultural Heritage Data for Research: Opening Museum Collections, Project Data and Digital Images for Research, Query and Discovery </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/895/"]` | `<a class="collection-item " href="/olh/collections/895/">Caliban's Mirror: Reflections of James Joyce and Oscar Wilde </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/877/"]` | `<a class="collection-item " href="/olh/collections/877/">Cultural Representations of Machine Vision </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/850/"]` | `<a class="collection-item " href="/olh/collections/850/">The Public Curatorship of the Medieval Past </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/846/"]` | `<a class="collection-item active" href="/olh/collections/846/">Medieval Minds and Matter </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/803/"]` | `<a class="collection-item " href="/olh/collections/803/">Representing the Medieval in Popular Culture: Remembering the Angevins </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/505/"]` | `<a class="collection-item " href="/olh/collections/505/">The Politics and History of Menstruation: Contextualising the Scottish Campaign to End Period Poverty </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/455/"]` | `<a class="collection-item " href="/olh/collections/455/">Production Archives 03: Archival Practices </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/454/"]` | `<a class="collection-item " href="/olh/collections/454/">Production Archives 02: Production Contexts </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/453/"]` | `<a class="collection-item " href="/olh/collections/453/">Production Archives 01: Puppets for Action </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/452/"]` | `<a class="collection-item " href="/olh/collections/452/">Representing Classical Music in the Twenty-First Century </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/447/"]` | `<a class="collection-item " href="/olh/collections/447/">The Pathological Body: European Literary and Cultural Perspectives in the Age of Modern Medicine </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/449/"]` | `<a class="collection-item " href="/olh/collections/449/">Binary Modernisms: Re/Appropriations of Modernist Art in the Digital Age </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/450/"]` | `<a class="collection-item " href="/olh/collections/450/">Local and Universal in Irish Literature and Culture </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/412/"]` | `<a class="collection-item " href="/olh/collections/412/">Reading in Ruins: Exploring Posthumanist Narrative Studies </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/413/"]` | `<a class="collection-item " href="/olh/collections/413/">The Language of Perspective </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/414/"]` | `<a class="collection-item " href="/olh/collections/414/">Nancy Astor, Public Women and Gendered Political Culture in Interwar Britain </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/415/"]` | `<a class="collection-item " href="/olh/collections/415/">The Working-Class Avant-Garde </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/416/"]` | `<a class="collection-item " href="/olh/collections/416/">Colonialities in Dispute: Discourses on Colonialism and Race in the Spanish State </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/417/"]` | `<a class="collection-item " href="/olh/collections/417/">Powering the Future: Energy Resources in Science Fiction and Fantasy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/418/"]` | `<a class="collection-item " href="/olh/collections/418/">Writers and Intellectuals on Britain and Europe, 1918–2018 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/419/"]` | `<a class="collection-item " href="/olh/collections/419/">Literature, Law and Psychoanalysis </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/420/"]` | `<a class="collection-item " href="/olh/collections/420/">Muslims in the Media </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/421/"]` | `<a class="collection-item " href="/olh/collections/421/">Encounters between Asian and Western Art in the 20th and 21st centuries: a liberating influence for Asia? </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/422/"]` | `<a class="collection-item " href="/olh/collections/422/">Waste: Disposability, Decay, and Depletion </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/423/"]` | `<a class="collection-item " href="/olh/collections/423/">Pride Revisited: Cinema, Activism and Re-Activation </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/424/"]` | `<a class="collection-item " href="/olh/collections/424/">New Approaches to Late Medieval Court Records </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/425/"]` | `<a class="collection-item " href="/olh/collections/425/">Utopian Art and Literature from Modern India </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/426/"]` | `<a class="collection-item " href="/olh/collections/426/">Right-Wing Populism and Mediated Activism: Creative Responses and Counter-Narratives </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/427/"]` | `<a class="collection-item " href="/olh/collections/427/">Representing Climate: Local to Global </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/428/"]` | `<a class="collection-item " href="/olh/collections/428/">Cultivating Spheres: Agriculture, Technical Communication, and the Publics </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/429/"]` | `<a class="collection-item " href="/olh/collections/429/">Freedom After Neoliberalism </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/430/"]` | `<a class="collection-item " href="/olh/collections/430/">The Medieval Brain </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/431/"]` | `<a class="collection-item " href="/olh/collections/431/">Remaking Collections </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/432/"]` | `<a class="collection-item " href="/olh/collections/432/">New Approaches to Medieval Water Studies </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/433/"]` | `<a class="collection-item " href="/olh/collections/433/">Imaginaries of the Future 01: Bodies and Media </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/434/"]` | `<a class="collection-item " href="/olh/collections/434/">Imaginaries of the Future 02: Politics, Poetics, Place </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/435/"]` | `<a class="collection-item " href="/olh/collections/435/">Imaginaries of the Future 03: Utopia at the Border </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/436/"]` | `<a class="collection-item " href="/olh/collections/436/">Postcolonial Perspectives in Game Studies </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/437/"]` | `<a class="collection-item " href="/olh/collections/437/">Station Eleven and Twenty-First-Century Writing </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/438/"]` | `<a class="collection-item " href="/olh/collections/438/">#Agreement20 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/439/"]` | `<a class="collection-item " href="/olh/collections/439/">What’s Left? Marxism, Literature and Culture in the 21st Century </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/440/"]` | `<a class="collection-item " href="/olh/collections/440/">New Voices in Jewish-American Literature </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/441/"]` | `<a class="collection-item " href="/olh/collections/441/">Authors, Narratives, and Audiences in Medieval Saints’ Lives </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/442/"]` | `<a class="collection-item " href="/olh/collections/442/">From TV To Film </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/443/"]` | `<a class="collection-item " href="/olh/collections/443/">American Literature & the Transnational Marketplace </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/444/"]` | `<a class="collection-item " href="/olh/collections/444/">Mnemosyne </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/445/"]` | `<a class="collection-item " href="/olh/collections/445/">Healing Gods, Heroes and Rituals in the Graeco-Roman World </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/446/"]` | `<a class="collection-item " href="/olh/collections/446/">The Abolition of the University </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.bar-sep > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.collection` | `<ul class="collection">` | [Failure list 4](#list-4) | +| [olh/collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/759/"]` | `<a href="/olh/news/759/" aria-describedby="news-759">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/758/"]` | `<a href="/olh/news/758/" aria-describedby="news-758">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/757/"]` | `<a href="/olh/news/757/" aria-describedby="news-757">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/756/"]` | `<a href="/olh/news/756/" aria-describedby="news-756">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/755/"]` | `<a href="/olh/news/755/" aria-describedby="news-755">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/754/"]` | `<a href="/olh/news/754/" aria-describedby="news-754">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/753/"]` | `<a href="/olh/news/753/" aria-describedby="news-753">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/752/"]` | `<a href="/olh/news/752/" aria-describedby="news-752">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/751/"]` | `<a href="/olh/news/751/" aria-describedby="news-751">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/750/"]` | `<a href="/olh/news/750/" aria-describedby="news-750">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/749/"]` | `<a href="/olh/news/749/" aria-describedby="news-749">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/748/"]` | `<a href="/olh/news/748/" aria-describedby="news-748">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.d-flex` | `<ul class="d-flex justify-content-center">` | [Failure list 4](#list-4) | +| [olh/news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[title="OLH Special Collections"]` | `<a title="OLH Special Collections" href="https://olh.openlibhums.org/collections/collection/" target="_blank">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_blank"]:nth-child(2)` | `<a href="https://openlibhums.org/site/academics/special-collections/" target="_blank">OLH Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.success` | `<a href="/olh/news/tag/Digital%20Humanities/" class="button success tiny"> Digital Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="news/"]` | `<a href="/olh/news/" class="button">Back to News List</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.bar-sep > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[labelfor="order_by"]` | `<label labelfor="order_by"> Sort results by </label>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#m_select-label-e034fb34-8d67-fd2c-52f5-ceedc6558696` | `<label id="m_select-label-e034fb34-8d67-fd2c-52f5-ceedc6558696" for="m_select-input-494069dc-81ee-e5a4-4c8f-f5ace3d31229"> articles per page </label>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_article_search"]` | `<label class="" for="id_article_search">Search term</label>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[name="submit"]` | `<button name="submit" class="btn"> Search </button>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_date_published__date__gte"]` | `<label for="id_date_published__date__gte">Published after</label>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_date_published__date__lte"]` | `<label for="id_date_published__date__lte">Published before</label>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(3) > label` | `<label>Section</label>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(1) > label > span` | `<span>#Agreement20 (8)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(2) > label > span` | `<span>'An Unconventional MP': Nancy Astor, public women and gendered political culture (12)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(3) > label > span` | `<span>American Literature and the Transnational Marketplace (3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(4) > label > span` | `<span>Article (44)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(5) > label > span` | `<span>Authors, Narratives, and Audiences in Medieval Saints’ Lives (4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(6) > label > span` | `<span>Binary Modernisms: Re/Appropriations of Modernist Art in the Digital Age (8)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(7) > label > span` | `<span>Caliban's Mirror: Reflections of James Joyce and Oscar Wilde (4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(8) > label > span` | `<span>Colonialities in Dispute: Discourses on Colonialism and Race in the Spanish State (5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(9) > label > span` | `<span>Correction (1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(10) > label > span` | `<span>Cultivating Spheres: Agriculture, Technical Communication, and the Publics (6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(11) > label > span` | `<span>Cultural Heritage Data for Research: Opening Museum Collections, Project Data and Digital Images for Research, Query and Discovery (1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(12) > label > span` | `<span>Cultural Representations of Machine Vision (5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(13) > label > span` | `<span>Editorial (6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(14) > label > span` | `<span>Freedom After Neoliberalism (8)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(15) > label > span` | `<span>From TV to Film (4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(16) > label > span` | `<span>Healing Gods, Heroes and Rituals in the Graeco-Roman World (4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(17) > label > span` | `<span>Humour as a Human Right (1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(18) > label > span` | `<span>Imaginaries of the Future 01: Bodies & Media (8)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(19) > label > span` | `<span>Imaginaries of the Future 02: Politics, Poetics, Place (4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(20) > label > span` | `<span>Imaginaries of the Future 03: Utopia at the Border (2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(21) > label > span` | `<span>Interview (2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(22) > label > span` | `<span>Literature, Law and Psychoanalysis (13)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(23) > label > span` | `<span>Local and Universal in Irish Literature and Culture (8)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(24) > label > span` | `<span>Medieval Minds and Matter (5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(25) > label > span` | `<span>Mnemosyne (4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(26) > label > span` | `<span>Museum Engagement as Speculative Design (1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(27) > label > span` | `<span>Muslims in the Media (6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(28) > label > span` | `<span>New Approaches to Late Medieval Court Records (9)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(29) > label > span` | `<span>New Approaches to Medieval Water Studies (6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(30) > label > span` | `<span>New Voices in Jewish-American Literature (8)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(31) > label > span` | `<span>Postcolonial Perspectives in Game Studies (12)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(32) > label > span` | `<span>Powering the Future: Energy Resources in Science Fiction and Fantasy (7)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(33) > label > span` | `<span>Pride Revisited: Cinema, Activism and Re-Activation (9)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(34) > label > span` | `<span>Production Archives 01: Puppets for Action (4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(35) > label > span` | `<span>Production Archives 02: Production Contexts (5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(36) > label > span` | `<span>Production Archives 03: Archival Practices (1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(37) > label > span` | `<span>Reading in Ruins: Exploring Posthumanist Narrative Studies (8)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(38) > label > span` | `<span>Remaking Collections (12)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(39) > label > span` | `<span>Representing Classical Music in the Twenty-First Century (12)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(40) > label > span` | `<span>Representing Climate: Local to Global (4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(41) > label > span` | `<span>Representing the Medieval in Popular Culture: Remembering the Angevins (5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(42) > label > span` | `<span>Right-Wing Populism and Mediated Activism: Creative Responses and Counter-Narratives (6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(43) > label > span` | `<span>Roundtable (1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(44) > label > span` | `<span>Station Eleven and Twenty-First Century Writing (5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(45) > label > span` | `<span>The Abolition of the University (8)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(46) > label > span` | `<span>The Encounter Between Asian and Western Art, 20th-21st Centuries (6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(47) > label > span` | `<span>The Language of Perspective (5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(48) > label > span` | `<span>The Medieval Brain (4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(49) > label > span` | `<span>The Pathological Body: European Literary and Cultural Perspectives in the Age of Modern Medicine (7)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(50) > label > span` | `<span>The Politics and History of Menstruation: Contextualising the Scottish Campaign to End Period Poverty (10)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(51) > label > span` | `<span>The Public Curatorship of the Medieval Past (7)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(52) > label > span` | `<span>The Working-Class Avant-Garde (10)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(53) > label > span` | `<span>Utopian Art and Literature from Modern India (6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(54) > label > span` | `<span>Waste: Disposability, Decay and Depletion (3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(55) > label > span` | `<span>What’s Left? Marxism, Literature and Culture in the 21st Century (6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(56) > label > span` | `<span>Writers and Intellectuals on Britain and Europe, 1918-2018 (9)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[action=""]` | `<button action="" class="btn" type="submit">Apply</button>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[name="clear_all"]` | `<button class="btn" name="clear_all">Clear all</button>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#m_select-input-fd89db15-93db-f61b-6b02-5fac591ec2d7` | `<input id="m_select-input-fd89d..." class="select-dropdown drop..." type="text" readonly="true" data-target="select-options-456ff..." aria-readonly="true" aria-required="false" role="combobox" aria-ow…` | [Failure label](#label) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select[name="order_by"]` | `<select onchange="this.form.submit()" name="order_by" form="facet_form" tabindex="-1">` | [Failure select-name](#select-name) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `#paginate_by` | `<select onchange="this.form.submit()" name="paginate_by" id="paginate_by" form="facet_form" tabindex="-1">` | [Failure select-name](#select-name) | +| [olh/articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `.browser-default` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | diff --git a/a11y/results/markdown/clarity-cardinal.md b/a11y/results/markdown/clarity-cardinal.md new file mode 100644 index 0000000..a5cd255 --- /dev/null +++ b/a11y/results/markdown/clarity-cardinal.md @@ -0,0 +1,217 @@ +# Clarity (Cardinal) Accessibility report (WCAG 2.2) + +**URLs tested:** 23 +**URLs passing (no violations):** 13 +**URLs with violations:** 10 +**Total rule violations:** 16 +**Total failing elements (nodes):** 56 + +## Summary by URL + +| URL | Errors | Status | +| --- | --- | --- | +| http://localhost:8000/ | 27 | :x: fail | +| http://localhost:8000/404/ | 4 | :x: fail | +| http://localhost:8000/journals/ | 4 | :x: fail | +| http://localhost:8000/contact/ | 4 | :x: fail | +| http://localhost:8000/olh/ | 1 | :x: fail | +| http://localhost:8000/olh/accessibility/ | | :white_check_mark: pass | +| http://localhost:8000/olh/contact/ | | :white_check_mark: pass | +| http://localhost:8000/olh/editorialteam/ | | :white_check_mark: pass | +| http://localhost:8000/olh/search/ | | :white_check_mark: pass | +| http://localhost:8000/olh/site/about/ | | :white_check_mark: pass | +| http://localhost:8000/olh/site/author-guidelines/ | 1 | :x: fail | +| http://localhost:8000/olh/site/journal-policies/ | | :white_check_mark: pass | +| http://localhost:8000/olh/submissions/ | 1 | :x: fail | +| http://localhost:8000/olh/issues/ | | :white_check_mark: pass | +| http://localhost:8000/olh/issue/402/info/ | | :white_check_mark: pass | +| http://localhost:8000/olh/issue/409/info/ | | :white_check_mark: pass | +| http://localhost:8000/olh/collections/ | | :white_check_mark: pass | +| http://localhost:8000/olh/collections/846/ | | :white_check_mark: pass | +| http://localhost:8000/olh/news/ | | :white_check_mark: pass | +| http://localhost:8000/olh/news/429/ | 1 | :x: fail | +| http://localhost:8000/olh/articles/ | | :white_check_mark: pass | +| http://localhost:8000/olh/article/id/4403/ | 12 | :x: fail | +| http://localhost:8000/olh/article/id/4405/ | 1 | :x: fail | + +## Rules run and results + +All rules executed in this run (WCAG 2.2 Level A and AA, ACT). Status indicates whether the rule had any violations across the tested URLs. + +| Rule ID | Description | WCAG criteria | Errors | Status | +| --- | --- | --- | --- | --- | +| aria-allowed-attr | Elements must only use supported ARIA attributes | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-allowed-role | ARIA role should be appropriate for the element | — | | :white_check_mark: pass | +| aria-conditional-attr | ARIA attributes must be used as specified for the element's role | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-deprecated-role | Deprecated ARIA roles must not be used | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-hidden-body | aria-hidden="true" must not be present on the document body | WCAG 2.0 Level A; Success Criterion 1.3.1; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-hidden-focus | ARIA hidden element must not be focusable or contain focusable elements | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-prohibited-attr | Elements must only use permitted ARIA attributes | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-required-attr | Required ARIA attributes must be provided | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-roles | ARIA roles used must conform to valid values | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-valid-attr | ARIA attributes must conform to valid names | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-valid-attr-value | ARIA attributes must conform to valid values | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| avoid-inline-spacing | Inline text spacing must be adjustable with custom stylesheets | WCAG 2.1 Level AA | | :white_check_mark: pass | +| button-name | Buttons must have discernible text | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| bypass | Page must have means to bypass repeated blocks | WCAG 2.0 Level A; Success Criterion 2.4.1 | | :white_check_mark: pass | +| color-contrast | Elements must meet minimum color contrast ratio thresholds | WCAG 2.0 Level AA; Success Criterion 1.4.3 | 13 | :x: fail | +| document-title | Documents must have `<title>` element to aid in navigation | WCAG 2.0 Level A; Success Criterion 2.4.2 | | :white_check_mark: pass | +| duplicate-id-aria | IDs used in ARIA and labels must be unique | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| empty-heading | Headings should not be empty | — | 1 | :x: fail | +| heading-order | Heading levels should only increase by one | — | 1 | :x: fail | +| html-has-lang | `<html>` element must have a lang attribute | WCAG 2.0 Level A; Success Criterion 3.1.1 | | :white_check_mark: pass | +| html-lang-valid | `<html>` element must have a valid value for the lang attribute | WCAG 2.0 Level A; Success Criterion 3.1.1 | | :white_check_mark: pass | +| image-alt | Images must have alternative text | WCAG 2.0 Level A; Success Criterion 1.1.1 | 25 | :x: fail | +| image-redundant-alt | Alternative text of images should not be repeated as text | — | | :white_check_mark: pass | +| landmark-banner-is-top-level | Banner landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-contentinfo-is-top-level | Contentinfo landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-main-is-top-level | Main landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-banner | Document should not have more than one banner landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-contentinfo | Document should not have more than one contentinfo landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-main | Document should not have more than one main landmark | — | | :white_check_mark: pass | +| landmark-one-main | Document should have one main landmark | — | | :white_check_mark: pass | +| landmark-unique | Landmarks should have a unique role or role/label/title (i.e. accessible name) combination | — | | :white_check_mark: pass | +| link-name | Links must have discernible text | WCAG 2.0 Level A; Success Criterion 2.4.4; Success Criterion 4.1.2 | | :white_check_mark: pass | +| list | `<ul>` and `<ol>` must only directly contain `<li>`, `<script>` or `<template>` elements | WCAG 2.0 Level A; Success Criterion 1.3.1 | 1 | :x: fail | +| listitem | `<li>` elements must be contained in a `<ul>` or `<ol>` | WCAG 2.0 Level A; Success Criterion 1.3.1 | | :white_check_mark: pass | +| meta-viewport | Zooming and scaling must not be disabled | WCAG 2.0 Level AA; Success Criterion 1.4.4 | | :white_check_mark: pass | +| meta-viewport-large | Users should be able to zoom and scale the text up to 500% | — | | :white_check_mark: pass | +| nested-interactive | Interactive controls must not be nested | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| page-has-heading-one | Page should contain a level-one heading | — | 1 | :x: fail | +| presentation-role-conflict | Elements marked as presentational should be consistently ignored | — | | :white_check_mark: pass | +| region | All page content should be contained by landmarks | — | | :white_check_mark: pass | +| skip-link | The skip-link target should exist and be focusable | — | | :white_check_mark: pass | +| target-size | All touch targets must be 24px large, or leave sufficient space | WCAG 2.2 Level AA; Success Criterion 2.5.8 | 14 | :x: fail | + +--- + +## Details by URL + +## Failure summary reference + +Each issue in the details below links to one of these summaries. + +<span id="color-contrast"></span> +### Failure color-contrast (13) + +**Related WCAG criteria:** + +- WCAG 2.0 Level AA +- Success Criterion 1.4.3 + +- Element has insufficient color contrast. + +<span id="empty-heading"></span> +### Failure empty-heading (1) + +- Element does not have text that is visible to screen readers +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute + +<span id="heading-order"></span> +### Failure heading-order (1) + +- Heading order invalid + +<span id="image-alt"></span> +### Failure image-alt (25) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 1.1.1 + +- Element does not have an alt attribute +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="list"></span> +### Failure list (1) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 1.3.1 + +- List element has direct children that are not allowed: h2 + +<span id="page-has-heading-one"></span> +### Failure page-has-heading-one (1) + +- Page must have a level-one heading + +<span id="target-size"></span> +### Failure target-size (14) + +**Related WCAG criteria:** + +- WCAG 2.2 Level AA +- Success Criterion 2.5.8 + +- Target has insufficient size + +--- + +## Results + +| Page | Rule | Impact | Selector | HTML | Issue ref | +| --- | --- | --- | --- | --- | --- | +| [Press Home](http://localhost:8000/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [Press Home](http://localhost:8000/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(2)` | `<a class="button" style="background-color: #2374e1;" href="https://www.facebook.com/OpenLibHums" target="_blank"> Facebook</a>` | [Failure color-contrast](#color-contrast) | +| [Press Home](http://localhost:8000/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [Press Home](http://localhost:8000/) | [empty-heading](https://dequeuniversity.com/rules/axe/4.11/empty-heading?application=playwright) | minor | `.title` | `<h2 class="title text-center"> </h2>` | [Failure empty-heading](#empty-heading) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(1) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/4318b0e9-7fe0-458e-b581-47a8272445ff.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(2) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/d51381e2-1e9d-43af-8a16-426ebd422c2b.png">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(3) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/2f229b0f-fe4b-4305-8ef8-d79605b9a39a.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(4) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/d1f92d18-6e26-416a-8ddc-e4e064e74e0e.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(5) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/e051960a-9ce2-4b67-bdb0-8e5c0802a702.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(6) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/9501ef33-cd65-4af1-b8e7-17af621e56e0.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(7) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/7ff745d8-348a-4e3a-a988-c4b259c59c2d.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(8) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/0cfb39c2-f06f-4d29-a37b-de44ee71fc0d.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(9) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/9cbf1eea-4add-4c66-acf2-d72f4ea77b6d.38">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(10) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/cfb0e4ce-5a9f-492d-8461-802e02eebe51.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(11) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/f78bdc5d-9e23-40bd-8db8-5e63d598f8a0.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(12) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/1de2f639-9b01-4892-9d15-86632a5b1e53.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(13) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/4f538326-d67e-49f5-a01f-03bd86921b74.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(14) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/cb49fae9-7091-4314-ac3f-838cb9797965.png">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(15) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/6815d33a-4ccf-49f5-9897-2d9f19623a1c.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(16) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/cb7b88b7-f019-4c75-9448-18a1f07cb794">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(17) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/f587b2c3-7c94-4b9f-bc62-f740906c4586.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(18) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/2b0cf43f-492c-4d69-93aa-2113adce0120.png">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(19) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/a9f5bb3d-0647-4be7-8bc7-e9fcf684a03a.png">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(20) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/402a83ca-d270-42a8-a0bf-a9bc2cbd7da4.png">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(21) > .card > .card-img-top` | `<img class="card-img-top img-fluid" src=" /media/cover_images/78d30292-9373-45ca-a179-2abbb4ca2a3a.jpg">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-3 > .top-bar-image[src$="cover/"]` | `<img src="/press/cover/" class="top-bar-image img-fluid">` | [Failure image-alt](#image-alt) | +| [Press Home](http://localhost:8000/) | [page-has-heading-one](https://dequeuniversity.com/rules/axe/4.11/page-has-heading-one?application=playwright) | moderate | `html` | `<html lang="en-us">` | [Failure page-has-heading-one](#page-has-heading-one) | +| [404/](http://localhost:8000/404/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [404/](http://localhost:8000/404/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(2)` | `<a class="button" style="background-color: #2374e1;" href="https://www.facebook.com/OpenLibHums" target="_blank"> Facebook</a>` | [Failure color-contrast](#color-contrast) | +| [404/](http://localhost:8000/404/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [404/](http://localhost:8000/404/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-3 > img` | `<img src="/press/cover/" class="top-bar-image img-fluid">` | [Failure image-alt](#image-alt) | +| [journals/](http://localhost:8000/journals/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [journals/](http://localhost:8000/journals/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(2)` | `<a class="button" style="background-color: #2374e1;" href="https://www.facebook.com/OpenLibHums" target="_blank"> Facebook</a>` | [Failure color-contrast](#color-contrast) | +| [journals/](http://localhost:8000/journals/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [journals/](http://localhost:8000/journals/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-3 > .top-bar-image[src$="cover/"]` | `<img src="/press/cover/" class="top-bar-image img-fluid">` | [Failure image-alt](#image-alt) | +| [contact/](http://localhost:8000/contact/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [contact/](http://localhost:8000/contact/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(2)` | `<a class="button" style="background-color: #2374e1;" href="https://www.facebook.com/OpenLibHums" target="_blank"> Facebook</a>` | [Failure color-contrast](#color-contrast) | +| [contact/](http://localhost:8000/contact/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [contact/](http://localhost:8000/contact/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-3 > img` | `<img src="/press/cover/" class="top-bar-image img-fluid">` | [Failure image-alt](#image-alt) | +| [olh/](http://localhost:8000/olh/) | [heading-order](https://dequeuniversity.com/rules/axe/4.11/heading-order?application=playwright) | moderate | `.card-body > h4` | `<h4 class="">History of the Journal</h4>` | [Failure heading-order](#heading-order) | +| [olh/site/author-guidelines/](http://localhost:8000/olh/site/author-guidelines/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(15) > a:nth-child(3)` | `<a href="https://olh.openlibhums.org/help/view/editorial/topic/000044">.</a>` | [Failure target-size](#target-size) | +| [olh/submissions/](http://localhost:8000/olh/submissions/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `li:nth-child(9) > a[target="_blank"]` | `<a href="/help/view/editorial/topic/000044" target="_blank">.</a>` | [Failure target-size](#target-size) | +| [olh/news/429/](http://localhost:8000/olh/news/429/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.badge` | `<a href="/olh/news/tag/Digital%20Humanities/" class="badge badge-secondary badge-pill "> Digital Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n3-nm1` | `<a class="xref-fn" href="#n3" id="n3-nm1"><sup>3</sup></a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n36-nm1` | `<a class="xref-fn" href="#n36" id="n36-nm1"><sup>36</sup></a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n1-nm1"]` | `<a class="footnotemarker" href="#n1-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n3-nm1"]` | `<a class="footnotemarker" href="#n3-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n4-nm1"]` | `<a class="footnotemarker" href="#n4-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n8-nm1"]` | `<a class="footnotemarker" href="#n8-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n9-nm1"]` | `<a class="footnotemarker" href="#n9-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n12-nm1"]` | `<a class="footnotemarker" href="#n12-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n14-nm1"]` | `<a class="footnotemarker" href="#n14-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n16-nm1"]` | `<a class="footnotemarker" href="#n16-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n27-nm1"]` | `<a class="footnotemarker" href="#n27-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n34-nm1"]` | `<a class="footnotemarker" href="#n34-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4405/](http://localhost:8000/olh/article/id/4405/) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `#reflist > ul` | `<ul>` | [Failure list](#list) | diff --git a/a11y/results/markdown/clarity-evergreen.md b/a11y/results/markdown/clarity-evergreen.md new file mode 100644 index 0000000..5309db3 --- /dev/null +++ b/a11y/results/markdown/clarity-evergreen.md @@ -0,0 +1,210 @@ +# Clarity (Evergreen) Accessibility report (WCAG 2.2) + +**URLs tested:** 23 +**URLs passing (no violations):** 14 +**URLs with violations:** 9 +**Total rule violations:** 17 +**Total failing elements (nodes):** 42 + +## Summary by URL + +| URL | Errors | Status | +| --- | --- | --- | +| http://localhost:8000/ | 12 | :x: fail | +| http://localhost:8000/404/ | 4 | :x: fail | +| http://localhost:8000/journals/ | 5 | :x: fail | +| http://localhost:8000/contact/ | 5 | :x: fail | +| http://localhost:8000/olh/ | 1 | :x: fail | +| http://localhost:8000/olh/accessibility/ | | :white_check_mark: pass | +| http://localhost:8000/olh/contact/ | | :white_check_mark: pass | +| http://localhost:8000/olh/editorialteam/ | | :white_check_mark: pass | +| http://localhost:8000/olh/search/ | | :white_check_mark: pass | +| http://localhost:8000/olh/site/about/ | | :white_check_mark: pass | +| http://localhost:8000/olh/site/author-guidelines/ | 1 | :x: fail | +| http://localhost:8000/olh/site/journal-policies/ | | :white_check_mark: pass | +| http://localhost:8000/olh/submissions/ | 1 | :x: fail | +| http://localhost:8000/olh/issues/ | | :white_check_mark: pass | +| http://localhost:8000/olh/issue/402/info/ | | :white_check_mark: pass | +| http://localhost:8000/olh/issue/409/info/ | | :white_check_mark: pass | +| http://localhost:8000/olh/collections/ | | :white_check_mark: pass | +| http://localhost:8000/olh/collections/846/ | | :white_check_mark: pass | +| http://localhost:8000/olh/news/ | | :white_check_mark: pass | +| http://localhost:8000/olh/news/429/ | | :white_check_mark: pass | +| http://localhost:8000/olh/articles/ | | :white_check_mark: pass | +| http://localhost:8000/olh/article/id/4403/ | 12 | :x: fail | +| http://localhost:8000/olh/article/id/4405/ | 1 | :x: fail | + +## Rules run and results + +All rules executed in this run (WCAG 2.2 Level A and AA, ACT). Status indicates whether the rule had any violations across the tested URLs. + +| Rule ID | Description | WCAG criteria | Errors | Status | +| --- | --- | --- | --- | --- | +| aria-allowed-attr | Elements must only use supported ARIA attributes | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-allowed-role | ARIA role should be appropriate for the element | — | | :white_check_mark: pass | +| aria-conditional-attr | ARIA attributes must be used as specified for the element's role | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-deprecated-role | Deprecated ARIA roles must not be used | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-hidden-body | aria-hidden="true" must not be present on the document body | WCAG 2.0 Level A; Success Criterion 1.3.1; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-hidden-focus | ARIA hidden element must not be focusable or contain focusable elements | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-prohibited-attr | Elements must only use permitted ARIA attributes | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-required-attr | Required ARIA attributes must be provided | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-roles | ARIA roles used must conform to valid values | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-valid-attr | ARIA attributes must conform to valid names | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-valid-attr-value | ARIA attributes must conform to valid values | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| avoid-inline-spacing | Inline text spacing must be adjustable with custom stylesheets | WCAG 2.1 Level AA | | :white_check_mark: pass | +| button-name | Buttons must have discernible text | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| bypass | Page must have means to bypass repeated blocks | WCAG 2.0 Level A; Success Criterion 2.4.1 | | :white_check_mark: pass | +| color-contrast | Elements must meet minimum color contrast ratio thresholds | WCAG 2.0 Level AA; Success Criterion 1.4.3 | | :white_check_mark: pass | +| document-title | Documents must have `<title>` element to aid in navigation | WCAG 2.0 Level A; Success Criterion 2.4.2 | 1 | :x: fail | +| duplicate-id-aria | IDs used in ARIA and labels must be unique | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| empty-heading | Headings should not be empty | — | | :white_check_mark: pass | +| form-field-multiple-labels | Form field must not have multiple label elements | WCAG 2.0 Level A; Success Criterion 3.3.2 | | :white_check_mark: pass | +| heading-order | Heading levels should only increase by one | — | 1 | :x: fail | +| html-has-lang | `<html>` element must have a lang attribute | WCAG 2.0 Level A; Success Criterion 3.1.1 | | :white_check_mark: pass | +| html-lang-valid | `<html>` element must have a valid value for the lang attribute | WCAG 2.0 Level A; Success Criterion 3.1.1 | | :white_check_mark: pass | +| image-alt | Images must have alternative text | WCAG 2.0 Level A; Success Criterion 1.1.1 | | :white_check_mark: pass | +| image-redundant-alt | Alternative text of images should not be repeated as text | — | | :white_check_mark: pass | +| label | Form elements must have labels | WCAG 2.0 Level A; Success Criterion 4.1.2 | 1 | :x: fail | +| label-title-only | Form elements should have a visible label | — | | :white_check_mark: pass | +| landmark-banner-is-top-level | Banner landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-complementary-is-top-level | Aside should not be contained in another landmark | — | 10 | :x: fail | +| landmark-contentinfo-is-top-level | Contentinfo landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-main-is-top-level | Main landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-banner | Document should not have more than one banner landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-contentinfo | Document should not have more than one contentinfo landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-main | Document should not have more than one main landmark | — | | :white_check_mark: pass | +| landmark-one-main | Document should have one main landmark | — | | :white_check_mark: pass | +| landmark-unique | Landmarks should have a unique role or role/label/title (i.e. accessible name) combination | — | 6 | :x: fail | +| link-name | Links must have discernible text | WCAG 2.0 Level A; Success Criterion 2.4.4; Success Criterion 4.1.2 | | :white_check_mark: pass | +| list | `<ul>` and `<ol>` must only directly contain `<li>`, `<script>` or `<template>` elements | WCAG 2.0 Level A; Success Criterion 1.3.1 | 1 | :x: fail | +| listitem | `<li>` elements must be contained in a `<ul>` or `<ol>` | WCAG 2.0 Level A; Success Criterion 1.3.1 | | :white_check_mark: pass | +| meta-viewport | Zooming and scaling must not be disabled | WCAG 2.0 Level AA; Success Criterion 1.4.4 | | :white_check_mark: pass | +| meta-viewport-large | Users should be able to zoom and scale the text up to 500% | — | | :white_check_mark: pass | +| nested-interactive | Interactive controls must not be nested | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| page-has-heading-one | Page should contain a level-one heading | — | | :white_check_mark: pass | +| presentation-role-conflict | Elements marked as presentational should be consistently ignored | — | 8 | :x: fail | +| region | All page content should be contained by landmarks | — | | :white_check_mark: pass | +| target-size | All touch targets must be 24px large, or leave sufficient space | WCAG 2.2 Level AA; Success Criterion 2.5.8 | 14 | :x: fail | + +--- + +## Details by URL + +## Failure summary reference + +Each issue in the details below links to one of these summaries. + +<span id="document-title"></span> +### Failure document-title (1) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 2.4.2 + +- Document does not have a non-empty `<title>` element + +<span id="heading-order"></span> +### Failure heading-order (1) + +- Heading order invalid + +<span id="label"></span> +### Failure label (1) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 4.1.2 + +- Element does not have an implicit (wrapped) `<label>` +- Element does not have an explicit `<label>` +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element has no placeholder attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="landmark-complementary-is-top-level"></span> +### Failure landmark-complementary-is-top-level (10) + +- The null landmark is contained in another landmark. + +<span id="landmark-unique"></span> +### Failure landmark-unique (6) + +- The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable + +<span id="list"></span> +### Failure list (1) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 1.3.1 + +- List element has direct children that are not allowed: h2 + +<span id="presentation-role-conflict"></span> +### Failure presentation-role-conflict (8) + +- Element does not have global ARIA attribute + +<span id="target-size"></span> +### Failure target-size (14) + +**Related WCAG criteria:** + +- WCAG 2.2 Level AA +- Success Criterion 2.5.8 + +- Target has insufficient size + +--- + +## Results + +| Page | Rule | Impact | Selector | HTML | Issue ref | +| --- | --- | --- | --- | --- | --- | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.motion-reduce\:-bottom-64` | `<aside class=" motion-reduce:-bottom-64 max-lg:motion-safe:-bottom-12 lg:motion-safe:-bottom-36 motion-safe:rallax z-0 relative left-2 ">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.-right-24` | `<aside class=" z-10 relative -right-24 motion-safe:-top-32 motion-reduce:-top-12 motion-safe:rallax "> <img class="lg:hidden absolute z-0 w-96 top-0 right-0" src="/static/hourglass/media/backgrounds/c…` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.-left-20` | `<aside class="z-0 relative -left-20 -bottom-48 motion-safe:rallax"> <img class="max-lg:hidden absolute z-0 w-96 bottom-0 left-0" src="/static/hourglass/media/backgrounds/circle-blue-textured.png" widt…` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.motion-reduce\:-bottom-12` | `<aside class=" max-lg:hidden z-0 relative -right-12 motion-reduce:-bottom-12 motion-safe:bottom-24 motion-safe:rallax ">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.max-lg\:right-0` | `<aside class=" z-0 relative motion-safe:rallax max-lg:right-0 lg:left-28 max-lg:top-0 lg:motion-reduce:top-72 lg:motion-safe:top-28 ">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.max-lg\:-top-32` | `<aside class="z-0 relative max-lg:-top-32 lg:-top-56 -right-20 motion-safe:rallax"> <img class="max-lg:hidden absolute z-0 w-96 top-0 right-0" src="/static/hourglass/media/backgrounds/circle-blue-text…` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.max-lg\:mt-48 > .-bottom-12.-right-12` | `<aside class="z-0 relative -right-12 -bottom-12 motion-safe:rallax"> <img class="lg:hidden absolute w-96 -left-40 -bottom-48" src="/static/hourglass/media/backgrounds/circle-blue-textured.png" width="…` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.lg\:-bottom-32` | `<aside class="relative lg:-left-16 lg:-bottom-32 motion-safe:rallax">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `.group\/top` | `<nav class="max-lg:hidden group/top">` | [Failure landmark-unique](#landmark-unique) | +| [Results](http://localhost:8000/) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `.glide__slide--active.glide__slide.justify-center > section[aria-label="Quote"]` | `<section aria-label="Quote">` | [Failure landmark-unique](#landmark-unique) | +| [Results](http://localhost:8000/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="a11y-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/accessible.svg" aria-labelledby="a11y-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [Results](http://localhost:8000/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="mobile-account-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/account.svg" aria-labelledby="mobile-account-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [404/](http://localhost:8000/404/) | [document-title](https://dequeuniversity.com/rules/axe/4.11/document-title?application=playwright) | serious | `html` | `<html lang="en-GB" class="overflow-x-clip scroll-pt-36">` | [Failure document-title](#document-title) | +| [404/](http://localhost:8000/404/) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `.group\/top` | `<nav class="max-lg:hidden group/top">` | [Failure landmark-unique](#landmark-unique) | +| [404/](http://localhost:8000/404/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="a11y-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/accessible.svg" aria-labelledby="a11y-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [404/](http://localhost:8000/404/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="mobile-account-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/account.svg" aria-labelledby="mobile-account-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [journals/](http://localhost:8000/journals/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.motion-safe\:bottom-0` | `<aside class=" z-0 relative left-0 motion-reduce:-bottom-24 motion-safe:bottom-0 motion-safe:rallax ">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [journals/](http://localhost:8000/journals/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.lg\:-left-16` | `<aside class="relative lg:-left-16 lg:-bottom-32 motion-safe:rallax">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [journals/](http://localhost:8000/journals/) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `.group\/top` | `<nav class="max-lg:hidden group/top">` | [Failure landmark-unique](#landmark-unique) | +| [journals/](http://localhost:8000/journals/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="a11y-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/accessible.svg" aria-labelledby="a11y-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [journals/](http://localhost:8000/journals/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="mobile-account-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/account.svg" aria-labelledby="mobile-account-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [contact/](http://localhost:8000/contact/) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#id_captcha_0` | `<input type="text" name="captcha_0" size="5" class=" ..." required="" id="id_captcha_0">` | [Failure label](#label) | +| [contact/](http://localhost:8000/contact/) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `.group\/top` | `<nav class="max-lg:hidden group/top">` | [Failure landmark-unique](#landmark-unique) | +| [contact/](http://localhost:8000/contact/) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `.max-lg\:-top-72` | `<aside class=" relative max-lg:-top-72 lg:-top-24 max-lg:right-0 lg:-right-20 xl:-right-32 ">` | [Failure landmark-unique](#landmark-unique) | +| [contact/](http://localhost:8000/contact/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="a11y-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/accessible.svg" aria-labelledby="a11y-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [contact/](http://localhost:8000/contact/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="mobile-account-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/account.svg" aria-labelledby="mobile-account-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [olh/](http://localhost:8000/olh/) | [heading-order](https://dequeuniversity.com/rules/axe/4.11/heading-order?application=playwright) | moderate | `.card-body > h4` | `<h4 class="">History of the Journal</h4>` | [Failure heading-order](#heading-order) | +| [olh/site/author-guidelines/](http://localhost:8000/olh/site/author-guidelines/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(15) > a:nth-child(3)` | `<a href="https://olh.openlibhums.org/help/view/editorial/topic/000044">.</a>` | [Failure target-size](#target-size) | +| [olh/submissions/](http://localhost:8000/olh/submissions/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `li:nth-child(9) > a[target="_blank"]` | `<a href="/help/view/editorial/topic/000044" target="_blank">.</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n3-nm1` | `<a class="xref-fn" href="#n3" id="n3-nm1"><sup>3</sup></a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n36-nm1` | `<a class="xref-fn" href="#n36" id="n36-nm1"><sup>36</sup></a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n1-nm1"]` | `<a class="footnotemarker" href="#n1-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n3-nm1"]` | `<a class="footnotemarker" href="#n3-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n4-nm1"]` | `<a class="footnotemarker" href="#n4-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n8-nm1"]` | `<a class="footnotemarker" href="#n8-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n9-nm1"]` | `<a class="footnotemarker" href="#n9-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n12-nm1"]` | `<a class="footnotemarker" href="#n12-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n14-nm1"]` | `<a class="footnotemarker" href="#n14-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n16-nm1"]` | `<a class="footnotemarker" href="#n16-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n27-nm1"]` | `<a class="footnotemarker" href="#n27-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n34-nm1"]` | `<a class="footnotemarker" href="#n34-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4405/](http://localhost:8000/olh/article/id/4405/) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `#reflist > ul` | `<ul>` | [Failure list](#list) | diff --git a/a11y/results/markdown/clarity-ocean.md b/a11y/results/markdown/clarity-ocean.md new file mode 100644 index 0000000..336b956 --- /dev/null +++ b/a11y/results/markdown/clarity-ocean.md @@ -0,0 +1,222 @@ +# Clarity (Ocean) Accessibility report (WCAG 2.2) + +**URLs tested:** 23 +**URLs passing (no violations):** 13 +**URLs with violations:** 10 +**Total rule violations:** 19 +**Total failing elements (nodes):** 44 + +## Summary by URL + +| URL | Errors | Status | +| --- | --- | --- | +| http://localhost:8000/ | 12 | :x: fail | +| http://localhost:8000/404/ | 4 | :x: fail | +| http://localhost:8000/journals/ | 5 | :x: fail | +| http://localhost:8000/contact/ | 5 | :x: fail | +| http://localhost:8000/olh/ | 1 | :x: fail | +| http://localhost:8000/olh/accessibility/ | | :white_check_mark: pass | +| http://localhost:8000/olh/contact/ | | :white_check_mark: pass | +| http://localhost:8000/olh/editorialteam/ | | :white_check_mark: pass | +| http://localhost:8000/olh/search/ | | :white_check_mark: pass | +| http://localhost:8000/olh/site/about/ | | :white_check_mark: pass | +| http://localhost:8000/olh/site/author-guidelines/ | 1 | :x: fail | +| http://localhost:8000/olh/site/journal-policies/ | | :white_check_mark: pass | +| http://localhost:8000/olh/submissions/ | 1 | :x: fail | +| http://localhost:8000/olh/issues/ | | :white_check_mark: pass | +| http://localhost:8000/olh/issue/402/info/ | | :white_check_mark: pass | +| http://localhost:8000/olh/issue/409/info/ | | :white_check_mark: pass | +| http://localhost:8000/olh/collections/ | | :white_check_mark: pass | +| http://localhost:8000/olh/collections/846/ | | :white_check_mark: pass | +| http://localhost:8000/olh/news/ | | :white_check_mark: pass | +| http://localhost:8000/olh/news/429/ | 1 | :x: fail | +| http://localhost:8000/olh/articles/ | | :white_check_mark: pass | +| http://localhost:8000/olh/article/id/4403/ | 13 | :x: fail | +| http://localhost:8000/olh/article/id/4405/ | 1 | :x: fail | + +## Rules run and results + +All rules executed in this run (WCAG 2.2 Level A and AA, ACT). Status indicates whether the rule had any violations across the tested URLs. + +| Rule ID | Description | WCAG criteria | Errors | Status | +| --- | --- | --- | --- | --- | +| aria-allowed-attr | Elements must only use supported ARIA attributes | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-allowed-role | ARIA role should be appropriate for the element | — | | :white_check_mark: pass | +| aria-conditional-attr | ARIA attributes must be used as specified for the element's role | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-deprecated-role | Deprecated ARIA roles must not be used | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-hidden-body | aria-hidden="true" must not be present on the document body | WCAG 2.0 Level A; Success Criterion 1.3.1; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-hidden-focus | ARIA hidden element must not be focusable or contain focusable elements | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-prohibited-attr | Elements must only use permitted ARIA attributes | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-required-attr | Required ARIA attributes must be provided | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-roles | ARIA roles used must conform to valid values | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-valid-attr | ARIA attributes must conform to valid names | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-valid-attr-value | ARIA attributes must conform to valid values | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| avoid-inline-spacing | Inline text spacing must be adjustable with custom stylesheets | WCAG 2.1 Level AA | | :white_check_mark: pass | +| button-name | Buttons must have discernible text | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| bypass | Page must have means to bypass repeated blocks | WCAG 2.0 Level A; Success Criterion 2.4.1 | | :white_check_mark: pass | +| color-contrast | Elements must meet minimum color contrast ratio thresholds | WCAG 2.0 Level AA; Success Criterion 1.4.3 | 2 | :x: fail | +| document-title | Documents must have `<title>` element to aid in navigation | WCAG 2.0 Level A; Success Criterion 2.4.2 | 1 | :x: fail | +| duplicate-id-aria | IDs used in ARIA and labels must be unique | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| empty-heading | Headings should not be empty | — | | :white_check_mark: pass | +| form-field-multiple-labels | Form field must not have multiple label elements | WCAG 2.0 Level A; Success Criterion 3.3.2 | | :white_check_mark: pass | +| heading-order | Heading levels should only increase by one | — | 1 | :x: fail | +| html-has-lang | `<html>` element must have a lang attribute | WCAG 2.0 Level A; Success Criterion 3.1.1 | | :white_check_mark: pass | +| html-lang-valid | `<html>` element must have a valid value for the lang attribute | WCAG 2.0 Level A; Success Criterion 3.1.1 | | :white_check_mark: pass | +| image-alt | Images must have alternative text | WCAG 2.0 Level A; Success Criterion 1.1.1 | | :white_check_mark: pass | +| image-redundant-alt | Alternative text of images should not be repeated as text | — | | :white_check_mark: pass | +| label | Form elements must have labels | WCAG 2.0 Level A; Success Criterion 4.1.2 | 1 | :x: fail | +| label-title-only | Form elements should have a visible label | — | | :white_check_mark: pass | +| landmark-banner-is-top-level | Banner landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-complementary-is-top-level | Aside should not be contained in another landmark | — | 10 | :x: fail | +| landmark-contentinfo-is-top-level | Contentinfo landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-main-is-top-level | Main landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-banner | Document should not have more than one banner landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-contentinfo | Document should not have more than one contentinfo landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-main | Document should not have more than one main landmark | — | | :white_check_mark: pass | +| landmark-one-main | Document should have one main landmark | — | | :white_check_mark: pass | +| landmark-unique | Landmarks should have a unique role or role/label/title (i.e. accessible name) combination | — | 6 | :x: fail | +| link-name | Links must have discernible text | WCAG 2.0 Level A; Success Criterion 2.4.4; Success Criterion 4.1.2 | | :white_check_mark: pass | +| list | `<ul>` and `<ol>` must only directly contain `<li>`, `<script>` or `<template>` elements | WCAG 2.0 Level A; Success Criterion 1.3.1 | 1 | :x: fail | +| listitem | `<li>` elements must be contained in a `<ul>` or `<ol>` | WCAG 2.0 Level A; Success Criterion 1.3.1 | | :white_check_mark: pass | +| meta-viewport | Zooming and scaling must not be disabled | WCAG 2.0 Level AA; Success Criterion 1.4.4 | | :white_check_mark: pass | +| meta-viewport-large | Users should be able to zoom and scale the text up to 500% | — | | :white_check_mark: pass | +| nested-interactive | Interactive controls must not be nested | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| page-has-heading-one | Page should contain a level-one heading | — | | :white_check_mark: pass | +| presentation-role-conflict | Elements marked as presentational should be consistently ignored | — | 8 | :x: fail | +| region | All page content should be contained by landmarks | — | | :white_check_mark: pass | +| target-size | All touch targets must be 24px large, or leave sufficient space | WCAG 2.2 Level AA; Success Criterion 2.5.8 | 14 | :x: fail | + +--- + +## Details by URL + +## Failure summary reference + +Each issue in the details below links to one of these summaries. + +<span id="color-contrast"></span> +### Failure color-contrast (2) + +**Related WCAG criteria:** + +- WCAG 2.0 Level AA +- Success Criterion 1.4.3 + +- Element has insufficient color contrast. + +<span id="document-title"></span> +### Failure document-title (1) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 2.4.2 + +- Document does not have a non-empty `<title>` element + +<span id="heading-order"></span> +### Failure heading-order (1) + +- Heading order invalid + +<span id="label"></span> +### Failure label (1) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 4.1.2 + +- Element does not have an implicit (wrapped) `<label>` +- Element does not have an explicit `<label>` +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element has no placeholder attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="landmark-complementary-is-top-level"></span> +### Failure landmark-complementary-is-top-level (10) + +- The null landmark is contained in another landmark. + +<span id="landmark-unique"></span> +### Failure landmark-unique (6) + +- The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable + +<span id="list"></span> +### Failure list (1) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 1.3.1 + +- List element has direct children that are not allowed: h2 + +<span id="presentation-role-conflict"></span> +### Failure presentation-role-conflict (8) + +- Element does not have global ARIA attribute + +<span id="target-size"></span> +### Failure target-size (14) + +**Related WCAG criteria:** + +- WCAG 2.2 Level AA +- Success Criterion 2.5.8 + +- Target has insufficient size + +--- + +## Results + +| Page | Rule | Impact | Selector | HTML | Issue ref | +| --- | --- | --- | --- | --- | --- | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.motion-reduce\:-bottom-64` | `<aside class=" motion-reduce:-bottom-64 max-lg:motion-safe:-bottom-12 lg:motion-safe:-bottom-36 motion-safe:rallax z-0 relative left-2 ">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.-right-24` | `<aside class=" z-10 relative -right-24 motion-safe:-top-32 motion-reduce:-top-12 motion-safe:rallax "> <img class="lg:hidden absolute z-0 w-96 top-0 right-0" src="/static/hourglass/media/backgrounds/c…` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.-left-20` | `<aside class="z-0 relative -left-20 -bottom-48 motion-safe:rallax"> <img class="max-lg:hidden absolute z-0 w-96 bottom-0 left-0" src="/static/hourglass/media/backgrounds/circle-blue-textured.png" widt…` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.motion-reduce\:-bottom-12` | `<aside class=" max-lg:hidden z-0 relative -right-12 motion-reduce:-bottom-12 motion-safe:bottom-24 motion-safe:rallax ">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.max-lg\:right-0` | `<aside class=" z-0 relative motion-safe:rallax max-lg:right-0 lg:left-28 max-lg:top-0 lg:motion-reduce:top-72 lg:motion-safe:top-28 ">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.max-lg\:-top-32` | `<aside class="z-0 relative max-lg:-top-32 lg:-top-56 -right-20 motion-safe:rallax"> <img class="max-lg:hidden absolute z-0 w-96 top-0 right-0" src="/static/hourglass/media/backgrounds/circle-blue-text…` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.max-lg\:mt-48 > .-bottom-12.-right-12` | `<aside class="z-0 relative -right-12 -bottom-12 motion-safe:rallax"> <img class="lg:hidden absolute w-96 -left-40 -bottom-48" src="/static/hourglass/media/backgrounds/circle-blue-textured.png" width="…` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.lg\:-bottom-32` | `<aside class="relative lg:-left-16 lg:-bottom-32 motion-safe:rallax">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [Results](http://localhost:8000/) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `.group\/top` | `<nav class="max-lg:hidden group/top">` | [Failure landmark-unique](#landmark-unique) | +| [Results](http://localhost:8000/) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `.glide__slide--active.glide__slide.justify-center > section[aria-label="Quote"]` | `<section aria-label="Quote">` | [Failure landmark-unique](#landmark-unique) | +| [Results](http://localhost:8000/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="a11y-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/accessible.svg" aria-labelledby="a11y-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [Results](http://localhost:8000/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="mobile-account-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/account.svg" aria-labelledby="mobile-account-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [404/](http://localhost:8000/404/) | [document-title](https://dequeuniversity.com/rules/axe/4.11/document-title?application=playwright) | serious | `html` | `<html lang="en-GB" class="overflow-x-clip scroll-pt-36">` | [Failure document-title](#document-title) | +| [404/](http://localhost:8000/404/) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `.group\/top` | `<nav class="max-lg:hidden group/top">` | [Failure landmark-unique](#landmark-unique) | +| [404/](http://localhost:8000/404/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="a11y-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/accessible.svg" aria-labelledby="a11y-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [404/](http://localhost:8000/404/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="mobile-account-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/account.svg" aria-labelledby="mobile-account-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [journals/](http://localhost:8000/journals/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.motion-safe\:bottom-0` | `<aside class=" z-0 relative left-0 motion-reduce:-bottom-24 motion-safe:bottom-0 motion-safe:rallax ">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [journals/](http://localhost:8000/journals/) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.lg\:-left-16` | `<aside class="relative lg:-left-16 lg:-bottom-32 motion-safe:rallax">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [journals/](http://localhost:8000/journals/) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `.group\/top` | `<nav class="max-lg:hidden group/top">` | [Failure landmark-unique](#landmark-unique) | +| [journals/](http://localhost:8000/journals/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="a11y-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/accessible.svg" aria-labelledby="a11y-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [journals/](http://localhost:8000/journals/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="mobile-account-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/account.svg" aria-labelledby="mobile-account-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [contact/](http://localhost:8000/contact/) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#id_captcha_0` | `<input type="text" name="captcha_0" size="5" class=" ..." required="" id="id_captcha_0">` | [Failure label](#label) | +| [contact/](http://localhost:8000/contact/) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `.group\/top` | `<nav class="max-lg:hidden group/top">` | [Failure landmark-unique](#landmark-unique) | +| [contact/](http://localhost:8000/contact/) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `.max-lg\:-top-72` | `<aside class=" relative max-lg:-top-72 lg:-top-24 max-lg:right-0 lg:-right-20 xl:-right-32 ">` | [Failure landmark-unique](#landmark-unique) | +| [contact/](http://localhost:8000/contact/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="a11y-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/accessible.svg" aria-labelledby="a11y-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [contact/](http://localhost:8000/contact/) | [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict?application=playwright) | minor | `img[aria-labelledby="mobile-account-nav"]` | `<img class="max-lg:hidden h-8 lg:m-2" src="/static/hourglass/media/icons/account.svg" aria-labelledby="mobile-account-nav" alt="">` | [Failure presentation-role-conflict](#presentation-role-conflict) | +| [olh/](http://localhost:8000/olh/) | [heading-order](https://dequeuniversity.com/rules/axe/4.11/heading-order?application=playwright) | moderate | `.card-body > h4` | `<h4 class="">History of the Journal</h4>` | [Failure heading-order](#heading-order) | +| [olh/site/author-guidelines/](http://localhost:8000/olh/site/author-guidelines/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(15) > a:nth-child(3)` | `<a href="https://olh.openlibhums.org/help/view/editorial/topic/000044">.</a>` | [Failure target-size](#target-size) | +| [olh/submissions/](http://localhost:8000/olh/submissions/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `li:nth-child(9) > a[target="_blank"]` | `<a href="/help/view/editorial/topic/000044" target="_blank">.</a>` | [Failure target-size](#target-size) | +| [olh/news/429/](http://localhost:8000/olh/news/429/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.badge` | `<a href="/olh/news/tag/Digital%20Humanities/" class="badge badge-secondary badge-pill "> Digital Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[itemprop="email"] > span:nth-child(1)` | `<span>8346@example.org</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n3-nm1` | `<a class="xref-fn" href="#n3" id="n3-nm1"><sup>3</sup></a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n36-nm1` | `<a class="xref-fn" href="#n36" id="n36-nm1"><sup>36</sup></a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n1-nm1"]` | `<a class="footnotemarker" href="#n1-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n3-nm1"]` | `<a class="footnotemarker" href="#n3-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n4-nm1"]` | `<a class="footnotemarker" href="#n4-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n8-nm1"]` | `<a class="footnotemarker" href="#n8-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n9-nm1"]` | `<a class="footnotemarker" href="#n9-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n12-nm1"]` | `<a class="footnotemarker" href="#n12-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n14-nm1"]` | `<a class="footnotemarker" href="#n14-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n16-nm1"]` | `<a class="footnotemarker" href="#n16-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n27-nm1"]` | `<a class="footnotemarker" href="#n27-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/](http://localhost:8000/olh/article/id/4403/) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n34-nm1"]` | `<a class="footnotemarker" href="#n34-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4405/](http://localhost:8000/olh/article/id/4405/) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `#reflist > ul` | `<ul>` | [Failure list](#list) | diff --git a/a11y/results/markdown/clean.md b/a11y/results/markdown/clean.md new file mode 100644 index 0000000..7981f80 --- /dev/null +++ b/a11y/results/markdown/clean.md @@ -0,0 +1,289 @@ +# Clean Accessibility report (WCAG 2.2) + +**URLs tested:** 23 +**URLs passing (no violations):** 0 +**URLs with violations:** 23 +**Total rule violations:** 41 +**Total failing elements (nodes):** 91 + +## Summary by URL + +| URL | Errors | Status | +| --- | --- | --- | +| http://localhost:8000/?theme=clean | 28 | :x: fail | +| http://localhost:8000/404/?theme=clean | 5 | :x: fail | +| http://localhost:8000/journals/?theme=clean | 5 | :x: fail | +| http://localhost:8000/contact/?theme=clean | 6 | :x: fail | +| http://localhost:8000/olh/?theme=clean | 3 | :x: fail | +| http://localhost:8000/olh/accessibility/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/contact/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/editorialteam/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/search/?theme=clean | 8 | :x: fail | +| http://localhost:8000/olh/site/about/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 2 | :x: fail | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/submissions/?theme=clean | 2 | :x: fail | +| http://localhost:8000/olh/issues/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/collections/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/collections/846/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/news/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/news/429/?theme=clean | 1 | :x: fail | +| http://localhost:8000/olh/articles/?theme=clean | 3 | :x: fail | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 6 | :x: fail | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 11 | :x: fail | + +## Rules run and results + +All rules executed in this run (WCAG 2.2 Level A and AA, ACT). Status indicates whether the rule had any violations across the tested URLs. + +| Rule ID | Description | WCAG criteria | Errors | Status | +| --- | --- | --- | --- | --- | +| aria-allowed-attr | Elements must only use supported ARIA attributes | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-allowed-role | ARIA role should be appropriate for the element | — | | :white_check_mark: pass | +| aria-conditional-attr | ARIA attributes must be used as specified for the element's role | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-deprecated-role | Deprecated ARIA roles must not be used | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-hidden-body | aria-hidden="true" must not be present on the document body | WCAG 2.0 Level A; Success Criterion 1.3.1; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-hidden-focus | ARIA hidden element must not be focusable or contain focusable elements | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-prohibited-attr | Elements must only use permitted ARIA attributes | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-required-attr | Required ARIA attributes must be provided | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-roles | ARIA roles used must conform to valid values | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-valid-attr | ARIA attributes must conform to valid names | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-valid-attr-value | ARIA attributes must conform to valid values | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| avoid-inline-spacing | Inline text spacing must be adjustable with custom stylesheets | WCAG 2.1 Level AA | | :white_check_mark: pass | +| button-name | Buttons must have discernible text | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| bypass | Page must have means to bypass repeated blocks | WCAG 2.0 Level A; Success Criterion 2.4.1 | | :white_check_mark: pass | +| color-contrast | Elements must meet minimum color contrast ratio thresholds | WCAG 2.0 Level AA; Success Criterion 1.4.3 | 27 | :x: fail | +| document-title | Documents must have `<title>` element to aid in navigation | WCAG 2.0 Level A; Success Criterion 2.4.2 | | :white_check_mark: pass | +| duplicate-id-aria | IDs used in ARIA and labels must be unique | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| empty-heading | Headings should not be empty | — | | :white_check_mark: pass | +| heading-order | Heading levels should only increase by one | — | 1 | :x: fail | +| html-has-lang | `<html>` element must have a lang attribute | WCAG 2.0 Level A; Success Criterion 3.1.1 | | :white_check_mark: pass | +| html-lang-valid | `<html>` element must have a valid value for the lang attribute | WCAG 2.0 Level A; Success Criterion 3.1.1 | | :white_check_mark: pass | +| image-alt | Images must have alternative text | WCAG 2.0 Level A; Success Criterion 1.1.1 | 26 | :x: fail | +| image-redundant-alt | Alternative text of images should not be repeated as text | — | | :white_check_mark: pass | +| landmark-banner-is-top-level | Banner landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-contentinfo-is-top-level | Contentinfo landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-main-is-top-level | Main landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-banner | Document should not have more than one banner landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-contentinfo | Document should not have more than one contentinfo landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-main | Document should not have more than one main landmark | — | | :white_check_mark: pass | +| landmark-one-main | Document should have one main landmark | — | | :white_check_mark: pass | +| landmark-unique | Landmarks should have a unique role or role/label/title (i.e. accessible name) combination | — | 1 | :x: fail | +| link-name | Links must have discernible text | WCAG 2.0 Level A; Success Criterion 2.4.4; Success Criterion 4.1.2 | | :white_check_mark: pass | +| list | `<ul>` and `<ol>` must only directly contain `<li>`, `<script>` or `<template>` elements | WCAG 2.0 Level A; Success Criterion 1.3.1 | 21 | :x: fail | +| listitem | `<li>` elements must be contained in a `<ul>` or `<ol>` | WCAG 2.0 Level A; Success Criterion 1.3.1 | | :white_check_mark: pass | +| meta-viewport | Zooming and scaling must not be disabled | WCAG 2.0 Level AA; Success Criterion 1.4.4 | | :white_check_mark: pass | +| meta-viewport-large | Users should be able to zoom and scale the text up to 500% | — | | :white_check_mark: pass | +| nested-interactive | Interactive controls must not be nested | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| page-has-heading-one | Page should contain a level-one heading | — | 1 | :x: fail | +| region | All page content should be contained by landmarks | — | | :white_check_mark: pass | +| skip-link | The skip-link target should exist and be focusable | — | | :white_check_mark: pass | +| target-size | All touch targets must be 24px large, or leave sufficient space | WCAG 2.2 Level AA; Success Criterion 2.5.8 | 11 | :x: fail | + +--- + +## Details by URL + +## Failure summary reference + +Each issue in the details below links to one of these summaries. + +<span id="color-contrast"></span> +### Failure color-contrast (27) + +**Related WCAG criteria:** + +- WCAG 2.0 Level AA +- Success Criterion 1.4.3 + +- Element has insufficient color contrast. + +<span id="heading-order"></span> +### Failure heading-order (1) + +- Heading order invalid + +<span id="image-alt"></span> +### Failure image-alt (26) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 1.1.1 + +- Element does not have an alt attribute +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="label"></span> +### Failure label (1) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 4.1.2 + +- Element does not have an implicit (wrapped) `<label>` +- Element does not have an explicit `<label>` +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element has no placeholder attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="landmark-unique"></span> +### Failure landmark-unique (1) + +- The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable + +<span id="list-1"></span> +### Failure list 1 (19) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 1.3.1 + +- List element has direct children that are not allowed: p + +<span id="list-2"></span> +### Failure list 2 (1) + +- List element has direct children that are not allowed: ul + +<span id="list-3"></span> +### Failure list 3 (1) + +- List element has direct children that are not allowed: h2 + +<span id="page-has-heading-one"></span> +### Failure page-has-heading-one (1) + +- Page must have a level-one heading + +<span id="select-name"></span> +### Failure select-name (2) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 4.1.2 + +- Element does not have an implicit (wrapped) `<label>` +- Element does not have an explicit `<label>` +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="target-size"></span> +### Failure target-size (11) + +**Related WCAG criteria:** + +- WCAG 2.2 Level AA +- Success Criterion 2.5.8 + +- Target has insufficient size + +--- + +## Results + +| Page | Rule | Impact | Selector | HTML | Issue ref | +| --- | --- | --- | --- | --- | --- | +| [?theme=clean](http://localhost:8000/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(2)` | `<a class="button" style="background-color: #2374e1;" href="https://www.facebook.com/OpenLibHums" target="_blank"> Facebook</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(1) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/4318b0e9-7fe0-458e-b581-47a8272445ff.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(2) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/d51381e2-1e9d-43af-8a16-426ebd422c2b.png">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(3) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/2f229b0f-fe4b-4305-8ef8-d79605b9a39a.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(4) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/d1f92d18-6e26-416a-8ddc-e4e064e74e0e.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(5) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/e051960a-9ce2-4b67-bdb0-8e5c0802a702.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(6) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/9501ef33-cd65-4af1-b8e7-17af621e56e0.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(7) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/7ff745d8-348a-4e3a-a988-c4b259c59c2d.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(8) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/0cfb39c2-f06f-4d29-a37b-de44ee71fc0d.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(9) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/9cbf1eea-4add-4c66-acf2-d72f4ea77b6d.38">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(10) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/cfb0e4ce-5a9f-492d-8461-802e02eebe51.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(11) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/f78bdc5d-9e23-40bd-8db8-5e63d598f8a0.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(12) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/1de2f639-9b01-4892-9d15-86632a5b1e53.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(13) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/4f538326-d67e-49f5-a01f-03bd86921b74.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(14) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/cb49fae9-7091-4314-ac3f-838cb9797965.png">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(15) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/6815d33a-4ccf-49f5-9897-2d9f19623a1c.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(16) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/cb7b88b7-f019-4c75-9448-18a1f07cb794">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(17) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/f587b2c3-7c94-4b9f-bc62-f740906c4586.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(18) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/2b0cf43f-492c-4d69-93aa-2113adce0120.png">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(19) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/a9f5bb3d-0647-4be7-8bc7-e9fcf684a03a.png">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(20) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/402a83ca-d270-42a8-a0bf-a9bc2cbd7da4.png">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.col-md-4.row-eq-height:nth-child(21) > .card > .card-img-top.img-fluid` | `<img class="card-img-top img-fluid" src=" /media/cover_images/78d30292-9373-45ca-a179-2abbb4ca2a3a.jpg">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `a > img` | `<img class="" src="https://www.openlibhums.org/media/press/Conference_programme.png">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `#footer > .row > .col-md-2 > .top-bar-image.img-fluid[src$="cover/"]` | `<img src="/press/cover/" class="top-bar-image img-fluid">` | [Failure image-alt](#image-alt) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [page-has-heading-one](https://dequeuniversity.com/rules/axe/4.11/page-has-heading-one?application=playwright) | moderate | `html` | `<html lang="en-us">` | [Failure page-has-heading-one](#page-has-heading-one) | +| [?theme=clean](http://localhost:8000/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/accessibility/">Accessibility</a>` | [Failure target-size](#target-size) | +| [404/?theme=clean](http://localhost:8000/404/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [404/?theme=clean](http://localhost:8000/404/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(2)` | `<a class="button" style="background-color: #2374e1;" href="https://www.facebook.com/OpenLibHums" target="_blank"> Facebook</a>` | [Failure color-contrast](#color-contrast) | +| [404/?theme=clean](http://localhost:8000/404/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [404/?theme=clean](http://localhost:8000/404/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `#footer > .row > .col-md-2 > img` | `<img src="/press/cover/" class="top-bar-image img-fluid">` | [Failure image-alt](#image-alt) | +| [404/?theme=clean](http://localhost:8000/404/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/accessibility/">Accessibility</a>` | [Failure target-size](#target-size) | +| [journals/?theme=clean](http://localhost:8000/journals/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [journals/?theme=clean](http://localhost:8000/journals/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(2)` | `<a class="button" style="background-color: #2374e1;" href="https://www.facebook.com/OpenLibHums" target="_blank"> Facebook</a>` | [Failure color-contrast](#color-contrast) | +| [journals/?theme=clean](http://localhost:8000/journals/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [journals/?theme=clean](http://localhost:8000/journals/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `#footer > .row > .col-md-2 > .top-bar-image[src$="cover/"]` | `<img src="/press/cover/" class="top-bar-image img-fluid">` | [Failure image-alt](#image-alt) | +| [journals/?theme=clean](http://localhost:8000/journals/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/accessibility/">Accessibility</a>` | [Failure target-size](#target-size) | +| [contact/?theme=clean](http://localhost:8000/contact/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=clean](http://localhost:8000/contact/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(2)` | `<a class="button" style="background-color: #2374e1;" href="https://www.facebook.com/OpenLibHums" target="_blank"> Facebook</a>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=clean](http://localhost:8000/contact/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=clean](http://localhost:8000/contact/?theme=clean) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `#footer > .row > .col-md-2 > img` | `<img src="/press/cover/" class="top-bar-image img-fluid">` | [Failure image-alt](#image-alt) | +| [contact/?theme=clean](http://localhost:8000/contact/?theme=clean) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#id_captcha_0` | `<input type="text" name="captcha_0" size="5" required="" id="id_captcha_0">` | [Failure label](#label) | +| [contact/?theme=clean](http://localhost:8000/contact/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/accessibility/">Accessibility</a>` | [Failure target-size](#target-size) | +| [olh/?theme=clean](http://localhost:8000/olh/?theme=clean) | [heading-order](https://dequeuniversity.com/rules/axe/4.11/heading-order?application=playwright) | moderate | `.col-md-12 > h4` | `<h4 class="">History of the Journal</h4>` | [Failure heading-order](#heading-order) | +| [olh/?theme=clean](http://localhost:8000/olh/?theme=clean) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `section[aria-labelledby="featured-title"]` | `<section aria-labelledby="featured-title">` | [Failure landmark-unique](#landmark-unique) | +| [olh/?theme=clean](http://localhost:8000/olh/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/accessibility/?theme=clean](http://localhost:8000/olh/accessibility/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/contact/?theme=clean ](http://localhost:8000/olh/contact/?theme=clean ) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/editorialteam/?theme=clean](http://localhost:8000/olh/editorialteam/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_title"]` | `<label class="form-check-label" for="id_title">Search Titles</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_abstract"]` | `<label class="form-check-label" for="id_abstract">Search Abstract</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_authors"]` | `<label class="form-check-label" for="id_authors">Search Authors</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_keywords"]` | `<label class="form-check-label" for="id_keywords">Search Keywords</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_full_text"]` | `<label class="form-check-label" for="id_full_text">Search Full Text</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_orcid"]` | `<label class="form-check-label" for="id_orcid">Search ORCIDs</label>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.form-group:nth-child(1) > ul` | `<ul>` | [Failure list 2](#list-2) | +| [olh/search/?theme=clean](http://localhost:8000/olh/search/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/site/about/?theme=clean](http://localhost:8000/olh/site/about/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/site/author-guidelines/?theme=clean](http://localhost:8000/olh/site/author-guidelines/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/site/author-guidelines/?theme=clean](http://localhost:8000/olh/site/author-guidelines/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(15) > a:nth-child(3)` | `<a href="https://olh.openlibhums.org/help/view/editorial/topic/000044">.</a>` | [Failure target-size](#target-size) | +| [olh/site/journal-policies/?theme=clean](http://localhost:8000/olh/site/journal-policies/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/submissions/?theme=clean](http://localhost:8000/olh/submissions/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/submissions/?theme=clean](http://localhost:8000/olh/submissions/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `li:nth-child(9) > a[target="_blank"]` | `<a href="/help/view/editorial/topic/000044" target="_blank">.</a>` | [Failure target-size](#target-size) | +| [olh/issues/?theme=clean](http://localhost:8000/olh/issues/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/issue/402/info/?theme=clean](http://localhost:8000/olh/issue/402/info/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/issue/409/info/?theme=clean](http://localhost:8000/olh/issue/409/info/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/collections/?theme=clean](http://localhost:8000/olh/collections/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/collections/846/?theme=clean](http://localhost:8000/olh/collections/846/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/news/?theme=clean](http://localhost:8000/olh/news/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/news/429/?theme=clean](http://localhost:8000/olh/news/429/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/articles/?theme=clean](http://localhost:8000/olh/articles/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/articles/?theme=clean](http://localhost:8000/olh/articles/?theme=clean) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select[name="order_by"]` | `<select class="custom-select" onchange="this.form.submit()" name="order_by" form="facet_form">` | [Failure select-name](#select-name) | +| [olh/articles/?theme=clean](http://localhost:8000/olh/articles/?theme=clean) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select[name="paginate_by"]` | `<select class="custom-select" onchange="this.form.submit()" name="paginate_by" form="facet_form">` | [Failure select-name](#select-name) | +| [olh/article/id/4403/?theme=clean](http://localhost:8000/olh/article/id/4403/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | +| [olh/article/id/4403/?theme=clean](http://localhost:8000/olh/article/id/4403/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n3-nm1` | `<a class="xref-fn" href="#n3" id="n3-nm1"><sup>3</sup></a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/?theme=clean](http://localhost:8000/olh/article/id/4403/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n17-nm1` | `<a class="xref-fn" href="#n17" id="n17-nm1"><sup>17</sup></a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/?theme=clean](http://localhost:8000/olh/article/id/4403/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n36-nm1` | `<a class="xref-fn" href="#n36" id="n36-nm1"><sup>36</sup></a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/?theme=clean](http://localhost:8000/olh/article/id/4403/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n13-nm1"]` | `<a class="footnotemarker" href="#n13-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/?theme=clean](http://localhost:8000/olh/article/id/4403/?theme=clean) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n20-nm1"]` | `<a class="footnotemarker" href="#n20-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [olh/article/id/4405/?theme=clean](http://localhost:8000/olh/article/id/4405/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[data-target="#table-tab1"]` | `<button type="button" class="btn btn-link" data-toggle="modal" data-target="#table-tab1" aria-describedby="tab1-label">View Larger Table</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=clean](http://localhost:8000/olh/article/id/4405/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[data-target="#table-tab2"]` | `<button type="button" class="btn btn-link" data-toggle="modal" data-target="#table-tab2" aria-describedby="tab2-label">View Larger Table</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=clean](http://localhost:8000/olh/article/id/4405/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[data-target="#table-tab3"]` | `<button type="button" class="btn btn-link" data-toggle="modal" data-target="#table-tab3" aria-describedby="tab3-label">View Larger Table</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=clean](http://localhost:8000/olh/article/id/4405/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[data-target="#table-tab4"]` | `<button type="button" class="btn btn-link" data-toggle="modal" data-target="#table-tab4" aria-describedby="tab4-label">View Larger Table</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=clean](http://localhost:8000/olh/article/id/4405/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[data-target="#table-tab5"]` | `<button type="button" class="btn btn-link" data-toggle="modal" data-target="#table-tab5" aria-describedby="tab5-label">View Larger Table</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=clean](http://localhost:8000/olh/article/id/4405/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[data-target="#table-tab6"]` | `<button type="button" class="btn btn-link" data-toggle="modal" data-target="#table-tab6" aria-describedby="tab6-label">View Larger Table</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=clean](http://localhost:8000/olh/article/id/4405/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[data-target="#table-tab7"]` | `<button type="button" class="btn btn-link" data-toggle="modal" data-target="#table-tab7" aria-describedby="tab7-label">View Larger Table</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=clean](http://localhost:8000/olh/article/id/4405/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[data-target="#table-tab8"]` | `<button type="button" class="btn btn-link" data-toggle="modal" data-target="#table-tab8" aria-describedby="tab8-label">View Larger Table</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=clean](http://localhost:8000/olh/article/id/4405/?theme=clean) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[data-target="#table-tab9"]` | `<button type="button" class="btn btn-link" data-toggle="modal" data-target="#table-tab9" aria-describedby="tab9-label">View Larger Table</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=clean](http://localhost:8000/olh/article/id/4405/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `#reflist > ul` | `<ul>` | [Failure list 3](#list-3) | +| [olh/article/id/4405/?theme=clean](http://localhost:8000/olh/article/id/4405/?theme=clean) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.text-left > .list-inline` | `<ul class="list-inline">` | [Failure list 1](#list-1) | diff --git a/a11y/results/markdown/hourglass.md b/a11y/results/markdown/hourglass.md new file mode 100644 index 0000000..10d52ae --- /dev/null +++ b/a11y/results/markdown/hourglass.md @@ -0,0 +1,140 @@ +# Accessibility report (WCAG 2.2) + +Hourglass run locally at 048b8fd on main. + +**URLs tested:** 26 +**URLs passing (no violations):** 21 +**URLs with violations:** 5 +**Total rule violations:** 7 +**Total failing elements (nodes):** 8 + +## Summary by URL + +| URL | Errors | Status | +| --- | --- | --- | +| http://localhost:8000/ | | :white_check_mark: pass | +| http://localhost:8000/contact/ | 1 | :x: fail | +| http://localhost:8000/journals/ | | :white_check_mark: pass | +| http://localhost:8000/login/ | 1 | :x: fail | +| http://localhost:8000/news/702/ | 1 | :x: fail | +| http://localhost:8000/news/743/ | 1 | :x: fail | +| http://localhost:8000/register/step/1/ | 4 | :x: fail | +| http://localhost:8000/site/accessibility/ | | :white_check_mark: pass | +| http://localhost:8000/site/announcements-blog/ | | :white_check_mark: pass | +| http://localhost:8000/site/copyright/ | | :white_check_mark: pass | +| http://localhost:8000/site/for-editors/ | | :white_check_mark: pass | +| http://localhost:8000/site/for-librarians-consortia/ | | :white_check_mark: pass | +| http://localhost:8000/site/for-readers-authors/ | | :white_check_mark: pass | +| http://localhost:8000/site/how-we-work/ | | :white_check_mark: pass | +| http://localhost:8000/site/internships/ | | :white_check_mark: pass | +| http://localhost:8000/site/janeway/ | | :white_check_mark: pass | +| http://localhost:8000/site/newsletter-annual-reports/ | | :white_check_mark: pass | +| http://localhost:8000/site/oa-glossary/ | | :white_check_mark: pass | +| http://localhost:8000/site/open-access-movement/ | | :white_check_mark: pass | +| http://localhost:8000/site/our-team/ | | :white_check_mark: pass | +| http://localhost:8000/site/privacy/ | | :white_check_mark: pass | +| http://localhost:8000/site/publisher-policies/ | | :white_check_mark: pass | +| http://localhost:8000/site/reading-list/ | | :white_check_mark: pass | +| http://localhost:8000/site/resources/ | | :white_check_mark: pass | +| http://localhost:8000/site/what-we-do/ | | :white_check_mark: pass | +| http://localhost:8000/site/who-we-are/ | | :white_check_mark: pass | + +## Rules run and results + +All rules executed in this run (WCAG 2.2 Level A and AA, ACT). Status indicates whether the rule had any violations across the tested URLs. + +| Rule ID | Description | Errors | Status | +| --- | --- | --- | --- | +| aria-allowed-attr | Elements must only use supported ARIA attributes | | :white_check_mark: pass | +| aria-conditional-attr | ARIA attributes must be used as specified for the element's role | | :white_check_mark: pass | +| aria-deprecated-role | Deprecated ARIA roles must not be used | | :white_check_mark: pass | +| aria-hidden-body | aria-hidden="true" must not be present on the document body | | :white_check_mark: pass | +| aria-hidden-focus | ARIA hidden element must not be focusable or contain focusable elements | 1 | :x: fail | +| aria-prohibited-attr | Elements must only use permitted ARIA attributes | | :white_check_mark: pass | +| aria-required-attr | Required ARIA attributes must be provided | | :white_check_mark: pass | +| aria-roles | ARIA roles used must conform to valid values | | :white_check_mark: pass | +| aria-valid-attr | ARIA attributes must conform to valid names | | :white_check_mark: pass | +| aria-valid-attr-value | ARIA attributes must conform to valid values | | :white_check_mark: pass | +| avoid-inline-spacing | Inline text spacing must be adjustable with custom stylesheets | | :white_check_mark: pass | +| button-name | Buttons must have discernible text | | :white_check_mark: pass | +| bypass | Page must have means to bypass repeated blocks | | :white_check_mark: pass | +| color-contrast | Elements must meet minimum color contrast ratio thresholds | | :white_check_mark: pass | +| document-title | Documents must have `<title>` element to aid in navigation | | :white_check_mark: pass | +| duplicate-id-aria | IDs used in ARIA and labels must be unique | | :white_check_mark: pass | +| form-field-multiple-labels | Form field must not have multiple label elements | | :white_check_mark: pass | +| html-has-lang | `<html>` element must have a lang attribute | | :white_check_mark: pass | +| html-lang-valid | `<html>` element must have a valid value for the lang attribute | | :white_check_mark: pass | +| image-alt | Images must have alternative text | 2 | :x: fail | +| label | Form elements must have labels | 2 | :x: fail | +| link-in-text-block | Links must be distinguishable without relying on color | 2 | :x: fail | +| link-name | Links must have discernible text | | :white_check_mark: pass | +| list | `<ul>` and `<ol>` must only directly contain `<li>`, `<script>` or `<template>` elements | | :white_check_mark: pass | +| listitem | `<li>` elements must be contained in a `<ul>` or `<ol>` | | :white_check_mark: pass | +| meta-viewport | Zooming and scaling must not be disabled | | :white_check_mark: pass | +| nested-interactive | Interactive controls must not be nested | | :white_check_mark: pass | +| target-size | All touch targets must be 24px large, or leave sufficient space | | :white_check_mark: pass | + +--- + +## Details by URL + +## Failure summary reference + +Each issue in the details below links to one of these summaries. + +<span id="aria-hidden-focus"></span> +### Failure aria-hidden-focus (1) + +- Focusable content should be disabled or be removed from the DOM +- Focusable content should have tabindex="-1" or be removed from the DOM + +<span id="image-alt"></span> +### Failure image-alt (2) + +- Element does not have an alt attribute +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="label"></span> +### Failure label (2) + +- Element does not have an implicit (wrapped) `<label>` +- Element does not have an explicit `<label>` +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element has no placeholder attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="link-in-text-block"></span> +### Failure link-in-text-block (2) + +- The link has insufficient color contrast of 2.93:1 with the surrounding text. (Minimum contrast is 3:1, link text: #305aa3, surrounding text: #0a0a0a) +- The link has no styling (such as underline) to distinguish it from the surrounding text + +<span id="select-name"></span> +### Failure select-name (1) + +- Element does not have an implicit (wrapped) `<label>` +- Element does not have an explicit `<label>` +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +--- + +## Results + +| Page | Rule | Impact | Selector | HTML | Issue ref | +| --- | --- | --- | --- | --- | --- | +| [contact/](http://localhost:8000/contact/) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#id_captcha_0` | `<input type="text" name="captcha_0" size="5" class=" ..." required="" id="id_captcha_0">` | [Failure label](#label) | +| [login/](http://localhost:8000/login/) | [aria-hidden-focus](https://dequeuniversity.com/rules/axe/4.11/aria-hidden-focus?application=playwright) | serious | `#offCanvas` | `<div class="off-canvas position-left reveal-for-large is-transition-push" id="offCanvas" data-off-canvas="427ylr-off-canvas" aria-hidden="true">` | [Failure aria-hidden-focus](#aria-hidden-focus) | +| [news/702/](http://localhost:8000/news/702/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.grayscale` | `<img class="grayscale" src="http://localhost/news/id/702/image/162489/">` | [Failure image-alt](#image-alt) | +| [news/743/](http://localhost:8000/news/743/) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.grayscale` | `<img class="grayscale" src="http://localhost/news/id/743/image/165125/">` | [Failure image-alt](#image-alt) | +| [register/step/1/](http://localhost:8000/register/step/1/) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#id_captcha_0` | `<input type="text" name="captcha_0" size="5" required="" id="id_captcha_0">` | [Failure label](#label) | +| [register/step/1/](http://localhost:8000/register/step/1/) | [link-in-text-block](https://dequeuniversity.com/rules/axe/4.11/link-in-text-block?application=playwright) | serious | `a[data-open="password-modal"]` | `<a href="#" data-open="password-modal" aria-controls="password-modal" aria-haspopup="true" tabindex="0">password guide</a>` | [Failure link-in-text-block](#link-in-text-block) | +| [register/step/1/](http://localhost:8000/register/step/1/) | [link-in-text-block](https://dequeuniversity.com/rules/axe/4.11/link-in-text-block?application=playwright) | serious | `a[href$="privacy/"]` | `<a href="/site/privacy/"> Privacy Policy </a>` | [Failure link-in-text-block](#link-in-text-block) | +| [register/step/1/](http://localhost:8000/register/step/1/) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select[name="language"]` | `<select name="language" onchange="this.form.submit()">` | [Failure select-name](#select-name) | diff --git a/a11y/results/markdown/material.md b/a11y/results/markdown/material.md new file mode 100644 index 0000000..2896cd6 --- /dev/null +++ b/a11y/results/markdown/material.md @@ -0,0 +1,1100 @@ +# Material Accessibility report (WCAG 2.2) + +**URLs tested:** 19 +**URLs passing (no violations):** 0 +**URLs with violations:** 19 +**Total rule violations:** 73 +**Total failing elements (nodes):** 910 + +## Summary by URL + +| URL | Errors | Status | +| --- | --- | --- | +| http://localhost:8000/olh/?theme=material | 15 | :x: fail | +| http://localhost:8000/olh/accessibility/?theme=material | 5 | :x: fail | +| http://localhost:8000/olh/contact/?theme=material | 14 | :x: fail | +| http://localhost:8000/olh/editorialteam/?theme=material | 20 | :x: fail | +| http://localhost:8000/olh/search/?theme=material | 16 | :x: fail | +| http://localhost:8000/olh/site/about/?theme=material | 17 | :x: fail | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 19 | :x: fail | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 34 | :x: fail | +| http://localhost:8000/olh/submissions/?theme=material | 20 | :x: fail | +| http://localhost:8000/olh/issues/?theme=material | 24 | :x: fail | +| http://localhost:8000/olh/issue/402/info/?theme=material | 25 | :x: fail | +| http://localhost:8000/olh/issue/409/info/?theme=material | 25 | :x: fail | +| http://localhost:8000/olh/collections/?theme=material | 53 | :x: fail | +| http://localhost:8000/olh/collections/846/?theme=material | 56 | :x: fail | +| http://localhost:8000/olh/news/?theme=material | 18 | :x: fail | +| http://localhost:8000/olh/news/429/?theme=material | 9 | :x: fail | +| http://localhost:8000/olh/articles/?theme=material | 74 | :x: fail | +| http://localhost:8000/olh/article/id/4403/?theme=material | 177 | :x: fail | +| http://localhost:8000/olh/article/id/4405/?theme=material | 289 | :x: fail | + +## Rules run and results + +All rules executed in this run (WCAG 2.2 Level A and AA, ACT). Status indicates whether the rule had any violations across the tested URLs. + +| Rule ID | Description | WCAG criteria | Errors | Status | +| --- | --- | --- | --- | --- | +| aria-allowed-attr | Elements must only use supported ARIA attributes | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-allowed-role | ARIA role should be appropriate for the element | — | | :white_check_mark: pass | +| aria-conditional-attr | ARIA attributes must be used as specified for the element's role | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-deprecated-role | Deprecated ARIA roles must not be used | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-hidden-body | aria-hidden="true" must not be present on the document body | WCAG 2.0 Level A; Success Criterion 1.3.1; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-hidden-focus | ARIA hidden element must not be focusable or contain focusable elements | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-prohibited-attr | Elements must only use permitted ARIA attributes | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-required-attr | Required ARIA attributes must be provided | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-roles | ARIA roles used must conform to valid values | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-valid-attr | ARIA attributes must conform to valid names | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-valid-attr-value | ARIA attributes must conform to valid values | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| autocomplete-valid | autocomplete attribute must be used correctly | WCAG 2.1 Level AA; Success Criterion 1.3.5 | | :white_check_mark: pass | +| avoid-inline-spacing | Inline text spacing must be adjustable with custom stylesheets | WCAG 2.1 Level AA | | :white_check_mark: pass | +| bypass | Page must have means to bypass repeated blocks | WCAG 2.0 Level A; Success Criterion 2.4.1 | | :white_check_mark: pass | +| color-contrast | Elements must meet minimum color contrast ratio thresholds | WCAG 2.0 Level AA; Success Criterion 1.4.3 | 813 | :x: fail | +| document-title | Documents must have `<title>` element to aid in navigation | WCAG 2.0 Level A; Success Criterion 2.4.2 | | :white_check_mark: pass | +| duplicate-id-aria | IDs used in ARIA and labels must be unique | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| empty-heading | Headings should not be empty | — | | :white_check_mark: pass | +| form-field-multiple-labels | Form field must not have multiple label elements | WCAG 2.0 Level A; Success Criterion 3.3.2 | | :white_check_mark: pass | +| heading-order | Heading levels should only increase by one | — | 1 | :x: fail | +| html-has-lang | `<html>` element must have a lang attribute | WCAG 2.0 Level A; Success Criterion 3.1.1 | | :white_check_mark: pass | +| html-lang-valid | `<html>` element must have a valid value for the lang attribute | WCAG 2.0 Level A; Success Criterion 3.1.1 | | :white_check_mark: pass | +| image-alt | Images must have alternative text | WCAG 2.0 Level A; Success Criterion 1.1.1 | | :white_check_mark: pass | +| image-redundant-alt | Alternative text of images should not be repeated as text | — | | :white_check_mark: pass | +| label | Form elements must have labels | WCAG 2.0 Level A; Success Criterion 4.1.2 | 4 | :x: fail | +| label-title-only | Form elements should have a visible label | — | | :white_check_mark: pass | +| landmark-banner-is-top-level | Banner landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-contentinfo-is-top-level | Contentinfo landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-main-is-top-level | Main landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-banner | Document should not have more than one banner landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-contentinfo | Document should not have more than one contentinfo landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-main | Document should not have more than one main landmark | — | | :white_check_mark: pass | +| landmark-one-main | Document should have one main landmark | — | | :white_check_mark: pass | +| landmark-unique | Landmarks should have a unique role or role/label/title (i.e. accessible name) combination | — | | :white_check_mark: pass | +| link-name | Links must have discernible text | WCAG 2.0 Level A; Success Criterion 2.4.4; Success Criterion 4.1.2 | 19 | :x: fail | +| list | `<ul>` and `<ol>` must only directly contain `<li>`, `<script>` or `<template>` elements | WCAG 2.0 Level A; Success Criterion 1.3.1 | 5 | :x: fail | +| listitem | `<li>` elements must be contained in a `<ul>` or `<ol>` | WCAG 2.0 Level A; Success Criterion 1.3.1 | | :white_check_mark: pass | +| meta-viewport | Zooming and scaling must not be disabled | WCAG 2.0 Level AA; Success Criterion 1.4.4 | | :white_check_mark: pass | +| meta-viewport-large | Users should be able to zoom and scale the text up to 500% | — | | :white_check_mark: pass | +| nested-interactive | Interactive controls must not be nested | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| page-has-heading-one | Page should contain a level-one heading | — | | :white_check_mark: pass | +| presentation-role-conflict | Elements marked as presentational should be consistently ignored | — | | :white_check_mark: pass | +| region | All page content should be contained by landmarks | — | | :white_check_mark: pass | +| select-name | Select element must have an accessible name | WCAG 2.0 Level A; Success Criterion 4.1.2 | 23 | :x: fail | +| skip-link | The skip-link target should exist and be focusable | — | | :white_check_mark: pass | +| target-size | All touch targets must be 24px large, or leave sufficient space | WCAG 2.2 Level AA; Success Criterion 2.5.8 | 44 | :x: fail | + +--- + +## Details by URL + +## Failure summary reference + +Each issue in the details below links to one of these summaries. + +<span id="color-contrast"></span> +### Failure color-contrast (813) + +**Related WCAG criteria:** + +- WCAG 2.0 Level AA +- Success Criterion 1.4.3 + +- Element has insufficient color contrast. + +<span id="heading-order"></span> +### Failure heading-order (1) + +- Heading order invalid + +<span id="label"></span> +### Failure label (4) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 4.1.2 + +- Element does not have an implicit (wrapped) `<label>` +- Element does not have an explicit `<label>` +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element has no placeholder attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="landmark-complementary-is-top-level"></span> +### Failure landmark-complementary-is-top-level (1) + +- The null landmark is contained in another landmark. + +<span id="link-name"></span> +### Failure link-name (19) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 2.4.4 +- Success Criterion 4.1.2 + +- Element is in tab order and does not have accessible text +- Element does not have text that is visible to screen readers +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute + +<span id="list-1"></span> +### Failure list 1 (4) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 1.3.1 + +- List element has direct children that are not allowed: a + +<span id="list-2"></span> +### Failure list 2 (1) + +- List element has direct children that are not allowed: h2 + +<span id="select-name"></span> +### Failure select-name (23) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 4.1.2 + +- Element does not have an implicit (wrapped) `<label>` +- Element does not have an explicit `<label>` +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="target-size"></span> +### Failure target-size (44) + +**Related WCAG criteria:** + +- WCAG 2.2 Level AA +- Success Criterion 2.5.8 + +- Target has insufficient size + +--- + +## Results + +| Page | Rule | Impact | Selector | HTML | Issue ref | +| --- | --- | --- | --- | --- | --- | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label` | `<label for="article_search">Search</label>` | [Failure color-contrast](#color-contrast) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/collections/collection/" target="_blank">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(6) > a:nth-child(2)` | `<a style="background-color: rgb(255, 255, 255);" href="https://olh.openlibhums.org/collections/collection/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(6) > a:nth-child(3)` | `<a style="background-color: rgb(255, 255, 255);" href="https://olh.openlibhums.org/site/special-collections/">how to apply</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/759/"]` | `<a href="/olh/news/759/" aria-describedby="news-759"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/758/"]` | `<a href="/olh/news/758/" aria-describedby="news-758"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/757/"]` | `<a href="/olh/news/757/" aria-describedby="news-757"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/756/"]` | `<a href="/olh/news/756/" aria-describedby="news-756"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/755/"]` | `<a href="/olh/news/755/" aria-describedby="news-755"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [heading-order](https://dequeuniversity.com/rules/axe/4.11/heading-order?application=playwright) | moderate | `.card-content > h4` | `<h4 class="">History of the Journal</h4>` | [Failure heading-order](#heading-order) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [?theme=material](http://localhost:8000/olh/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [accessibility/?theme=material](http://localhost:8000/olh/accessibility/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [accessibility/?theme=material](http://localhost:8000/olh/accessibility/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [accessibility/?theme=material](http://localhost:8000/olh/accessibility/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [accessibility/?theme=material](http://localhost:8000/olh/accessibility/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [accessibility/?theme=material](http://localhost:8000/olh/accessibility/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.control-label` | `<label class="control-label s12 ">Who would you like to contact?</label>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_sender"]` | `<label class="" for="id_sender">Your contact email address</label>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_subject"]` | `<label class="" for="id_subject">Subject</label>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_body"]` | `<label class="" for="id_body">Your message</label>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_captcha"]` | `<label class="" for="id_captcha">Answer this question: </label>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button` | `<button type="submit" class="btn">Send Message</button>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#m_select-input-458c3cd9-e377-b79b-8993-a70827cc299f` | `<input id="m_select-input-458c3..." class="select-dropdown drop..." type="text" readonly="true" data-target="select-options-7b0f6..." aria-readonly="true" aria-required="false" role="combobox" aria-ow…` | [Failure label](#label) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#id_captcha_0` | `<input type="text" name="captcha_0" size="5" class=" validate" required="" id="id_captcha_0">` | [Failure label](#label) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select[name="recipient"]` | `<select name="recipient" class=" validate" tabindex="-1">` | [Failure select-name](#select-name) | +| [contact/?theme=material ](http://localhost:8000/olh/contact/?theme=material ) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `.browser-default` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(2) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a` | `<a href="/olh/profile/76ce2832-629c-4240-a37b-a3772baba951/" aria-describedby="member-76ce2832-629c-4240-a37b-a3772baba951"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(2) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a:nth-child(1)` | `<a href="https://www.bbk.ac.uk/our-staff/profile/9244765/rose-harris-birtill" aria-label="Person 2537 Family 2537's website"> <i aria-hidden="true" class="fa fa-globe"></i> Website </a>…` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.m3.col:nth-child(2) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a:nth-child(2)` | `<a href="https://www.twitter.com/roseharrisb" aria-label="Person 2537 Family 2537's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>…` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(3)` | `<a href="https://www.linkedin.com/in/rosehb" aria-label="Person 2537 Family 2537's linkedin profile"> <i aria-hidden="true" class="fa fa-linkedin-square"></i> Linkedin </a>…` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a` | `<a href="/olh/profile/e6980887-f7c4-4833-b9e8-98318104169b/" aria-describedby="member-e6980887-f7c4-4833-b9e8-98318104169b"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a[aria-label="Caroline Edwards's website"]` | `<a href="http://www.drcarolineedwards.com/" aria-label="Caroline Edwards's website"> <i aria-hidden="true" class="fa fa-globe"></i> Website </a>` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(2) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a:nth-child(2)` | `<a href="https://www.twitter.com/the_blochian" aria-label="Caroline Edwards's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(3) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a` | `<a href="/olh/profile/bed4a260-430e-4741-9f5c-ea45384c8877/" aria-describedby="member-bed4a260-430e-4741-9f5c-ea45384c8877"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(3) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a` | `<a href="https://www.twitter.com/Simon_Everett" aria-label="Simon Everett's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(4) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a` | `<a href="/olh/profile/954d6773-124a-4993-a69c-3ebd11afc784/" aria-describedby="member-954d6773-124a-4993-a69c-3ebd11afc784"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(4) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a` | `<a href="https://www.github.com/AmeliePlaysKath" aria-label="Person 23281 Family 23281's github profile"> <i aria-hidden="true" class="fa fa-github-square"></i> Github </a>…` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(5) > .s12.m3.col > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a` | `<a href="/olh/profile/b69c8c89-36fe-4f21-8679-cea21c61fbde/" aria-describedby="member-b69c8c89-36fe-4f21-8679-cea21c61fbde"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(13) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(3) > small > a` | `<a href="/olh/profile/e6980887-f7c4-4833-b9e8-98318104169b/" aria-describedby="member-e6980887-f7c4-4833-b9e8-98318104169b"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(13) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a[aria-label="Caroline Edwards's website"]` | `<a href="http://www.drcarolineedwards.com/" aria-label="Caroline Edwards's website"> <i aria-hidden="true" class="fa fa-globe"></i> Website </a>` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.eq-height-row.row:nth-child(13) > .s12.m3.col:nth-child(3) > .card.editorial-card.eq-height-col > .card-content > p:nth-child(4) > small > a:nth-child(2)` | `<a href="https://www.twitter.com/the_blochian" aria-label="Caroline Edwards's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [editorialteam/?theme=material](http://localhost:8000/olh/editorialteam/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_article_search"]` | `<label class="" for="id_article_search">Search term</label>` | [Failure color-contrast](#color-contrast) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(2) > div > label > span` | `<span>Search Titles</span>` | [Failure color-contrast](#color-contrast) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(3) > div > label > span` | `<span>Search Abstract</span>` | [Failure color-contrast](#color-contrast) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(4) > div > label > span` | `<span>Search Authors</span>` | [Failure color-contrast](#color-contrast) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(5) > div > label > span` | `<span>Search Keywords</span>` | [Failure color-contrast](#color-contrast) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(6) > div > label > span` | `<span>Search Full Text</span>` | [Failure color-contrast](#color-contrast) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(7) > div > label > span` | `<span>Search ORCIDs</span>` | [Failure color-contrast](#color-contrast) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.control-label` | `<label class="control-label s12 ">Sort results by</label>` | [Failure color-contrast](#color-contrast) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button` | `<button type="submit" class="btn btn-primary"> Filter </button>` | [Failure color-contrast](#color-contrast) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#m_select-input-f0d64040-f57d-9b3c-187e-8a936e6ec761` | `<input id="m_select-input-f0d64..." class="select-dropdown drop..." type="text" readonly="true" data-target="select-options-585a6..." aria-readonly="true" aria-required="false" role="combobox" aria-ow…` | [Failure label](#label) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `.invalid` | `<select name="sort" class=" validate invalid" tabindex="-1">` | [Failure select-name](#select-name) | +| [search/?theme=material](http://localhost:8000/olh/search/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `.browser-default` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"][target="_blank"]` | `<a href="https://www.openlibhums.org" target="_blank">Open Library of Humanities</a>` | [Failure color-contrast](#color-contrast) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(1) > a:nth-child(4)` | `<a href="https://olh.openlibhums.org/collections/collection/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(5)` | `<a href="https://olh.openlibhums.org/site/special-collections/">how to apply</a>` | [Failure color-contrast](#color-contrast) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="clockss.org"]` | `<a href="https://clockss.org" target="_blank">CLOCKSS</a>` | [Failure color-contrast](#color-contrast) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[target="_blank"]:nth-child(4)` | `<a href="https://olh.openlibhums.org/site/special-collections/" target="_blank"><em>Open Library of Humanities</em> Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_blank"]:nth-child(4) > em` | `<em>Open Library of Humanities</em>` | [Failure color-contrast](#color-contrast) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(5) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/special-collections/" target="_blank">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(7) > a` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/">international library consortium</a>` | [Failure color-contrast](#color-contrast) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_blank"]:nth-child(2)` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Archiving%20and%20Indexing" target="_blank">publisher's policy</a>` | [Failure color-contrast](#color-contrast) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(10) > a[target="_blank"]:nth-child(4)` | `<a href="https://www.scopus.com/sourceid/21100867938" target="_blank">CiteScore on Scopus</a>` | [Failure color-contrast](#color-contrast) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(2) > a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(1) > a:nth-child(4)` | `<a href="https://olh.openlibhums.org/collections/collection/">Special Collections</a>` | [Failure target-size](#target-size) | +| [site/about/?theme=material](http://localhost:8000/olh/site/about/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="clockss.org"]` | `<a href="https://clockss.org" target="_blank">CLOCKSS</a>` | [Failure target-size](#target-size) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `strong > a` | `<a href="https://olh.openlibhums.org/site/special-collections/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Submissions"]` | `<a href="#Submissions">Submissions</a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Language and Text"]` | `<a href="#Language and Text">Language and Text</a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Data and Symbols"]` | `<a href="#Data and Symbols">Data and Symbols</a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Figures and Tables"]` | `<a href="#Figures and Tables">Figures and Tables</a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#References"]` | `<a href="#References">References</a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(15) > a:nth-child(2)` | `<a href="https://olh.openlibhums.org/site/blindreview/">ensuring an anonymous review</a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(30) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/competinginterests/" target="_blank">How to Declare Competing Interests</a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(32) > a[target="_blank"]` | `<a href="https://www.wma.net/policies-post/wma-declaration-of-helsinki-ethical-principles-for-medical-research-involving-human-subjects/" target="_blank">Declaration of Helsinki</a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(75) > a` | `<a href="http://en.wikipedia.org/wiki/Wikipedia:Manual_of_Style/Abbreviations#Miscellanea">here</a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(135) > a[target="_blank"]` | `<a href="http://www.bipm.org/utils/common/pdf/si_brochure_8_en.pdf" target="_blank">Bureau International des Poids et Mesures</a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(170) > a` | `<a href="http://eprints.lincoln.ac.uk/id/eprint/25380/1/Harvard_Referencing_Guide.pdf">document</a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `blockquote:nth-child(248) > a` | `<a href="https://www.theguardian.com/world/2020/sep/23/wednesday-briefing-last-orders-in-fight-to-avoid-lockdown">https://www.theguardian.com/world/2020/sep/23/wednesday-briefing-last-orders-in-fight-…` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [site/author-guidelines/?theme=material](http://localhost:8000/olh/site/author-guidelines/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(15) > a:nth-child(3)` | `<a href="https://olh.openlibhums.org/help/view/editorial/topic/000044">.</a>` | [Failure target-size](#target-size) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Editorial Oversight"]` | `<a href="#Editorial Oversight">Editorial Oversight</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Peer Review Process"]` | `<a href="#Peer Review Process">Peer Review Process</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Governance"]` | `<a href="#Governance">Organisation and Governance</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Business Practices"]` | `<a href="#Business Practices">Business Practices</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Preprint Policy"]` | `<a href="#Preprint Policy">Preprint Policy</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(6)` | `<a href="#Conduct and Expected Behaviour">Conduct and Expected Behaviour</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Special Collections"]` | `<a href="#Special Collections"><em>OLHJ</em> Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Special Collections"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(6) > a[target="_blank"]` | `<a href="https://www.chase.ac.uk/research-placements" target="_blank">Consortium for the Humanities and Arts South-East England</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(12) > a[target="_blank"]` | `<a href="https://publicationethics.org/guidance/Guidelines" target="_blank">Committee on Publication Ethics</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(26) > a[target="blank_"]` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Reviewer%20Responsibilities" target="blank_">‘Responsibilities of Reviewers’</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(28) > a` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Publication%20Ethics%20and%20Malpractice">Publication Ethics and Malpractice Statement</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="janeway.systems"]` | `<a href="https://janeway.systems" target="_blank">Janeway</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(37) > a` | `<a href="https://olh.openlibhums.org/editorialteam/"> editorial board</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(39) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/editorialteam/" target="_blank">editorial team</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(41) > a[target="_blank"]` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/" target="_blank">Library Partnership Subsidy</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(41) > a:nth-child(4)` | `<a href="https://olh.openlibhums.org/site/about/">About</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(50) > a[target="_blank"]` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/" target="_blank">Library Partnership Subsidy</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(54) > a` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Publication%20Ethics%20and%20Malpractice">Publication Ethics and Malpractice Statement’</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(55) > a:nth-child(2)` | `<a href="https://olh.openlibhums.org/contact/">Contact</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(55) > a:nth-child(4)` | `<a href="https://www.openlibhums.org/contact/">directly with the publisher</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(55) > a[target="_blank"]` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Publisher%20Responsibilities" target="_blank">‘Publication Ethics and Malpractice Statement’</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(59) > a[target="_blank"]` | `<a href="https://publicationethics.org/resources/discussion-documents/guest-edited-collections" target="_blank">best practice guidelines by COPE</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(63) > a[target="blank_"]` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Ethics%20Policies" target="blank_">Ethics Policies</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(64) > a` | `<a href="https://olh.openlibhums.org/site/special-collections/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(3) > a[href$="#Peer Review Process"]` | `<a href="#Peer Review Process">Peer Review Process</a>` | [Failure target-size](#target-size) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(3) > a[href$="#Governance"]` | `<a href="#Governance">Organisation and Governance</a>` | [Failure target-size](#target-size) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(3) > a[href$="#Business Practices"]` | `<a href="#Business Practices">Business Practices</a>` | [Failure target-size](#target-size) | +| [site/journal-policies/?theme=material](http://localhost:8000/olh/site/journal-policies/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(55) > a:nth-child(2)` | `<a href="https://olh.openlibhums.org/contact/">Contact</a>` | [Failure target-size](#target-size) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(1) > strong > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/special-collections/" target="_blank">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(2) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/author-guidelines/" target="_blank">Author Guidelines</a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.btn.btn-primary:nth-child(1)` | `<a href="/olh/register/step/1/?next=/olh/submissions/%3Ftheme%3Dmaterial" class="btn btn-primary"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.btn.btn-primary:nth-child(2)` | `<a href="/olh/login/?next=/olh/submissions/%3Ftheme%3Dmaterial" class="btn btn-primary"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(8) > a:nth-child(1)` | `<a href="https://olh.openlibhums.org/site/author-guidelines/">Author Guidelines</a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(8) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/competinginterests/" target="_blank">how to declare competing interests</a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(9) > a:nth-child(1)` | `<a href="https://olh.openlibhums.org/site/blindreview/">ensuring an anonymous review</a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a:nth-child(1)` | `<a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution License</a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.default-li:nth-child(6) > p:nth-child(3) > a:nth-child(2)` | `<a href="http://creativecommons.org/licenses/">Creative Commons License</a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_new"]` | `<a href="http://opcit.eprints.org/oacitation-biblio.html" target="_new">The Effect of Open Access</a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/journal-policies/#Peer%20Review%20Process" target="_blank">Journal Policies</a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item:nth-child(1) > strong > a[target="_blank"]` | `<a href="https://creativecommons.org/licenses/by/4.0" target="_blank">` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.example.com"]` | `<a href="https://www.example.com" target="_blank">` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.default-li:nth-child(9) > p:nth-child(2) > a` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/">international library consortium</a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [submissions/?theme=material](http://localhost:8000/olh/submissions/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `li:nth-child(9) > a[target="_blank"]` | `<a href="/help/view/editorial/topic/000044" target="_blank">.</a>` | [Failure target-size](#target-size) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-1287"]` | `<a href="/olh/issue/1287/info/" aria-describedby="issue-1287"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-1298"]` | `<a href="/olh/issue/1298/info/" aria-describedby="issue-1298"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-964"]` | `<a href="/olh/issue/964/info/" aria-describedby="issue-964"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-899"]` | `<a href="/olh/issue/899/info/" aria-describedby="issue-899"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-871"]` | `<a href="/olh/issue/871/info/" aria-describedby="issue-871"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-852"]` | `<a href="/olh/issue/852/info/" aria-describedby="issue-852"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-823"]` | `<a href="/olh/issue/823/info/" aria-describedby="issue-823"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-457"]` | `<a href="/olh/issue/457/info/" aria-describedby="issue-457"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-411"]` | `<a href="/olh/issue/411/info/" aria-describedby="issue-411"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-410"]` | `<a href="/olh/issue/410/info/" aria-describedby="issue-410"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-409"]` | `<a href="/olh/issue/409/info/" aria-describedby="issue-409"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-408"]` | `<a href="/olh/issue/408/info/" aria-describedby="issue-408"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-407"]` | `<a href="/olh/issue/407/info/" aria-describedby="issue-407"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-406"]` | `<a href="/olh/issue/406/info/" aria-describedby="issue-406"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-405"]` | `<a href="/olh/issue/405/info/" aria-describedby="issue-405"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-404"]` | `<a href="/olh/issue/404/info/" aria-describedby="issue-404"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-403"]` | `<a href="/olh/issue/403/info/" aria-describedby="issue-403"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-402"]` | `<a href="/olh/issue/402/info/" aria-describedby="issue-402"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="issue-401"]` | `<a href="/olh/issue/401/info/" aria-describedby="issue-401"> View Issue </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [issues/?theme=material](http://localhost:8000/olh/issues/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(1)` | `<a class="collection-item " href="/olh/issue/1287/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 10 • Issue 2 • 2024 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(2)` | `<a class="collection-item " href="/olh/issue/1298/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 11 • 2024 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(3)` | `<a class="collection-item " href="/olh/issue/964/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 10 • Issue 1 • 2024 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(4)` | `<a class="collection-item " href="/olh/issue/899/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 9 • Issue 2 • 2023 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(5)` | `<a class="collection-item " href="/olh/issue/871/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 9 • Issue 1 • 2023 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(6)` | `<a class="collection-item " href="/olh/issue/852/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 8 • Issue 2 • 2022 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(7)` | `<a class="collection-item " href="/olh/issue/823/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 8 • Issue 1 • 2022 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(8)` | `<a class="collection-item " href="/olh/issue/457/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 7 • Issue 2 • 2021 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(9)` | `<a class="collection-item " href="/olh/issue/411/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 7 • Issue 1 • 2021 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(10)` | `<a class="collection-item " href="/olh/issue/410/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 6 • Issue 2 • 2020 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(11)` | `<a class="collection-item " href="/olh/issue/409/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 6 • Issue 1 • 2020 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(12)` | `<a class="collection-item " href="/olh/issue/408/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 5 • Issue 1 • 2019 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(13)` | `<a class="collection-item " href="/olh/issue/407/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 4 • Issue 2 • 2018 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(14)` | `<a class="collection-item " href="/olh/issue/406/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 4 • Issue 1 • 2018 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(15)` | `<a class="collection-item " href="/olh/issue/405/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 3 • Issue 2 • 2017 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(16)` | `<a class="collection-item " href="/olh/issue/404/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 3 • Issue 1 • 2017 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(17)` | `<a class="collection-item " href="/olh/issue/403/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 2 • Issue 2 • 2016 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.active.collection-item[href$="info/"]` | `<a class="collection-item active" href="/olh/issue/402/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 2 • Issue 1 • 2016 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 2, Issue 1, 2016"]:nth-child(19)` | `<a class="collection-item " href="/olh/issue/401/info/" aria-label="Volume 2, Issue 1, 2016"> Volume 1 • Issue 1 • 2015 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.collection` | `<ul class="collection">` | [Failure list 1](#list-1) | +| [issue/402/info/?theme=material](http://localhost:8000/olh/issue/402/info/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(1)` | `<a class="collection-item " href="/olh/issue/1287/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 10 • Issue 2 • 2024 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(2)` | `<a class="collection-item " href="/olh/issue/1298/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 11 • 2024 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(3)` | `<a class="collection-item " href="/olh/issue/964/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 10 • Issue 1 • 2024 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(4)` | `<a class="collection-item " href="/olh/issue/899/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 9 • Issue 2 • 2023 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(5)` | `<a class="collection-item " href="/olh/issue/871/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 9 • Issue 1 • 2023 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(6)` | `<a class="collection-item " href="/olh/issue/852/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 8 • Issue 2 • 2022 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(7)` | `<a class="collection-item " href="/olh/issue/823/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 8 • Issue 1 • 2022 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(8)` | `<a class="collection-item " href="/olh/issue/457/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 7 • Issue 2 • 2021 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(9)` | `<a class="collection-item " href="/olh/issue/411/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 7 • Issue 1 • 2021 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(10)` | `<a class="collection-item " href="/olh/issue/410/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 6 • Issue 2 • 2020 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.active.collection-item[href$="info/"]` | `<a class="collection-item active" href="/olh/issue/409/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 6 • Issue 1 • 2020 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(12)` | `<a class="collection-item " href="/olh/issue/408/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 5 • Issue 1 • 2019 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(13)` | `<a class="collection-item " href="/olh/issue/407/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 4 • Issue 2 • 2018 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(14)` | `<a class="collection-item " href="/olh/issue/406/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 4 • Issue 1 • 2018 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(15)` | `<a class="collection-item " href="/olh/issue/405/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 3 • Issue 2 • 2017 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(16)` | `<a class="collection-item " href="/olh/issue/404/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 3 • Issue 1 • 2017 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(17)` | `<a class="collection-item " href="/olh/issue/403/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 2 • Issue 2 • 2016 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(18)` | `<a class="collection-item " href="/olh/issue/402/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 2 • Issue 1 • 2016 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.collection-item[href$="info/"][aria-label="Volume 6, Issue 1, 2020"]:nth-child(19)` | `<a class="collection-item " href="/olh/issue/401/info/" aria-label="Volume 6, Issue 1, 2020"> Volume 1 • Issue 1 • 2015 </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.collection` | `<ul class="collection">` | [Failure list 1](#list-1) | +| [issue/409/info/?theme=material](http://localhost:8000/olh/issue/409/info/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/963/"]` | `<a href="/olh/collections/963/" aria-describedby="collection-963"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/905/"]` | `<a href="/olh/collections/905/" aria-describedby="collection-905"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/895/"]` | `<a href="/olh/collections/895/" aria-describedby="collection-895"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/877/"]` | `<a href="/olh/collections/877/" aria-describedby="collection-877"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/846/"]` | `<a href="/olh/collections/846/" aria-describedby="collection-846"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/803/"]` | `<a href="/olh/collections/803/" aria-describedby="collection-803"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/505/"]` | `<a href="/olh/collections/505/" aria-describedby="collection-505"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/455/"]` | `<a href="/olh/collections/455/" aria-describedby="collection-455"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/453/"]` | `<a href="/olh/collections/453/" aria-describedby="collection-453"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/452/"]` | `<a href="/olh/collections/452/" aria-describedby="collection-452"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/447/"]` | `<a href="/olh/collections/447/" aria-describedby="collection-447"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/449/"]` | `<a href="/olh/collections/449/" aria-describedby="collection-449"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/450/"]` | `<a href="/olh/collections/450/" aria-describedby="collection-450"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/412/"]` | `<a href="/olh/collections/412/" aria-describedby="collection-412"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/413/"]` | `<a href="/olh/collections/413/" aria-describedby="collection-413"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/414/"]` | `<a href="/olh/collections/414/" aria-describedby="collection-414"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/415/"]` | `<a href="/olh/collections/415/" aria-describedby="collection-415"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/416/"]` | `<a href="/olh/collections/416/" aria-describedby="collection-416"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/417/"]` | `<a href="/olh/collections/417/" aria-describedby="collection-417"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/418/"]` | `<a href="/olh/collections/418/" aria-describedby="collection-418"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/419/"]` | `<a href="/olh/collections/419/" aria-describedby="collection-419"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/420/"]` | `<a href="/olh/collections/420/" aria-describedby="collection-420"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/421/"]` | `<a href="/olh/collections/421/" aria-describedby="collection-421"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/422/"]` | `<a href="/olh/collections/422/" aria-describedby="collection-422"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/423/"]` | `<a href="/olh/collections/423/" aria-describedby="collection-423"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/424/"]` | `<a href="/olh/collections/424/" aria-describedby="collection-424"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/425/"]` | `<a href="/olh/collections/425/" aria-describedby="collection-425"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/426/"]` | `<a href="/olh/collections/426/" aria-describedby="collection-426"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/427/"]` | `<a href="/olh/collections/427/" aria-describedby="collection-427"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/428/"]` | `<a href="/olh/collections/428/" aria-describedby="collection-428"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/429/"]` | `<a href="/olh/collections/429/" aria-describedby="collection-429"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/430/"]` | `<a href="/olh/collections/430/" aria-describedby="collection-430"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/431/"]` | `<a href="/olh/collections/431/" aria-describedby="collection-431"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/432/"]` | `<a href="/olh/collections/432/" aria-describedby="collection-432"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/433/"]` | `<a href="/olh/collections/433/" aria-describedby="collection-433"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/434/"]` | `<a href="/olh/collections/434/" aria-describedby="collection-434"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/435/"]` | `<a href="/olh/collections/435/" aria-describedby="collection-435"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/436/"]` | `<a href="/olh/collections/436/" aria-describedby="collection-436"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/437/"]` | `<a href="/olh/collections/437/" aria-describedby="collection-437"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/438/"]` | `<a href="/olh/collections/438/" aria-describedby="collection-438"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/439/"]` | `<a href="/olh/collections/439/" aria-describedby="collection-439"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/440/"]` | `<a href="/olh/collections/440/" aria-describedby="collection-440"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/441/"]` | `<a href="/olh/collections/441/" aria-describedby="collection-441"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/442/"]` | `<a href="/olh/collections/442/" aria-describedby="collection-442"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/443/"]` | `<a href="/olh/collections/443/" aria-describedby="collection-443"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/444/"]` | `<a href="/olh/collections/444/" aria-describedby="collection-444"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/445/"]` | `<a href="/olh/collections/445/" aria-describedby="collection-445"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/446/"]` | `<a href="/olh/collections/446/" aria-describedby="collection-446"> View Collection </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [collections/?theme=material](http://localhost:8000/olh/collections/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/963/"]` | `<a class="collection-item " href="/olh/collections/963/">Humour as a Human Right </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/905/"]` | `<a class="collection-item " href="/olh/collections/905/">Cultural Heritage Data for Research: Opening Museum Collections, Project Data and Digital Images for Research, Query and Discovery </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/895/"]` | `<a class="collection-item " href="/olh/collections/895/">Caliban's Mirror: Reflections of James Joyce and Oscar Wilde </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/877/"]` | `<a class="collection-item " href="/olh/collections/877/">Cultural Representations of Machine Vision </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/850/"]` | `<a class="collection-item " href="/olh/collections/850/">The Public Curatorship of the Medieval Past </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/846/"]` | `<a class="collection-item active" href="/olh/collections/846/">Medieval Minds and Matter </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/803/"]` | `<a class="collection-item " href="/olh/collections/803/">Representing the Medieval in Popular Culture: Remembering the Angevins </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/505/"]` | `<a class="collection-item " href="/olh/collections/505/">The Politics and History of Menstruation: Contextualising the Scottish Campaign to End Period Poverty </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/455/"]` | `<a class="collection-item " href="/olh/collections/455/">Production Archives 03: Archival Practices </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/454/"]` | `<a class="collection-item " href="/olh/collections/454/">Production Archives 02: Production Contexts </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/453/"]` | `<a class="collection-item " href="/olh/collections/453/">Production Archives 01: Puppets for Action </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/452/"]` | `<a class="collection-item " href="/olh/collections/452/">Representing Classical Music in the Twenty-First Century </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/447/"]` | `<a class="collection-item " href="/olh/collections/447/">The Pathological Body: European Literary and Cultural Perspectives in the Age of Modern Medicine </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/449/"]` | `<a class="collection-item " href="/olh/collections/449/">Binary Modernisms: Re/Appropriations of Modernist Art in the Digital Age </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/450/"]` | `<a class="collection-item " href="/olh/collections/450/">Local and Universal in Irish Literature and Culture </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/412/"]` | `<a class="collection-item " href="/olh/collections/412/">Reading in Ruins: Exploring Posthumanist Narrative Studies </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/413/"]` | `<a class="collection-item " href="/olh/collections/413/">The Language of Perspective </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/414/"]` | `<a class="collection-item " href="/olh/collections/414/">Nancy Astor, Public Women and Gendered Political Culture in Interwar Britain </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/415/"]` | `<a class="collection-item " href="/olh/collections/415/">The Working-Class Avant-Garde </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/416/"]` | `<a class="collection-item " href="/olh/collections/416/">Colonialities in Dispute: Discourses on Colonialism and Race in the Spanish State </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/417/"]` | `<a class="collection-item " href="/olh/collections/417/">Powering the Future: Energy Resources in Science Fiction and Fantasy </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/418/"]` | `<a class="collection-item " href="/olh/collections/418/">Writers and Intellectuals on Britain and Europe, 1918–2018 </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/419/"]` | `<a class="collection-item " href="/olh/collections/419/">Literature, Law and Psychoanalysis </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/420/"]` | `<a class="collection-item " href="/olh/collections/420/">Muslims in the Media </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/421/"]` | `<a class="collection-item " href="/olh/collections/421/">Encounters between Asian and Western Art in the 20th and 21st centuries: a liberating influence for Asia? </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/422/"]` | `<a class="collection-item " href="/olh/collections/422/">Waste: Disposability, Decay, and Depletion </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/423/"]` | `<a class="collection-item " href="/olh/collections/423/">Pride Revisited: Cinema, Activism and Re-Activation </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/424/"]` | `<a class="collection-item " href="/olh/collections/424/">New Approaches to Late Medieval Court Records </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/425/"]` | `<a class="collection-item " href="/olh/collections/425/">Utopian Art and Literature from Modern India </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/426/"]` | `<a class="collection-item " href="/olh/collections/426/">Right-Wing Populism and Mediated Activism: Creative Responses and Counter-Narratives </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/427/"]` | `<a class="collection-item " href="/olh/collections/427/">Representing Climate: Local to Global </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/428/"]` | `<a class="collection-item " href="/olh/collections/428/">Cultivating Spheres: Agriculture, Technical Communication, and the Publics </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/429/"]` | `<a class="collection-item " href="/olh/collections/429/">Freedom After Neoliberalism </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/430/"]` | `<a class="collection-item " href="/olh/collections/430/">The Medieval Brain </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/431/"]` | `<a class="collection-item " href="/olh/collections/431/">Remaking Collections </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/432/"]` | `<a class="collection-item " href="/olh/collections/432/">New Approaches to Medieval Water Studies </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/433/"]` | `<a class="collection-item " href="/olh/collections/433/">Imaginaries of the Future 01: Bodies and Media </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/434/"]` | `<a class="collection-item " href="/olh/collections/434/">Imaginaries of the Future 02: Politics, Poetics, Place </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/435/"]` | `<a class="collection-item " href="/olh/collections/435/">Imaginaries of the Future 03: Utopia at the Border </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/436/"]` | `<a class="collection-item " href="/olh/collections/436/">Postcolonial Perspectives in Game Studies </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/437/"]` | `<a class="collection-item " href="/olh/collections/437/">Station Eleven and Twenty-First-Century Writing </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/438/"]` | `<a class="collection-item " href="/olh/collections/438/">#Agreement20 </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/439/"]` | `<a class="collection-item " href="/olh/collections/439/">What’s Left? Marxism, Literature and Culture in the 21st Century </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/440/"]` | `<a class="collection-item " href="/olh/collections/440/">New Voices in Jewish-American Literature </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/441/"]` | `<a class="collection-item " href="/olh/collections/441/">Authors, Narratives, and Audiences in Medieval Saints’ Lives </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/442/"]` | `<a class="collection-item " href="/olh/collections/442/">From TV To Film </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/443/"]` | `<a class="collection-item " href="/olh/collections/443/">American Literature & the Transnational Marketplace </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/444/"]` | `<a class="collection-item " href="/olh/collections/444/">Mnemosyne </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/445/"]` | `<a class="collection-item " href="/olh/collections/445/">Healing Gods, Heroes and Rituals in the Graeco-Roman World </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/446/"]` | `<a class="collection-item " href="/olh/collections/446/">The Abolition of the University </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.bar-sep > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.collection` | `<ul class="collection">` | [Failure list 1](#list-1) | +| [collections/846/?theme=material](http://localhost:8000/olh/collections/846/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/759/"]` | `<a href="/olh/news/759/" aria-describedby="news-759">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/758/"]` | `<a href="/olh/news/758/" aria-describedby="news-758">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/757/"]` | `<a href="/olh/news/757/" aria-describedby="news-757">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/756/"]` | `<a href="/olh/news/756/" aria-describedby="news-756">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/755/"]` | `<a href="/olh/news/755/" aria-describedby="news-755">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/754/"]` | `<a href="/olh/news/754/" aria-describedby="news-754">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/753/"]` | `<a href="/olh/news/753/" aria-describedby="news-753">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/752/"]` | `<a href="/olh/news/752/" aria-describedby="news-752">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/751/"]` | `<a href="/olh/news/751/" aria-describedby="news-751">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/750/"]` | `<a href="/olh/news/750/" aria-describedby="news-750">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/749/"]` | `<a href="/olh/news/749/" aria-describedby="news-749">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/news/748/"]` | `<a href="/olh/news/748/" aria-describedby="news-748">Read More</a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.d-flex` | `<ul class="d-flex justify-content-center">` | [Failure list 1](#list-1) | +| [news/?theme=material](http://localhost:8000/olh/news/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[title="OLH Special Collections"]` | `<a title="OLH Special Collections" href="https://olh.openlibhums.org/collections/collection/" target="_blank">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_blank"]:nth-child(2)` | `<a href="https://openlibhums.org/site/academics/special-collections/" target="_blank">OLH Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.success` | `<a href="/olh/news/tag/Digital%20Humanities/" class="button success tiny"> Digital Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="news/"]` | `<a href="/olh/news/" class="button">Back to News List</a>` | [Failure color-contrast](#color-contrast) | +| [news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.bar-sep > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [news/429/?theme=material](http://localhost:8000/olh/news/429/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[labelfor="order_by"]` | `<label labelfor="order_by"> Sort results by </label>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#m_select-label-5ecfb16b-b38d-c50c-8eff-650697b16623` | `<label id="m_select-label-5ecfb16b-b38d-c50c-8eff-650697b16623" for="m_select-input-80eaf71f-001c-b34a-e562-04c4e72352d0"> articles per page </label>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_article_search"]` | `<label class="" for="id_article_search">Search term</label>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[name="submit"]` | `<button name="submit" class="btn"> Search </button>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_date_published__date__gte"]` | `<label for="id_date_published__date__gte">Published after</label>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `label[for="id_date_published__date__lte"]` | `<label for="id_date_published__date__lte">Published before</label>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.s12.col:nth-child(3) > label` | `<label>Section</label>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(1) > label > span` | `<span>#Agreement20 (8)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(2) > label > span` | `<span>'An Unconventional MP': Nancy Astor, public women and gendered political culture (12)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(3) > label > span` | `<span>American Literature and the Transnational Marketplace (3)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(4) > label > span` | `<span>Article (44)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(5) > label > span` | `<span>Authors, Narratives, and Audiences in Medieval Saints’ Lives (4)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(6) > label > span` | `<span>Binary Modernisms: Re/Appropriations of Modernist Art in the Digital Age (8)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(7) > label > span` | `<span>Caliban's Mirror: Reflections of James Joyce and Oscar Wilde (4)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(8) > label > span` | `<span>Colonialities in Dispute: Discourses on Colonialism and Race in the Spanish State (5)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(9) > label > span` | `<span>Correction (1)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(10) > label > span` | `<span>Cultivating Spheres: Agriculture, Technical Communication, and the Publics (6)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(11) > label > span` | `<span>Cultural Heritage Data for Research: Opening Museum Collections, Project Data and Digital Images for Research, Query and Discovery (1)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(12) > label > span` | `<span>Cultural Representations of Machine Vision (5)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(13) > label > span` | `<span>Editorial (6)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(14) > label > span` | `<span>Freedom After Neoliberalism (8)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(15) > label > span` | `<span>From TV to Film (4)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(16) > label > span` | `<span>Healing Gods, Heroes and Rituals in the Graeco-Roman World (4)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(17) > label > span` | `<span>Humour as a Human Right (1)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(18) > label > span` | `<span>Imaginaries of the Future 01: Bodies & Media (8)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(19) > label > span` | `<span>Imaginaries of the Future 02: Politics, Poetics, Place (4)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(20) > label > span` | `<span>Imaginaries of the Future 03: Utopia at the Border (2)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(21) > label > span` | `<span>Interview (2)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(22) > label > span` | `<span>Literature, Law and Psychoanalysis (13)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(23) > label > span` | `<span>Local and Universal in Irish Literature and Culture (8)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(24) > label > span` | `<span>Medieval Minds and Matter (5)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(25) > label > span` | `<span>Mnemosyne (4)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(26) > label > span` | `<span>Museum Engagement as Speculative Design (1)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(27) > label > span` | `<span>Muslims in the Media (6)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(28) > label > span` | `<span>New Approaches to Late Medieval Court Records (9)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(29) > label > span` | `<span>New Approaches to Medieval Water Studies (6)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(30) > label > span` | `<span>New Voices in Jewish-American Literature (8)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(31) > label > span` | `<span>Postcolonial Perspectives in Game Studies (12)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(32) > label > span` | `<span>Powering the Future: Energy Resources in Science Fiction and Fantasy (7)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(33) > label > span` | `<span>Pride Revisited: Cinema, Activism and Re-Activation (9)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(34) > label > span` | `<span>Production Archives 01: Puppets for Action (4)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(35) > label > span` | `<span>Production Archives 02: Production Contexts (5)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(36) > label > span` | `<span>Production Archives 03: Archival Practices (1)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(37) > label > span` | `<span>Reading in Ruins: Exploring Posthumanist Narrative Studies (8)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(38) > label > span` | `<span>Remaking Collections (12)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(39) > label > span` | `<span>Representing Classical Music in the Twenty-First Century (12)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(40) > label > span` | `<span>Representing Climate: Local to Global (4)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(41) > label > span` | `<span>Representing the Medieval in Popular Culture: Remembering the Angevins (5)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(42) > label > span` | `<span>Right-Wing Populism and Mediated Activism: Creative Responses and Counter-Narratives (6)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(43) > label > span` | `<span>Roundtable (1)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(44) > label > span` | `<span>Station Eleven and Twenty-First Century Writing (5)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(45) > label > span` | `<span>The Abolition of the University (8)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(46) > label > span` | `<span>The Encounter Between Asian and Western Art, 20th-21st Centuries (6)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(47) > label > span` | `<span>The Language of Perspective (5)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(48) > label > span` | `<span>The Medieval Brain (4)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(49) > label > span` | `<span>The Pathological Body: European Literary and Cultural Perspectives in the Age of Modern Medicine (7)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(50) > label > span` | `<span>The Politics and History of Menstruation: Contextualising the Scottish Campaign to End Period Poverty (10)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(51) > label > span` | `<span>The Public Curatorship of the Medieval Past (7)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(52) > label > span` | `<span>The Working-Class Avant-Garde (10)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(53) > label > span` | `<span>Utopian Art and Literature from Modern India (6)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(54) > label > span` | `<span>Waste: Disposability, Decay and Depletion (3)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(55) > label > span` | `<span>What’s Left? Marxism, Literature and Culture in the 21st Century (6)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(56) > label > span` | `<span>Writers and Intellectuals on Britain and Europe, 1918-2018 (9)</span>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[action=""]` | `<button action="" class="btn" type="submit">Apply</button>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[name="clear_all"]` | `<button class="btn" name="clear_all">Clear all</button>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#m_select-input-99123292-2a57-a72d-bcfd-cdbe553652e3` | `<input id="m_select-input-99123..." class="select-dropdown drop..." type="text" readonly="true" data-target="select-options-38d10..." aria-readonly="true" aria-required="false" role="combobox" aria-ow…` | [Failure label](#label) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `aside` | `<aside class="col s12 l4">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select[name="order_by"]` | `<select onchange="this.form.submit()" name="order_by" form="facet_form" tabindex="-1">` | [Failure select-name](#select-name) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `#paginate_by` | `<select onchange="this.form.submit()" name="paginate_by" id="paginate_by" form="facet_form" tabindex="-1">` | [Failure select-name](#select-name) | +| [articles/?theme=material](http://localhost:8000/olh/articles/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `.browser-default` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/4890/"]` | `<a href="/olh/keywords/4890/"> Saint Augustine-Ancient Greek-Pedagogy- Stephen D. Krashen-Second Language Acquisition<span aria-hidden="true"></span> </a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-content > span > a[target="_blank"]` | `<a target="_blank" href="https://doi.org/10.16995/olh.30" aria-label="D.O.I. for Non amabam Litteras Graecas. Note sulla Testimonianza di Sant’Agostino come Discente del Greco Antico Rivisitata alla L…` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B91-1` | `<a class="xref-bibr" href="#B91" aria-describedby="reference-header" id="cite-B91-1">Waquet, 2004: 251–254</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B9-1` | `<a class="xref-bibr" href="#B9" aria-describedby="reference-header" id="cite-B9-1">Canfora and Cardinale, 2012</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B58-1` | `<a class="xref-bibr" href="#B58" aria-describedby="reference-header" id="cite-B58-1">Olivia, 2008: 13</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B52-1` | `<a class="xref-bibr" href="#B52" aria-describedby="reference-header" id="cite-B52-1">Milanese, 2012: 67–82</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B67-1` | `<a class="xref-bibr" href="#B67" aria-describedby="reference-header" id="cite-B67-1">Ricucci, 2012</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B69-1` | `<a class="xref-bibr" href="#B69" aria-describedby="reference-header" id="cite-B69-1">2014a</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B59-1` | `<a class="xref-bibr" href="#B59" aria-describedby="reference-header" id="cite-B59-1">1975</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B68-1` | `<a class="xref-bibr" href="#B68" aria-describedby="reference-header" id="cite-B68-1">Ricucci, 2013</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B70-1` | `<a class="xref-bibr" href="#B70" aria-describedby="reference-header" id="cite-B70-1">2014b</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B35-1` | `<a class="xref-bibr" href="#B35" aria-describedby="reference-header" id="cite-B35-1">Krashen, 1991</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B25-1` | `<a class="xref-bibr" href="#B25" aria-describedby="reference-header" id="cite-B25-1">Howatt and Smith, 2002</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B81-1` | `<a class="xref-bibr" href="#B81" aria-describedby="reference-header" id="cite-B81-1">Titone, 1987: 5</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B81-2` | `<a class="xref-bibr" href="#B81" aria-describedby="reference-header" id="cite-B81-2">Titone, 1987: 5</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B24-1` | `<a class="xref-bibr" href="#B24" aria-describedby="reference-header" id="cite-B24-1">Howatt, 1984: 284</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B75-1` | `<a class="xref-bibr" href="#B75" aria-describedby="reference-header" id="cite-B75-1">Schulz, 1975</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B42-1` | `<a class="xref-bibr" href="#B42" aria-describedby="reference-header" id="cite-B42-1">Lightbown, 1985</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B43-1` | `<a class="xref-bibr" href="#B43" aria-describedby="reference-header" id="cite-B43-1">Lightbown, 2000</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B14-1` | `<a class="xref-bibr" href="#B14" aria-describedby="reference-header" id="cite-B14-1">Debyser, 1973: 63–68</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B65-1` | `<a class="xref-bibr" href="#B65" aria-describedby="reference-header" id="cite-B65-1">Puren, 1994</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B76-1` | `<a class="xref-bibr" href="#B76" aria-describedby="reference-header" id="cite-B76-1">Serra Borneto, 1998</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B39-1` | `<a class="xref-bibr" href="#B39" aria-describedby="reference-header" id="cite-B39-1">Kumaravadivelu, 1994</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B40-1` | `<a class="xref-bibr" href="#B40" aria-describedby="reference-header" id="cite-B40-1">2006</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B10-1` | `<a class="xref-bibr" href="#B10" aria-describedby="reference-header" id="cite-B10-1">Celce-murcia, 1980</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B84-1` | `<a class="xref-bibr" href="#B84" aria-describedby="reference-header" id="cite-B84-1">Van Patten and Williams, 2005: 25</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B36-1` | `<a class="xref-bibr" href="#B36" aria-describedby="reference-header" id="cite-B36-1">1994: 45–46</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B29-1` | `<a class="xref-bibr" href="#B29" aria-describedby="reference-header" id="cite-B29-1">Kirwan, 1994: 188</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B51-1` | `<a class="xref-bibr" href="#B51" aria-describedby="reference-header" id="cite-B51-1">McLynn, 2005</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n10-nm1 > sup` | `<sup>10</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B6-1` | `<a class="xref-bibr" href="#B6" aria-describedby="reference-header" id="cite-B6-1">Bellissima, 1955</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B11-1` | `<a class="xref-bibr" href="#B11" aria-describedby="reference-header" id="cite-B11-1">Collart, 1971</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B45-1` | `<a class="xref-bibr" href="#B45" aria-describedby="reference-header" id="cite-B45-1">Louth, 1989: 151</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n11-nm1 > sup` | `<sup>11</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n12-nm1 > sup` | `<sup>12</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n13-nm1 > sup` | `<sup>13</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n14-nm1 > sup` | `<sup>14</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n15-nm1 > sup` | `<sup>15</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n16-nm1 > sup` | `<sup>16</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B2-1` | `<a class="xref-bibr" href="#B2" aria-describedby="reference-header" id="cite-B2-1">Alfonsi, 1971: 42</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n17-nm1 > sup` | `<sup>17</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B7-1` | `<a class="xref-bibr" href="#B7" aria-describedby="reference-header" id="cite-B7-1">Bonner, 1986: 180–183</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B57-1` | `<a class="xref-bibr" href="#B57" aria-describedby="reference-header" id="cite-B57-1">Neraudau, 1996: 58–59</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n18-nm1 > sup` | `<sup>18</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n19-nm1 > sup` | `<sup>19</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n20-nm1 > sup` | `<sup>20</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B12-1` | `<a class="xref-bibr" href="#B12" aria-describedby="reference-header" id="cite-B12-1">Courcelle, 1943: 142</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B48-1` | `<a class="xref-bibr" href="#B48" aria-describedby="reference-header" id="cite-B48-1">Marrou, 1958<sup>4</sup>: 446 s.</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B78-1` | `<a class="xref-bibr" href="#B78" aria-describedby="reference-header" id="cite-B78-1">Solignac, 1962: 667</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n21-nm1 > sup` | `<sup>21</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n22-nm1 > sup` | `<sup>22</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n23-nm1 > sup` | `<sup>23</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n24-nm1 > sup` | `<sup>24</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n25-nm1 > sup` | `<sup>25</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n26-nm1 > sup` | `<sup>26</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n27-nm1 > sup` | `<sup>27</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n28-nm1 > sup` | `<sup>28</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n29-nm1 > sup` | `<sup>29</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B53-1` | `<a class="xref-bibr" href="#B53" aria-describedby="reference-header" id="cite-B53-1">Miraglia 2004: 231–234</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B22-1` | `<a class="xref-bibr" href="#B22" aria-describedby="reference-header" id="cite-B22-1">Green, 1951</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B1-1` | `<a class="xref-bibr" href="#B1" aria-describedby="reference-header" id="cite-B1-1">Adams, 2003: 213–245</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B1-2` | `<a class="xref-bibr" href="#B1" aria-describedby="reference-header" id="cite-B1-2">Adams, 2003: 192–194</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B56-1` | `<a class="xref-bibr" href="#B56" aria-describedby="reference-header" id="cite-B56-1">2010: 531</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n30-nm1 > sup` | `<sup>30</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n31-nm1 > sup` | `<sup>31</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n32-nm1 > sup` | `<sup>32</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n33-nm1 > sup` | `<sup>33</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B49-1` | `<a class="xref-bibr" href="#B49" aria-describedby="reference-header" id="cite-B49-1">Marrou, 1966: 365–366</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n34-nm1 > sup` | `<sup>34</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B77-1` | `<a class="xref-bibr" href="#B77" aria-describedby="reference-header" id="cite-B77-1">Simone, 1969: 106</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n35-nm1 > sup` | `<sup>35</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B31-1` | `<a class="xref-bibr" href="#B31" aria-describedby="reference-header" id="cite-B31-1">Korhonen, 1996: 107</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B19-1` | `<a class="xref-bibr" href="#B19" aria-describedby="reference-header" id="cite-B19-1">Flammini, 1990: 17</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B79-1` | `<a class="xref-bibr" href="#B79" aria-describedby="reference-header" id="cite-B79-1">Tagliaferro, 2008: 68</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n36-nm1 > sup` | `<sup>36</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B33-1` | `<a class="xref-bibr" href="#B33" aria-describedby="reference-header" id="cite-B33-1">1985: 4</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B34-1` | `<a class="xref-bibr" href="#B34" aria-describedby="reference-header" id="cite-B34-1">1987<sup>2</sup>: 66–67</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B8-1` | `<a class="xref-bibr" href="#B8" aria-describedby="reference-header" id="cite-B8-1">Cambiano, 1992: 526</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B74-1` | `<a class="xref-bibr" href="#B74" aria-describedby="reference-header" id="cite-B74-1">Sandys, 1910<sup>2</sup>: 235</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B20-1` | `<a class="xref-bibr" href="#B20" aria-describedby="reference-header" id="cite-B20-1">Gallo, 2003: 94</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n37-nm1 > sup` | `<sup>37</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B18-1` | `<a class="xref-bibr" href="#B18" aria-describedby="reference-header" id="cite-B18-1">Dombart and Kalb (ed.) 1960</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B92-1` | `<a class="xref-bibr" href="#B92" aria-describedby="reference-header" id="cite-B92-1">Weigel 1961</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B50-1` | `<a class="xref-bibr" href="#B50" aria-describedby="reference-header" id="cite-B50-1">Martin 1962</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B87-1` | `<a class="xref-bibr" href="#B87" aria-describedby="reference-header" id="cite-B87-1">Verheijen 1991</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B17-1` | `<a class="xref-bibr" href="#B17" aria-describedby="reference-header" id="cite-B17-1">Doignon 1997</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B82-1` | `<a class="xref-bibr" href="#B82" aria-describedby="reference-header" id="cite-B82-1">Too, 2001</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B90-1` | `<a class="xref-bibr" href="#B90" aria-describedby="reference-header" id="cite-B90-1">Vössing, 2003</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B62-1` | `<a class="xref-bibr" href="#B62" aria-describedby="reference-header" id="cite-B62-1">Pernot, 2008</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B5-1` | `<a class="xref-bibr" href="#B5" aria-describedby="reference-header" id="cite-B5-1">Bellandi and Ferri, 2008</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B41-1` | `<a class="xref-bibr" href="#B41" aria-describedby="reference-header" id="cite-B41-1">Laes, 2013</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B32-1` | `<a class="xref-bibr" href="#B32" aria-describedby="reference-header" id="cite-B32-1">Krashen, 1981</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B38-1` | `<a class="xref-bibr" href="#B38" aria-describedby="reference-header" id="cite-B38-1">Krashen and Terrell, 1983</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B37-1` | `<a class="xref-bibr" href="#B37" aria-describedby="reference-header" id="cite-B37-1">Krashen, 2003</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B44-1` | `<a class="xref-bibr" href="#B44" aria-describedby="reference-header" id="cite-B44-1">Lightbown and Spada, 2011<sup>3</sup>: 38</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B3-1` | `<a class="xref-bibr" href="#B3" aria-describedby="reference-header" id="cite-B3-1">Ando, 1994</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B88-1` | `<a class="xref-bibr" href="#B88" aria-describedby="reference-header" id="cite-B88-1">Vössing, 1992</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B89-1` | `<a class="xref-bibr" href="#B89" aria-describedby="reference-header" id="cite-B89-1">Vössing, 1997</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B55-1` | `<a class="xref-bibr" href="#B55" aria-describedby="reference-header" id="cite-B55-1">Moretti, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B86-1` | `<a class="xref-bibr" href="#B86" aria-describedby="reference-header" id="cite-B86-1">Vecchio, 1994</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B46-1` | `<a class="xref-bibr" href="#B46" aria-describedby="reference-header" id="cite-B46-1">Manetti, 1987: 226–227</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B64-1` | `<a class="xref-bibr" href="#B64" aria-describedby="reference-header" id="cite-B64-1">Preti, 1956</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B4-1` | `<a class="xref-bibr" href="#B4" aria-describedby="reference-header" id="cite-B4-1">Baratin, 1981</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B83-1` | `<a class="xref-bibr" href="#B83" aria-describedby="reference-header" id="cite-B83-1">Toom, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B47-1` | `<a class="xref-bibr" href="#B47" aria-describedby="reference-header" id="cite-B47-1">Markus, 1957</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B26-1` | `<a class="xref-bibr" href="#B26" aria-describedby="reference-header" id="cite-B26-1">Jackson, 1969</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B73-1` | `<a class="xref-bibr" href="#B73" aria-describedby="reference-header" id="cite-B73-1">Ruef, 1981</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B30-1` | `<a class="xref-bibr" href="#B30" aria-describedby="reference-header" id="cite-B30-1">Kirwan, 2001</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B23-1` | `<a class="xref-bibr" href="#B23" aria-describedby="reference-header" id="cite-B23-1">Henninger, 1989</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B60-1` | `<a class="xref-bibr" href="#B60" aria-describedby="reference-header" id="cite-B60-1">Paffenroth and Hughes, 2000</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B27-1` | `<a class="xref-bibr" href="#B27" aria-describedby="reference-header" id="cite-B27-1">Kaimio, 1979: 195–207</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B13-1` | `<a class="xref-bibr" href="#B13" aria-describedby="reference-header" id="cite-B13-1">Debut, 1983</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B15-1` | `<a class="xref-bibr" href="#B15" aria-describedby="reference-header" id="cite-B15-1">Dickey, 2012</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B53-2` | `<a class="xref-bibr" href="#B53" aria-describedby="reference-header" id="cite-B53-2">2004: 226–227</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B72-1` | `<a class="xref-bibr" href="#B72" aria-describedby="reference-header" id="cite-B72-1">Rochette, 2008: 89–90</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B85-1` | `<a class="xref-bibr" href="#B85" aria-describedby="reference-header" id="cite-B85-1">Van Patten and Benati, 2010: 43</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B21-1` | `<a class="xref-bibr" href="#B21" aria-describedby="reference-header" id="cite-B21-1">Gardner, 1985: 10</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B28-1` | `<a class="xref-bibr" href="#B28" aria-describedby="reference-header" id="cite-B28-1">1976<sup>2</sup>: 323</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B63-1` | `<a class="xref-bibr" href="#B63" aria-describedby="reference-header" id="cite-B63-1">1997: 126</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B61-1` | `<a class="xref-bibr" href="#B61" aria-describedby="reference-header" id="cite-B61-1">Pallotti, 2001<sup>2</sup>: 219–220</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B16-1` | `<a class="xref-bibr" href="#B16" aria-describedby="reference-header" id="cite-B16-1">Diller, 1978: 72</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B66-1` | `<a class="xref-bibr" href="#B66" aria-describedby="reference-header" id="cite-B66-1">Richards and Rodgers, 2001<sup>2</sup>: 9</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B80-1` | `<a class="xref-bibr" href="#B80" aria-describedby="reference-header" id="cite-B80-1">Titone, 1968: 100–101</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B71-1` | `<a class="xref-bibr" href="#B71" aria-describedby="reference-header" id="cite-B71-1">Rivers, 1964: 19–20</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B54-1` | `<a class="xref-bibr" href="#B54" aria-describedby="reference-header" id="cite-B54-1">Moreschini, 1979: 38 s.</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-B1-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-B1-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#block-7fx5tbwlb"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-B53-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#B58 > a[target="_blank"]` | `<a href="http://www.treellle.org/files/lll/QA1.pdf" target="_blank">http://www.treellle.org/files/lll/QA1.pdf</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-B81-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#block-pp3t71hxv"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[itemprop="email"] > span:nth-child(1)` | `<span>8346@example.org</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(1) > a[target="_blank"]` | `<a target="_blank" href="/olh/article/4403/galley/7575/view/">` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(2) > a` | `<a href="/olh/article/4403/galley/7575/download/">` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(3) > a` | `<a href="/olh/article/4403/galley/7576/download/">` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(4) > a` | `<a href="/olh/article/4403/galley/33913/download/">` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(5) > a` | `<a href="/olh/article/4403/galley/33914/download/">` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(6) > a` | `<a href="/olh/article/4403/galley/33915/download/">` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="info/"]` | `<a href="/olh/issue/401/info/"> Volume 1 • Issue 1 • 2015 </a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[rel="license"]` | `<a rel="license" href="https://www.example.com" title="licence test two html tags" target="_blank">` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `ul:nth-child(19) > li > a[target="_blank"]` | `<a target="_blank" href="https://doi.org/10.16995/olh.30" aria-label="D.O.I. for Non amabam Litteras Graecas. Note sulla Testimonianza di Sant’Agostino come Discente del Greco Antico Rivisitata alla L…` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="bbc.co.uk/"]` | `<a href="https://www.bbc.co.uk/">Link</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(31) > a` | `<a href="https://doi.org/10.16995/olh.6318">https://doi.org/10.16995/olh.6318</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#cite-B69-1` | `<a class="xref-bibr" href="#B69" aria-describedby="reference-header" id="cite-B69-1">2014a</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n3-nm1` | `<a class="xref-fn" href="#n3" id="n3-nm1"><sup>3</sup></a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#cite-B65-1` | `<a class="xref-bibr" href="#B65" aria-describedby="reference-header" id="cite-B65-1">Puren, 1994</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#cite-B36-1` | `<a class="xref-bibr" href="#B36" aria-describedby="reference-header" id="cite-B36-1">1994: 45–46</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n5-nm1` | `<a class="xref-fn" href="#n5" id="n5-nm1"><sup>5</sup></a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n1-nm1"]` | `<a class="footnotemarker" href="#n1-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n3-nm1"]` | `<a class="footnotemarker" href="#n3-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n4-nm1"]` | `<a class="footnotemarker" href="#n4-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n8-nm1"]` | `<a class="footnotemarker" href="#n8-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n9-nm1"]` | `<a class="footnotemarker" href="#n9-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#cite-B46-1` | `<a class="xref-bibr" href="#B46" aria-describedby="reference-header" id="cite-B46-1">Manetti, 1987: 226–227</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n12-nm1"]` | `<a class="footnotemarker" href="#n12-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n13-nm1"]` | `<a class="footnotemarker" href="#n13-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#cite-B47-1` | `<a class="xref-bibr" href="#B47" aria-describedby="reference-header" id="cite-B47-1">Markus, 1957</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#cite-B26-1` | `<a class="xref-bibr" href="#B26" aria-describedby="reference-header" id="cite-B26-1">Jackson, 1969</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n14-nm1"]` | `<a class="footnotemarker" href="#n14-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#cite-B30-1` | `<a class="xref-bibr" href="#B30" aria-describedby="reference-header" id="cite-B30-1">Kirwan, 2001</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n15-nm1"]` | `<a class="footnotemarker" href="#n15-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n16-nm1"]` | `<a class="footnotemarker" href="#n16-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n27-nm1"]` | `<a class="footnotemarker" href="#n27-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n30-nm1"]` | `<a class="footnotemarker" href="#n30-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#cite-B16-1` | `<a class="xref-bibr" href="#B16" aria-describedby="reference-header" id="cite-B16-1">Diller, 1978: 72</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[href$="#n34-nm1"]` | `<a class="footnotemarker" href="#n34-nm1"> ⮭</a>` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(1) > a[target="_blank"]` | `<a target="_blank" href="/olh/article/4403/galley/7575/view/">` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(2) > a` | `<a href="/olh/article/4403/galley/7575/download/">` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(3) > a` | `<a href="/olh/article/4403/galley/7576/download/">` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(4) > a` | `<a href="/olh/article/4403/galley/33913/download/">` | [Failure target-size](#target-size) | +| [article/id/4403/?theme=material](http://localhost:8000/olh/article/id/4403/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(5) > a` | `<a href="/olh/article/4403/galley/33914/download/">` | [Failure target-size](#target-size) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/1316/"]` | `<a href="/olh/keywords/1316/"> education<span aria-hidden="true">, </span> </a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/4892/"]` | `<a href="/olh/keywords/4892/"> political economy<span aria-hidden="true">, </span> </a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/4893/"]` | `<a href="/olh/keywords/4893/"> secular crisis<span aria-hidden="true">, </span> </a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/4894/"]` | `<a href="/olh/keywords/4894/"> university<span aria-hidden="true"></span> </a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-content > span > a[target="_blank"]` | `<a target="_blank" href="https://doi.org/10.16995/olh.15" aria-label="D.O.I. for DEV: Evaluation of Fresh and Frozen Beef Strip Loins of Equal Aging Periods for Palatability Traits">` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r20-1` | `<a class="xref-bibr" href="#r20" aria-describedby="reference-header" id="cite-r20-1">Iskandar et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r10-1` | `<a class="xref-bibr" href="#r10" aria-describedby="reference-header" id="cite-r10-1">Buckley et al., 1977</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r31-1` | `<a class="xref-bibr" href="#r31" aria-describedby="reference-header" id="cite-r31-1">Pietrasik and Janz, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r31-2` | `<a class="xref-bibr" href="#r31" aria-describedby="reference-header" id="cite-r31-2">Pietrasik and Janz, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-1` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-1">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-1` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-1">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-2` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-2">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r9-1` | `<a class="xref-bibr" href="#r9" aria-describedby="reference-header" id="cite-r9-1">Botinestean et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r43-1` | `<a class="xref-bibr" href="#r43" aria-describedby="reference-header" id="cite-r43-1">Zhang et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r28-1` | `<a class="xref-bibr" href="#r28" aria-describedby="reference-header" id="cite-r28-1">Martino and Zaritzky, 1988</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-2` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-2">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-3` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-3">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r41-1` | `<a class="xref-bibr" href="#r41" aria-describedby="reference-header" id="cite-r41-1">Wheeler et al., 1990</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-1` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-1">Lagerstedt et al., 2008</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-1` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-1">Hergenreder et al., 2013</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-3` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-3">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-2` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-2">Hergenreder et al., 2013</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-4` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-4">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-5` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-5">2014</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-4` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-4">2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-3` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-3">2013</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r31-3` | `<a class="xref-bibr" href="#r31" aria-describedby="reference-header" id="cite-r31-3">Pietrasik and Janz, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.xref-fig` | `<a class="xref-fig" href="#f1">Figure 1</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="f1"]` | `<a target="_blank" aria-describedby="f1" href="1.png">Download</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r13-1` | `<a class="xref-bibr" href="#r13" aria-describedby="reference-header" id="cite-r13-1">Drey et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r30-1` | `<a class="xref-bibr" href="#r30" aria-describedby="reference-header" id="cite-r30-1">Olson et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r32-1` | `<a class="xref-bibr" href="#r32" aria-describedby="reference-header" id="cite-r32-1">Prill et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r36-1` | `<a class="xref-bibr" href="#r36" aria-describedby="reference-header" id="cite-r36-1">Rice et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r8-1` | `<a class="xref-bibr" href="#r8" aria-describedby="reference-header" id="cite-r8-1">Beyer et al., 2021</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r15-1` | `<a class="xref-bibr" href="#r15" aria-describedby="reference-header" id="cite-r15-1">Farmer et al., 2022</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r3-1` | `<a class="xref-bibr" href="#r3" aria-describedby="reference-header" id="cite-r3-1">AMSA, 2015</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r8-2` | `<a class="xref-bibr" href="#r8" aria-describedby="reference-header" id="cite-r8-2">2021</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r13-2` | `<a class="xref-bibr" href="#r13" aria-describedby="reference-header" id="cite-r13-2">Drey et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r30-2` | `<a class="xref-bibr" href="#r30" aria-describedby="reference-header" id="cite-r30-2">Olson et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r32-2` | `<a class="xref-bibr" href="#r32" aria-describedby="reference-header" id="cite-r32-2">Prill et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r36-2` | `<a class="xref-bibr" href="#r36" aria-describedby="reference-header" id="cite-r36-2">Rice et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r15-2` | `<a class="xref-bibr" href="#r15" aria-describedby="reference-header" id="cite-r15-2">Farmer et al., 2022</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r3-2` | `<a class="xref-bibr" href="#r3" aria-describedby="reference-header" id="cite-r3-2">AMSA, 2015</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r15-3` | `<a class="xref-bibr" href="#r15" aria-describedby="reference-header" id="cite-r15-3">2022</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r39-1` | `<a class="xref-bibr" href="#r39" aria-describedby="reference-header" id="cite-r39-1">1999</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r23-1` | `<a class="xref-bibr" href="#r23" aria-describedby="reference-header" id="cite-r23-1">King et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r3-3` | `<a class="xref-bibr" href="#r3" aria-describedby="reference-header" id="cite-r3-3">AMSA, 2015</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r12-1` | `<a class="xref-bibr" href="#r12" aria-describedby="reference-header" id="cite-r12-1">2021</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r23-2` | `<a class="xref-bibr" href="#r23" aria-describedby="reference-header" id="cite-r23-2">King et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r23-3` | `<a class="xref-bibr" href="#r23" aria-describedby="reference-header" id="cite-r23-3">King et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r1-1` | `<a class="xref-bibr" href="#r1" aria-describedby="reference-header" id="cite-r1-1">1998</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r11-1` | `<a class="xref-bibr" href="#r11" aria-describedby="reference-header" id="cite-r11-1">Dahmer et al., 2022</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab1"]` | `<a class="xref-table" href="#tab1">Table 1</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="tab1"]` | `<a target="_blank" aria-describedby="tab1" href="table/tab1">Download</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="tab2"]` | `<a target="_blank" aria-describedby="tab2" href="table/tab2">Download</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm2 > sup > sup` | `<sup>ab</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm3 > sup > sup` | `<sup>bc</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm4 > sup > sup` | `<sup>cd</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm5 > sup > sup` | `<sup>cd</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm6 > sup > sup` | `<sup>de</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm8 > sup > sup` | `<sup>ef</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm10 > sup > sup` | `<sup>fg</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm13 > sup > sup` | `<sup>gh</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm14 > sup > sup` | `<sup>ghi</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm15 > sup > sup` | `<sup>hi</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab3"]` | `<a class="xref-table" href="#tab3">Table 3</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="tab3"]` | `<a target="_blank" aria-describedby="tab3" href="table/tab3">Download</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab4"]` | `<a class="xref-table" href="#tab4">Table 4</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab5"]` | `<a class="xref-table" href="#tab5">Table 5</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="tab4"]` | `<a target="_blank" aria-describedby="tab4" href="table/tab4">Download</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="tab5"]` | `<a target="_blank" aria-describedby="tab5" href="table/tab5">Download</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab6"]` | `<a class="xref-table" href="#tab6">Table 6</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="tab6"]` | `<a target="_blank" aria-describedby="tab6" href="table/tab6">Download</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab7"]` | `<a class="xref-table" href="#tab7">Table 7</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="tab7"]` | `<a target="_blank" aria-describedby="tab7" href="table/tab7">Download</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab8"]` | `<a class="xref-table" href="#tab8">Tables 8</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="tab8"]` | `<a target="_blank" aria-describedby="tab8" href="table/tab8">Download</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab8-fn1-nm14 > sup > sup` | `<sup>ab</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="tab9"]` | `<a target="_blank" aria-describedby="tab9" href="table/tab9">Download</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab9-fn1-nm9 > sup > sup` | `<sup>ab</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab9-fn1-nm15 > sup > sup` | `<sup>ab</sup>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-2` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-2">Lagerstedt et al., 2008</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-6` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-6">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-5` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-5">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r33-1` | `<a class="xref-bibr" href="#r33" aria-describedby="reference-header" id="cite-r33-1">Rahelić et al., 1985</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-6` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-6">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-3` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-3">Lagerstedt et al., 2008</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-7` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-7">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-7` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-7">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-4` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-4">2008</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-8` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-8">2014</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r24-1` | `<a class="xref-bibr" href="#r24" aria-describedby="reference-header" id="cite-r24-1">Koohmaraie, 1990</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r24-2` | `<a class="xref-bibr" href="#r24" aria-describedby="reference-header" id="cite-r24-2">Koohmaraie, 1990</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r25-1` | `<a class="xref-bibr" href="#r25" aria-describedby="reference-header" id="cite-r25-1">Kristensen et al., 2006</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-9` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-9">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-8` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-8">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-10` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-10">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-9` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-9">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r41-2` | `<a class="xref-bibr" href="#r41" aria-describedby="reference-header" id="cite-r41-2">Wheeler et al., 1990</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-5` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-5">Lagerstedt et al., 2008</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-11` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-11">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-10` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-10">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-4` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-4">2013</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r18-1` | `<a class="xref-bibr" href="#r18" aria-describedby="reference-header" id="cite-r18-1">Grujić et al., 1993</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-11` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-11">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-5` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-5">2013</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r27-1` | `<a class="xref-bibr" href="#r27" aria-describedby="reference-header" id="cite-r27-1">Leygonie et al., 2012</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-12` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-12">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r22-1` | `<a class="xref-bibr" href="#r22" aria-describedby="reference-header" id="cite-r22-1">Kim et al., 2018</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-13` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-13">2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-14` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-14">2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-15` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-15">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r27-2` | `<a class="xref-bibr" href="#r27" aria-describedby="reference-header" id="cite-r27-2">Leygonie et al., 2012</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-16` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-16">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r22-2` | `<a class="xref-bibr" href="#r22" aria-describedby="reference-header" id="cite-r22-2">Kim et al., 2018</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r37-1` | `<a class="xref-bibr" href="#r37" aria-describedby="reference-header" id="cite-r37-1">Sánchez del Pulgar et al., 2012</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r14-1` | `<a class="xref-bibr" href="#r14" aria-describedby="reference-header" id="cite-r14-1">English et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r35-1` | `<a class="xref-bibr" href="#r35" aria-describedby="reference-header" id="cite-r35-1">Ramanathan et al., 2020</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r14-2` | `<a class="xref-bibr" href="#r14" aria-describedby="reference-header" id="cite-r14-2">English et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r21-1` | `<a class="xref-bibr" href="#r21" aria-describedby="reference-header" id="cite-r21-1">Jeong et al., 2011</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r7-1` | `<a class="xref-bibr" href="#r7" aria-describedby="reference-header" id="cite-r7-1">Bekhit and Faustman, 2005</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r40-1` | `<a class="xref-bibr" href="#r40" aria-describedby="reference-header" id="cite-r40-1">2014</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-6` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-6">Hergenreder et al., 2013</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r21-2` | `<a class="xref-bibr" href="#r21" aria-describedby="reference-header" id="cite-r21-2">Jeong et al., 2011</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r29-1` | `<a class="xref-bibr" href="#r29" aria-describedby="reference-header" id="cite-r29-1">Nair et al., 2017</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r34-1` | `<a class="xref-bibr" href="#r34" aria-describedby="reference-header" id="cite-r34-1">Rahman et al., 2015</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r38-1` | `<a class="xref-bibr" href="#r38" aria-describedby="reference-header" id="cite-r38-1">Setyabrata and Kim, 2019</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r2-1` | `<a class="xref-bibr" href="#r2" aria-describedby="reference-header" id="cite-r2-1">Al-Dalali et al., 2022</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r34-2` | `<a class="xref-bibr" href="#r34" aria-describedby="reference-header" id="cite-r34-2">Rahman et al., 2015</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r38-2` | `<a class="xref-bibr" href="#r38" aria-describedby="reference-header" id="cite-r38-2">Setyabrata and Kim, 2019</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r43-2` | `<a class="xref-bibr" href="#r43" aria-describedby="reference-header" id="cite-r43-2">Zhang et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r42-1` | `<a class="xref-bibr" href="#r42" aria-describedby="reference-header" id="cite-r42-1">Xia et al., 2009</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r6-1` | `<a class="xref-bibr" href="#r6" aria-describedby="reference-header" id="cite-r6-1">Bao et al., 2021</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r42-2` | `<a class="xref-bibr" href="#r42" aria-describedby="reference-header" id="cite-r42-2">Xia et al., 2009</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r44-1` | `<a class="xref-bibr" href="#r44" aria-describedby="reference-header" id="cite-r44-1">Zhang et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r27-3` | `<a class="xref-bibr" href="#r27" aria-describedby="reference-header" id="cite-r27-3">Leygonie et al., 2012</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-17` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-17">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r22-3` | `<a class="xref-bibr" href="#r22" aria-describedby="reference-header" id="cite-r22-3">Kim et al., 2018</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r31-4` | `<a class="xref-bibr" href="#r31" aria-describedby="reference-header" id="cite-r31-4">Pietrasik and Janz, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r1 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/S0309-1740(97)00101-0" target="_blank">https://doi.org/10.1016/S0309-1740(97)00101-0</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r2 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.foodchem.2021.131881" target="_blank">https://doi.org/10.1016/j.foodchem.2021.131881</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r3-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r3-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#block-01aku5xgs"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r5 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2016.02.006" target="_blank">https://doi.org/10.1016/j.meatsci.2016.02.006</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-5"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(5)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-6"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(6)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-7"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(7)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-8"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(8)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-9"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(9)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-10"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(10)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-11"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(11)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-12"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(12)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-13"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(13)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-14"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(14)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-15"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(15)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-16"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(16)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-17"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(17)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r6 > a[target="_blank"]` | `<a href="https://doi.org/10.1111/1541-4337.12841" target="_blank">https://doi.org/10.1111/1541-4337.12841</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r7 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2005.04.032" target="_blank">https://doi.org/10.1016/j.meatsci.2005.04.032</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r8 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb.12424" target="_blank">https://doi.org/10.22175/mmb.12424</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r8-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r8-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r9 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.lwt.2016.07.026" target="_blank">https://doi.org/10.1016/j.lwt.2016.07.026</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r10 > a[target="_blank"]:nth-child(2)` | `<a href="https://www.jstor.org/stable/25557929" target="_blank">https://www.jstor.org/stable/25557929</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r10 > a[target="_blank"]:nth-child(3)` | `<a href="https://www.jstor.org/stable/25557929" target="_blank">https://www.jstor.org/stable/25557929</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r11 > a[target="_blank"]` | `<a href="https://doi.org/10.1093/tas/txac060" target="_blank">https://doi.org/10.1093/tas/txac060</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r12 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2021.108454" target="_blank">https://doi.org/10.1016/j.meatsci.2021.108454</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r13 > a[target="_blank"]` | `<a href="https://doi.org/10.1093/jas/sky435" target="_blank">https://doi.org/10.1093/jas/sky435</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r13-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r13-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r14 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/jas.2016-0561" target="_blank">https://doi.org/10.2527/jas.2016-0561</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r14-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r14-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r15 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb.15488" target="_blank">https://doi.org/10.22175/mmb.15488</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r15-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r15-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r15-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r16 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/S0309-1740(03)00081-0" target="_blank">https://doi.org/10.1016/S0309-1740(03)00081-0</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r17 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/jas.2014-7613" target="_blank">https://doi.org/10.2527/jas.2014-7613</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-5"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(5)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-6"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(6)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-7"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(7)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-8"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(8)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-9"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(9)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-10"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(10)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-11"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(11)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r18 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/0309-1740(93)90003-Z" target="_blank">https://doi.org/10.1016/0309-1740(93)90003-Z</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r19 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/jas.2012-5223" target="_blank">https://doi.org/10.2527/jas.2012-5223</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-5"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(5)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-6"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(6)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r20 > a[target="_blank"]` | `<a href="https://doi.org/10.1088/1755-1315/365/1/012072" target="_blank">https://doi.org/10.1088/1755-1315/365/1/012072</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r21 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.foodres.2011.08.023" target="_blank">https://doi.org/10.1016/j.foodres.2011.08.023</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r21-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r21-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r22 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2018.01.024" target="_blank">https://doi.org/10.1016/j.meatsci.2018.01.024</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r22-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r22-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r22-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r23 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb.12473" target="_blank">https://doi.org/10.22175/mmb.12473</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r23-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r23-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r23-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r24 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/1990.683659x" target="_blank">https://doi.org/10.2527/1990.683659x</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r24-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r24-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r25 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2005.06.010" target="_blank">https://doi.org/10.1016/j.meatsci.2005.06.010</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r26 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2008.01.009" target="_blank">https://doi.org/10.1016/j.meatsci.2008.01.009</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-5"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(5)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r27 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2012.01.013" target="_blank">https://doi.org/10.1016/j.meatsci.2012.01.013</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r27-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r27-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r27-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r28 > a[target="_blank"]` | `<a href="https://doi.org/10.1111/j.1365-2621.1988.tb07802.x" target="_blank">https://doi.org/10.1111/j.1365-2621.1988.tb07802.x</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r29 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb2017.07.0037" target="_blank">https://doi.org/10.22175/mmb2017.07.0037</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r30 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb2019.07.0022" target="_blank">https://doi.org/10.22175/mmb2019.07.0022</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r30-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r30-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r31 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2008.10.006" target="_blank">https://doi.org/10.1016/j.meatsci.2008.10.006</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r31-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r31-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#block-4bkp4vwtp"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r31-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r32 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb2019.07.0024" target="_blank">https://doi.org/10.22175/mmb2019.07.0024</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r32-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r32-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r33 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/0309-1740(85)90082-8" target="_blank">https://doi.org/10.1016/0309-1740(85)90082-8</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r34 > a[target="_blank"]` | `<a href="https://doi.org/10.5851/kosfa.2015.35.6.772" target="_blank">https://doi.org/10.5851/kosfa.2015.35.6.772</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r34-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r34-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r35 > a[target="_blank"]` | `<a href="https://doi.org/10.1021/acs.jafc.9b08098" target="_blank">https://doi.org/10.1021/acs.jafc.9b08098</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r36 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb2019.07.0027" target="_blank">https://doi.org/10.22175/mmb2019.07.0027</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r36-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r36-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r37 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2011.11.024" target="_blank">https://doi.org/10.1016/j.meatsci.2011.11.024</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r38 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2019.01.007" target="_blank">https://doi.org/10.1016/j.meatsci.2019.01.007</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r38-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r38-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r39 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/1999.77102693x" target="_blank">https://doi.org/10.2527/1999.77102693x</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r40 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2014.06.032" target="_blank">https://doi.org/10.1016/j.meatsci.2014.06.032</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r41 > a[target="_blank"]` | `<a href="https://doi.org/10.1111/j.1365-2621.1990.tb06748.x" target="_blank">https://doi.org/10.1111/j.1365-2621.1990.tb06748.x</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r41-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r41-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r42 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2009.05.003" target="_blank">https://doi.org/10.1016/j.meatsci.2009.05.003</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r42-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r42-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r43 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.foodchem.2022.133874" target="_blank">https://doi.org/10.1016/j.foodchem.2022.133874</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r43-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r43-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r44 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2018.11.018" target="_blank">https://doi.org/10.1016/j.meatsci.2018.11.018</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[itemprop="email"] > span:nth-child(1)` | `<span>6504@example.org</span>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(1) > a[target="_blank"]` | `<a target="_blank" href="/olh/article/4405/galley/7579/view/">` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(2) > a` | `<a href="/olh/article/4405/galley/7579/download/">` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(3) > a` | `<a href="/olh/article/4405/galley/7580/download/">` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(4) > a` | `<a href="/olh/article/4405/galley/33919/download/">` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="info/"]` | `<a href="/olh/issue/401/info/"> Volume 1 • Issue 1 • 2015 </a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `ul:nth-child(16) > li > a` | `<a href="http://localhost:8000/olh/download/article/4405/supp_file/783/">figure 1</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[rel="license"]` | `<a rel="license" href="https://creativecomm..." title="Attribution — You mu..." target="_blank">` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `ul:nth-child(22) > li > a[target="_blank"]` | `<a target="_blank" href="https://doi.org/10.16995/olh.15" aria-label="D.O.I. for DEV: Evaluation of Fresh and Frozen Beef Strip Loins of Equal Aging Periods for Palatability Traits">` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"]` | `<a href="https://www.openlibhums.org"> Open Library of Humanities </a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.list-inline > li:nth-child(3) > a` | `<a href="https://www.openlibhums.org/site/privacy"> Privacy Policy </a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="accessibility/"]` | `<a href="/olh/accessibility/">Accessibility</a>` | [Failure color-contrast](#color-contrast) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [link-name](https://dequeuniversity.com/rules/axe/4.11/link-name?application=playwright) | serious | `#logo-container` | `<a id="logo-container" href="/olh/" class="brand-logo"> <img src="/media/cover_images/4eb6c012-c598-4b2c-aaf0-64b02471f4c7.png" class="header-override-image" alt=""> </a>…` | [Failure link-name](#link-name) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `#reflist > ul` | `<ul>` | [Failure list 2](#list-2) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select` | `<select name="language" onchange="this.form.submit()" class="browser-default language-select" autocomplete="off">` | [Failure select-name](#select-name) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#cite-r13-1` | `<a class="xref-bibr" href="#r13" aria-describedby="reference-header" id="cite-r13-1">Drey et al., 2019</a>` | [Failure target-size](#target-size) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#cite-r41-2` | `<a class="xref-bibr" href="#r41" aria-describedby="reference-header" id="cite-r41-2">Wheeler et al., 1990</a>` | [Failure target-size](#target-size) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[data-citation-id="cite-r5-1"]` | `<a href="#block-t5nrhkj7h" role="doc-backlink" class="section-link" title="Introduction" data-citation-id="cite-r5-1" aria-label="Introduction 1, Aroeira et al., 2016"><span aria-hidden="true">--…` | [Failure target-size](#target-size) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[data-citation-id="cite-r5-2"]` | `<a href="#block-t5nrhkj7h" role="doc-backlink" class="section-link" title="Introduction" data-citation-id="cite-r5-2" aria-label="Introduction 2, Aroeira et al., 2016"><span aria-hidden="true">--…` | [Failure target-size](#target-size) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `a[data-citation-id="cite-r5-3"]` | `<a href="#block-t5nrhkj7h" role="doc-backlink" class="section-link" title="Introduction" data-citation-id="cite-r5-3" aria-label="Introduction 3, Aroeira et al., 2016"><span aria-hidden="true">--…` | [Failure target-size](#target-size) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(1) > a[target="_blank"]` | `<a target="_blank" href="/olh/article/4405/galley/7579/view/">` | [Failure target-size](#target-size) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(2) > a` | `<a href="/olh/article/4405/galley/7579/download/">` | [Failure target-size](#target-size) | +| [article/id/4405/?theme=material](http://localhost:8000/olh/article/id/4405/?theme=material) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `ul:nth-child(8) > li:nth-child(3) > a` | `<a href="/olh/article/4405/galley/7580/download/">` | [Failure target-size](#target-size) | diff --git a/a11y/results/markdown/olh.md b/a11y/results/markdown/olh.md new file mode 100644 index 0000000..ee0a2bf --- /dev/null +++ b/a11y/results/markdown/olh.md @@ -0,0 +1,923 @@ +# OLH Accessibility report (WCAG 2.2) + +**URLs tested:** 23 +**URLs passing (no violations):** 0 +**URLs with violations:** 23 +**Total rule violations:** 49 +**Total failing elements (nodes):** 702 + +## Summary by URL + +| URL | Errors | Status | +| --- | --- | --- | +| http://localhost:8000/?theme=olh | 6 | :x: fail | +| http://localhost:8000/404/?theme=olh | 4 | :x: fail | +| http://localhost:8000/journals/?theme=olh | 3 | :x: fail | +| http://localhost:8000/contact/?theme=olh | 4 | :x: fail | +| http://localhost:8000/olh/?theme=olh | 13 | :x: fail | +| http://localhost:8000/olh/accessibility/?theme=olh | 2 | :x: fail | +| http://localhost:8000/olh/contact/?theme=olh | 3 | :x: fail | +| http://localhost:8000/olh/editorialteam/?theme=olh | 17 | :x: fail | +| http://localhost:8000/olh/search/?theme=olh | 5 | :x: fail | +| http://localhost:8000/olh/site/about/?theme=olh | 17 | :x: fail | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 16 | :x: fail | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 54 | :x: fail | +| http://localhost:8000/olh/submissions/?theme=olh | 16 | :x: fail | +| http://localhost:8000/olh/issues/?theme=olh | 3 | :x: fail | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 3 | :x: fail | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 3 | :x: fail | +| http://localhost:8000/olh/collections/?theme=olh | 2 | :x: fail | +| http://localhost:8000/olh/collections/846/?theme=olh | 54 | :x: fail | +| http://localhost:8000/olh/news/?theme=olh | 14 | :x: fail | +| http://localhost:8000/olh/news/429/?theme=olh | 3 | :x: fail | +| http://localhost:8000/olh/articles/?theme=olh | 7 | :x: fail | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 160 | :x: fail | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 293 | :x: fail | + +## Rules run and results + +All rules executed in this run (WCAG 2.2 Level A and AA, ACT). Status indicates whether the rule had any violations across the tested URLs. + +| Rule ID | Description | WCAG criteria | Errors | Status | +| --- | --- | --- | --- | --- | +| aria-allowed-attr | Elements must only use supported ARIA attributes | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-allowed-role | ARIA role should be appropriate for the element | — | | :white_check_mark: pass | +| aria-command-name | ARIA commands must have an accessible name | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-conditional-attr | ARIA attributes must be used as specified for the element's role | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-deprecated-role | Deprecated ARIA roles must not be used | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-hidden-body | aria-hidden="true" must not be present on the document body | WCAG 2.0 Level A; Success Criterion 1.3.1; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-hidden-focus | ARIA hidden element must not be focusable or contain focusable elements | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-prohibited-attr | Elements must only use permitted ARIA attributes | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-required-attr | Required ARIA attributes must be provided | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-required-children | Certain ARIA roles must contain particular children | WCAG 2.0 Level A; Success Criterion 1.3.1 | | :white_check_mark: pass | +| aria-required-parent | Certain ARIA roles must be contained by particular parents | WCAG 2.0 Level A; Success Criterion 1.3.1 | | :white_check_mark: pass | +| aria-roles | ARIA roles used must conform to valid values | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-valid-attr | ARIA attributes must conform to valid names | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| aria-valid-attr-value | ARIA attributes must conform to valid values | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| avoid-inline-spacing | Inline text spacing must be adjustable with custom stylesheets | WCAG 2.1 Level AA | | :white_check_mark: pass | +| button-name | Buttons must have discernible text | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| bypass | Page must have means to bypass repeated blocks | WCAG 2.0 Level A; Success Criterion 2.4.1 | | :white_check_mark: pass | +| color-contrast | Elements must meet minimum color contrast ratio thresholds | WCAG 2.0 Level AA; Success Criterion 1.4.3 | 674 | :x: fail | +| document-title | Documents must have `<title>` element to aid in navigation | WCAG 2.0 Level A; Success Criterion 2.4.2 | 1 | :x: fail | +| duplicate-id-aria | IDs used in ARIA and labels must be unique | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| empty-heading | Headings should not be empty | — | | :white_check_mark: pass | +| heading-order | Heading levels should only increase by one | — | 3 | :x: fail | +| html-has-lang | `<html>` element must have a lang attribute | WCAG 2.0 Level A; Success Criterion 3.1.1 | 4 | :x: fail | +| image-alt | Images must have alternative text | WCAG 2.0 Level A; Success Criterion 1.1.1 | 1 | :x: fail | +| image-redundant-alt | Alternative text of images should not be repeated as text | — | | :white_check_mark: pass | +| landmark-banner-is-top-level | Banner landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-contentinfo-is-top-level | Contentinfo landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-main-is-top-level | Main landmark should not be contained in another landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-banner | Document should not have more than one banner landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-contentinfo | Document should not have more than one contentinfo landmark | — | | :white_check_mark: pass | +| landmark-no-duplicate-main | Document should not have more than one main landmark | — | | :white_check_mark: pass | +| landmark-one-main | Document should have one main landmark | — | | :white_check_mark: pass | +| landmark-unique | Landmarks should have a unique role or role/label/title (i.e. accessible name) combination | — | 2 | :x: fail | +| link-name | Links must have discernible text | WCAG 2.0 Level A; Success Criterion 2.4.4; Success Criterion 4.1.2 | | :white_check_mark: pass | +| list | `<ul>` and `<ol>` must only directly contain `<li>`, `<script>` or `<template>` elements | WCAG 2.0 Level A; Success Criterion 1.3.1 | 2 | :x: fail | +| listitem | `<li>` elements must be contained in a `<ul>` or `<ol>` | WCAG 2.0 Level A; Success Criterion 1.3.1 | | :white_check_mark: pass | +| meta-viewport | Zooming and scaling must not be disabled | WCAG 2.0 Level AA; Success Criterion 1.4.4 | | :white_check_mark: pass | +| meta-viewport-large | Users should be able to zoom and scale the text up to 500% | — | | :white_check_mark: pass | +| nested-interactive | Interactive controls must not be nested | WCAG 2.0 Level A; Success Criterion 4.1.2 | | :white_check_mark: pass | +| page-has-heading-one | Page should contain a level-one heading | — | 1 | :x: fail | +| region | All page content should be contained by landmarks | — | | :white_check_mark: pass | +| skip-link | The skip-link target should exist and be focusable | — | | :white_check_mark: pass | +| tabindex | Elements should not have tabindex greater than zero | — | | :white_check_mark: pass | +| target-size | All touch targets must be 24px large, or leave sufficient space | WCAG 2.2 Level AA; Success Criterion 2.5.8 | 3 | :x: fail | + +--- + +## Details by URL + +## Failure summary reference + +Each issue in the details below links to one of these summaries. + +<span id="color-contrast"></span> +### Failure color-contrast (674) + +**Related WCAG criteria:** + +- WCAG 2.0 Level AA +- Success Criterion 1.4.3 + +- Element has insufficient color contrast. + +<span id="document-title"></span> +### Failure document-title (1) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 2.4.2 + +- Document does not have a non-empty `<title>` element + +<span id="heading-order"></span> +### Failure heading-order (3) + +- Heading order invalid + +<span id="html-has-lang"></span> +### Failure html-has-lang (4) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 3.1.1 + +- The `<html>` element does not have a lang attribute + +<span id="image-alt"></span> +### Failure image-alt (1) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 1.1.1 + +- Element does not have an alt attribute +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="label"></span> +### Failure label (3) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 4.1.2 + +- Element does not have an implicit (wrapped) `<label>` +- Element does not have an explicit `<label>` +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element has no placeholder attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="landmark-complementary-is-top-level"></span> +### Failure landmark-complementary-is-top-level (6) + +- The null landmark is contained in another landmark. + +<span id="landmark-unique"></span> +### Failure landmark-unique (2) + +- The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable + +<span id="list-1"></span> +### Failure list 1 (1) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 1.3.1 + +- List element has direct children that are not allowed: ul + +<span id="list-2"></span> +### Failure list 2 (1) + +- List element has direct children that are not allowed: h2 + +<span id="page-has-heading-one"></span> +### Failure page-has-heading-one (1) + +- Page must have a level-one heading + +<span id="select-name"></span> +### Failure select-name (2) + +**Related WCAG criteria:** + +- WCAG 2.0 Level A +- Success Criterion 4.1.2 + +- Element does not have an implicit (wrapped) `<label>` +- Element does not have an explicit `<label>` +- aria-label attribute does not exist or is empty +- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty +- Element has no title attribute +- Element's default semantics were not overridden with role="none" or role="presentation" + +<span id="target-size"></span> +### Failure target-size (3) + +**Related WCAG criteria:** + +- WCAG 2.2 Level AA +- Success Criterion 2.5.8 + +- Target has insufficient size + +--- + +## Results + +| Page | Rule | Impact | Selector | HTML | Issue ref | +| --- | --- | --- | --- | --- | --- | +| [?theme=olh](http://localhost:8000/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=olh](http://localhost:8000/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [?theme=olh](http://localhost:8000/?theme=olh) | [html-has-lang](https://dequeuniversity.com/rules/axe/4.11/html-has-lang?application=playwright) | serious | `html` | `<html class="wf-loading wf-proximanova-n7-loading wf-proximanova-n1-loading wf-proximanova-n6-loading wf-proximanova-n4-loading wf-proximanova-n3-loading wf-merriweather-n7-loading wf-merriweather-n4-…` | [Failure html-has-lang](#html-has-lang) | +| [?theme=olh](http://localhost:8000/?theme=olh) | [image-alt](https://dequeuniversity.com/rules/axe/4.11/image-alt?application=playwright) | critical | `.large-6.columns:nth-child(2) > a > img` | `<img class="" src="https://www.openlibhums.org/media/press/Conference_programme.png">` | [Failure image-alt](#image-alt) | +| [?theme=olh](http://localhost:8000/?theme=olh) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `header > nav` | `<nav>` | [Failure landmark-unique](#landmark-unique) | +| [?theme=olh](http://localhost:8000/?theme=olh) | [page-has-heading-one](https://dequeuniversity.com/rules/axe/4.11/page-has-heading-one?application=playwright) | moderate | `html` | `<html class="wf-loading wf-proximanova-n7-loading wf-proximanova-n1-loading wf-proximanova-n6-loading wf-proximanova-n4-loading wf-proximanova-n3-loading wf-merriweather-n7-loading wf-merriweather-n4-…` | [Failure page-has-heading-one](#page-has-heading-one) | +| [404/?theme=olh](http://localhost:8000/404/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [404/?theme=olh](http://localhost:8000/404/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [404/?theme=olh](http://localhost:8000/404/?theme=olh) | [document-title](https://dequeuniversity.com/rules/axe/4.11/document-title?application=playwright) | serious | `html` | `<html class="wf-loading wf-proximanova-n1-loading wf-proximanova-n6-loading wf-proximanova-n4-loading wf-proximanova-n3-loading wf-merriweather-n7-loading wf-merriweather-i4-loading wf-merriweather-i7…` | [Failure document-title](#document-title) | +| [404/?theme=olh](http://localhost:8000/404/?theme=olh) | [html-has-lang](https://dequeuniversity.com/rules/axe/4.11/html-has-lang?application=playwright) | serious | `html` | `<html class="wf-loading wf-proximanova-n1-loading wf-proximanova-n6-loading wf-proximanova-n4-loading wf-proximanova-n3-loading wf-merriweather-n7-loading wf-merriweather-i4-loading wf-merriweather-i7…` | [Failure html-has-lang](#html-has-lang) | +| [journals/?theme=olh](http://localhost:8000/journals/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#social-links > .button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [journals/?theme=olh](http://localhost:8000/journals/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [journals/?theme=olh](http://localhost:8000/journals/?theme=olh) | [html-has-lang](https://dequeuniversity.com/rules/axe/4.11/html-has-lang?application=playwright) | serious | `html` | `<html class="wf-merriweather-i7-active wf-proximanova-n7-active wf-proximanova-n6-active wf-proximanova-n1-active wf-proximanova-n4-active wf-merriweather-n7-active wf-proximanova-n3-active wf-merriwe…` | [Failure html-has-lang](#html-has-lang) | +| [contact/?theme=olh](http://localhost:8000/contact/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(1)` | `<a class="button" style="background-color: #1d9bf0;" href="https://twitter.com/openlibhums" target="_blank"> Twitter</a>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=olh](http://localhost:8000/contact/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button[target="_blank"]:nth-child(3)` | `<a class="button" style="background-color: #ee802f;" href="https://openlibhums.us4.list-manage.com/subscribe?u=db2756fc808a4b20e7a2c2c31&id=0d74ef29f6" target="_blank"> Mailing List</a>` | [Failure color-contrast](#color-contrast) | +| [contact/?theme=olh](http://localhost:8000/contact/?theme=olh) | [html-has-lang](https://dequeuniversity.com/rules/axe/4.11/html-has-lang?application=playwright) | serious | `html` | `<html class="wf-proximanova-n7-active wf-proximanova-n4-active wf-merriweather-n7-active wf-proximanova-n1-active wf-merriweather-i7-active wf-merriweather-i4-active wf-merriweather-n4-active wf-proxi…` | [Failure html-has-lang](#html-has-lang) | +| [contact/?theme=olh](http://localhost:8000/contact/?theme=olh) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#id_captcha_0` | `<input type="text" name="captcha_0" size="5" required="" id="id_captcha_0">` | [Failure label](#label) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `input[value="Search"]` | `<input type="submit" class="button" value="Search">` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(6) > a:nth-child(2)` | `<a style="background-color: rgb(255, 255, 255);" href="https://olh.openlibhums.org/collections/collection/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(3)` | `<a style="background-color: rgb(255, 255, 255);" href="https://olh.openlibhums.org/site/special-collections/">how to apply</a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-759"]` | `<a class="button" href="/olh/news/759/" aria-describedby="news-759"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-758"]` | `<a class="button" href="/olh/news/758/" aria-describedby="news-758"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-757"]` | `<a class="button" href="/olh/news/757/" aria-describedby="news-757"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-756"]` | `<a class="button" href="/olh/news/756/" aria-describedby="news-756"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-755"]` | `<a class="button" href="/olh/news/755/" aria-describedby="news-755"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [heading-order](https://dequeuniversity.com/rules/axe/4.11/heading-order?application=playwright) | moderate | `.large-12.columns > h4` | `<h4 class="">History of the Journal</h4>` | [Failure heading-order](#heading-order) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `input[type="text"]` | `<input name="article_search" class="input-group-field" type="text">` | [Failure label](#label) | +| [olh/?theme=olh](http://localhost:8000/olh/?theme=olh) | [landmark-unique](https://dequeuniversity.com/rules/axe/4.11/landmark-unique?application=playwright) | moderate | `header > nav` | `<nav>` | [Failure landmark-unique](#landmark-unique) | +| [olh/accessibility/?theme=olh](http://localhost:8000/olh/accessibility/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/accessibility/?theme=olh](http://localhost:8000/olh/accessibility/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=olh ](http://localhost:8000/olh/contact/?theme=olh ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=olh ](http://localhost:8000/olh/contact/?theme=olh ) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/contact/?theme=olh ](http://localhost:8000/olh/contact/?theme=olh ) | [label](https://dequeuniversity.com/rules/axe/4.11/label?application=playwright) | critical | `#id_captcha_0` | `<input type="text" name="captcha_0" size="5" required="" id="id_captcha_0">` | [Failure label](#label) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="ollqi2-eq"] > .medium-3.columns:nth-child(1) > .callout[data-equalizer-watch=""] > p:nth-child(5) > small > a` | `<a href="/olh/profile/76ce2832-629c-4240-a37b-a3772baba951/" aria-describedby="member-76ce2832-629c-4240-a37b-a3772baba951"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.medium-3.columns:nth-child(1) > .callout[data-equalizer-watch=""] > p:nth-child(6) > small > a:nth-child(1)` | `<a href="https://www.bbk.ac.uk/our-staff/profile/9244765/rose-harris-birtill" aria-label="Person 2537 Family 2537's website"> <i aria-hidden="true" class="fa fa-globe"></i> Website </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.medium-3.columns:nth-child(1) > .callout[data-equalizer-watch=""] > p:nth-child(6) > small > a:nth-child(2)` | `<a href="https://www.twitter.com/roseharrisb" aria-label="Person 2537 Family 2537's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(3)` | `<a href="https://www.linkedin.com/in/rosehb" aria-label="Person 2537 Family 2537's linkedin profile"> <i aria-hidden="true" class="fa fa-linkedin-square"></i> Linkedin </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="ollqi2-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(5) > small > a` | `<a href="/olh/profile/e6980887-f7c4-4833-b9e8-98318104169b/" aria-describedby="member-e6980887-f7c4-4833-b9e8-98318104169b"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(6) > small > a[aria-label="Caroline Edwards's website"]` | `<a href="http://www.drcarolineedwards.com/" aria-label="Caroline Edwards's website"> <i aria-hidden="true" class="fa fa-globe"></i> Website </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(6) > small > a:nth-child(2)` | `<a href="https://www.twitter.com/the_blochian" aria-label="Caroline Edwards's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="xscqp8-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(4) > small > a` | `<a href="/olh/profile/bed4a260-430e-4741-9f5c-ea45384c8877/" aria-describedby="member-bed4a260-430e-4741-9f5c-ea45384c8877"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="xscqp8-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(5) > small > a` | `<a href="https://www.twitter.com/Simon_Everett" aria-label="Simon Everett's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="je072c-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(4) > small > a` | `<a href="/olh/profile/954d6773-124a-4993-a69c-3ebd11afc784/" aria-describedby="member-954d6773-124a-4993-a69c-3ebd11afc784"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="je072c-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(5) > small > a` | `<a href="https://www.github.com/AmeliePlaysKath" aria-label="Person 23281 Family 23281's github profile"> <i aria-hidden="true" class="fa fa-github-square"></i> Github </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="cxmuub-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p > small > a` | `<a href="/olh/profile/b69c8c89-36fe-4f21-8679-cea21c61fbde/" aria-describedby="member-b69c8c89-36fe-4f21-8679-cea21c61fbde"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `div[data-resize="6tfoea-eq"] > .end.medium-3.columns > .callout[data-equalizer-watch=""] > p:nth-child(4) > small > a` | `<a href="/olh/profile/e6980887-f7c4-4833-b9e8-98318104169b/" aria-describedby="member-e6980887-f7c4-4833-b9e8-98318104169b"> View Profile </a>…` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(5) > small > a[aria-label="Caroline Edwards's website"]` | `<a href="http://www.drcarolineedwards.com/" aria-label="Caroline Edwards's website"> <i aria-hidden="true" class="fa fa-globe"></i> Website </a>` | [Failure color-contrast](#color-contrast) | +| [olh/editorialteam/?theme=olh](http://localhost:8000/olh/editorialteam/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(5) > small > a:nth-child(2)` | `<a href="https://www.twitter.com/the_blochian" aria-label="Caroline Edwards's twitter profile"> <i aria-hidden="true" class="fa fa-twitter-square"></i> Twitter </a>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=olh](http://localhost:8000/olh/search/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=olh](http://localhost:8000/olh/search/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=olh](http://localhost:8000/olh/search/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `small` | `<small class="error">This field is required.</small>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=olh](http://localhost:8000/olh/search/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button` | `<button type="submit" class="button">Search</button>` | [Failure color-contrast](#color-contrast) | +| [olh/search/?theme=olh](http://localhost:8000/olh/search/?theme=olh) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `.form-group:nth-child(1) > ul` | `<ul>` | [Failure list 1](#list-1) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.openlibhums.org"][target="_blank"]` | `<a href="https://www.openlibhums.org" target="_blank">Open Library of Humanities</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(1) > a:nth-child(4)` | `<a href="https://olh.openlibhums.org/collections/collection/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(5)` | `<a href="https://olh.openlibhums.org/site/special-collections/">how to apply</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="clockss.org"]` | `<a href="https://clockss.org" target="_blank">CLOCKSS</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[target="_blank"]:nth-child(4)` | `<a href="https://olh.openlibhums.org/site/special-collections/" target="_blank"><em>Open Library of Humanities</em> Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_blank"]:nth-child(4) > em` | `<em>Open Library of Humanities</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(5) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/special-collections/" target="_blank">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(7) > a` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/">international library consortium</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_blank"]:nth-child(2)` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Archiving%20and%20Indexing" target="_blank">publisher's policy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(10) > a[target="_blank"]:nth-child(4)` | `<a href="https://www.scopus.com/sourceid/21100867938" target="_blank">CiteScore on Scopus</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading0"]` | `<a href="#heading0" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Focus and Scope</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading1"]` | `<a href="#heading1" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Publication Frequency</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading2"]` | `<a href="#heading2" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Publication Fees</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading3"]` | `<a href="#heading3" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Citation Metrics</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/about/?theme=olh](http://localhost:8000/olh/site/about/?theme=olh) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `aside` | `<aside class="medium-4 columns sticky-container hide-for-small-only">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `strong > a` | `<a href="https://olh.openlibhums.org/site/special-collections/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Submissions"]` | `<a href="#Submissions">Submissions</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Language and Text"]` | `<a href="#Language and Text">Language and Text</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Data and Symbols"]` | `<a href="#Data and Symbols">Data and Symbols</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#Figures and Tables"]` | `<a href="#Figures and Tables">Figures and Tables</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#References"]` | `<a href="#References">References</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(15) > a:nth-child(2)` | `<a href="https://olh.openlibhums.org/site/blindreview/">ensuring an anonymous review</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(30) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/competinginterests/" target="_blank">How to Declare Competing Interests</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(32) > a[target="_blank"]` | `<a href="https://www.wma.net/policies-post/wma-declaration-of-helsinki-ethical-principles-for-medical-research-involving-human-subjects/" target="_blank">Declaration of Helsinki</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(75) > a` | `<a href="http://en.wikipedia.org/wiki/Wikipedia:Manual_of_Style/Abbreviations#Miscellanea">here</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(135) > a[target="_blank"]` | `<a href="http://www.bipm.org/utils/common/pdf/si_brochure_8_en.pdf" target="_blank">Bureau International des Poids et Mesures</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(170) > a` | `<a href="http://eprints.lincoln.ac.uk/id/eprint/25380/1/Harvard_Referencing_Guide.pdf">document</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `blockquote:nth-child(248) > a` | `<a href="https://www.theguardian.com/world/2020/sep/23/wednesday-briefing-last-orders-in-fight-to-avoid-lockdown">https://www.theguardian.com/world/2020/sep/23/wednesday-briefing-last-orders-in-fight-…` | [Failure color-contrast](#color-contrast) | +| [olh/site/author-guidelines/?theme=olh](http://localhost:8000/olh/site/author-guidelines/?theme=olh) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `p:nth-child(15) > a:nth-child(3)` | `<a href="https://olh.openlibhums.org/help/view/editorial/topic/000044">.</a>` | [Failure target-size](#target-size) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Editorial Oversight"]` | `<a href="#Editorial Oversight">Editorial Oversight</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Peer Review Process"]` | `<a href="#Peer Review Process">Peer Review Process</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Governance"]` | `<a href="#Governance">Organisation and Governance</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Business Practices"]` | `<a href="#Business Practices">Business Practices</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Preprint Policy"]` | `<a href="#Preprint Policy">Preprint Policy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a:nth-child(6)` | `<a href="#Conduct and Expected Behaviour">Conduct and Expected Behaviour</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Special Collections"]` | `<a href="#Special Collections"><em>OLHJ</em> Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[href$="#Special Collections"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(6) > a[target="_blank"]` | `<a href="https://www.chase.ac.uk/research-placements" target="_blank">Consortium for the Humanities and Arts South-East England</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(12) > a[target="_blank"]` | `<a href="https://publicationethics.org/guidance/Guidelines" target="_blank">Committee on Publication Ethics</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(26) > a[target="blank_"]` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Reviewer%20Responsibilities" target="blank_">‘Responsibilities of Reviewers’</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(28) > a` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Publication%20Ethics%20and%20Malpractice">Publication Ethics and Malpractice Statement</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="janeway.systems"]` | `<a href="https://janeway.systems" target="_blank">Janeway</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(37) > a` | `<a href="https://olh.openlibhums.org/editorialteam/"> editorial board</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(39) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/editorialteam/" target="_blank">editorial team</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(41) > a[target="_blank"]` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/" target="_blank">Library Partnership Subsidy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(41) > a:nth-child(4)` | `<a href="https://olh.openlibhums.org/site/about/">About</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(50) > a[target="_blank"]` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/" target="_blank">Library Partnership Subsidy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(54) > a` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Publication%20Ethics%20and%20Malpractice">Publication Ethics and Malpractice Statement’</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(55) > a:nth-child(2)` | `<a href="https://olh.openlibhums.org/contact/">Contact</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(55) > a:nth-child(4)` | `<a href="https://www.openlibhums.org/contact/">directly with the publisher</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(55) > a[target="_blank"]` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Publisher%20Responsibilities" target="_blank">‘Publication Ethics and Malpractice Statement’</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(59) > a[target="_blank"]` | `<a href="https://publicationethics.org/resources/discussion-documents/guest-edited-collections" target="_blank">best practice guidelines by COPE</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(63) > a[target="blank_"]` | `<a href="https://www.openlibhums.org/site/publisher-policies/#Ethics%20Policies" target="blank_">Ethics Policies</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(64) > a` | `<a href="https://olh.openlibhums.org/site/special-collections/">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(1) > a[href$="#Editorial Oversight"]` | `<a href="#Editorial Oversight" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Editorial Oversight</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading1"]` | `<a href="#heading1" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Appointment of Editors and Special Collection Editors</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading2"]` | `<a href="#heading2" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">The Remit of <em>OLHJ</em> Editorial Roles</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading2"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading3"]` | `<a href="#heading3" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Editorial Decisions</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading4"]` | `<a href="#heading4" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Composition of the Editorial Team</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(6) > a[href$="#Peer Review Process"]` | `<a href="#Peer Review Process" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Peer Review Process</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading6"]` | `<a href="#heading6" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Assessing Articles for Peer Review</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading7"]` | `<a href="#heading7" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;"><em>OLHJ</em>’s Peer Review Practice</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading7"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading8"]` | `<a href="#heading8" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Selection of Peer Reviewers</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading9"]` | `<a href="#heading9" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Guidance for Peer Reviewers</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading10"]` | `<a href="#heading10" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Publication of Peer Review Reports</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(12) > a[href$="#Governance"]` | `<a href="#Governance" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Organisation and Governance</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading12"]` | `<a href="#heading12" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">The Ownership and Structure of <em>OLHJ</em></a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading12"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading14"]` | `<a href="#heading14" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;"><em>OLHJ</em>’s Funding Model</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading14"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(16) > a[href$="#Business Practices"]` | `<a href="#Business Practices" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Business Practices</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading16"]` | `<a href="#heading16" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Advertising</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading17"]` | `<a href="#heading17" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Direct Marketing</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading18"]` | `<a href="#heading18" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Other Revenue</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(20) > a[href$="#Preprint Policy"]` | `<a href="#Preprint Policy" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Preprint Policy</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(21) > a` | `<a href="#Conduct and Expected Behaviour" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Conduct and Expected Behaviour</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(22) > a[href$="#Special Collections"]` | `<a href="#Special Collections" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;"><em>OLHJ</em> Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.sidebar-item:nth-child(22) > a[href$="#Special Collections"] > em` | `<em>OLHJ</em>` | [Failure color-contrast](#color-contrast) | +| [olh/site/journal-policies/?theme=olh](http://localhost:8000/olh/site/journal-policies/?theme=olh) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `aside` | `<aside class="medium-4 columns sticky-container hide-for-small-only">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(2) > strong > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/special-collections/" target="_blank">Special Collections</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(3) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/author-guidelines/" target="_blank">Author Guidelines</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button:nth-child(1)` | `<a href="/olh/register/step/1/?next=/olh/submissions/%3Ftheme%3Dolh" class="button"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.button:nth-child(2)` | `<a href="/olh/login/?next=/olh/submissions/%3Ftheme%3Dolh" class="button"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(8) > a:nth-child(1)` | `<a href="https://olh.openlibhums.org/site/author-guidelines/">Author Guidelines</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(8) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/competinginterests/" target="_blank">how to declare competing interests</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(9) > a:nth-child(1)` | `<a href="https://olh.openlibhums.org/site/blindreview/">ensuring an anonymous review</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(15) > a:nth-child(1)` | `<a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution License</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(15) > a:nth-child(2)` | `<a href="http://creativecommons.org/licenses/">Creative Commons License</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[target="_new"]` | `<a href="http://opcit.eprints.org/oacitation-biblio.html" target="_new">The Effect of Open Access</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(21) > a[target="_blank"]` | `<a href="https://olh.openlibhums.org/site/journal-policies/#Peer%20Review%20Process" target="_blank">Journal Policies</a>` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `li:nth-child(1) > strong > a[target="_blank"]` | `<a href="https://creativecommons.org/licenses/by/4.0" target="_blank">` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="www.example.com"]` | `<a href="https://www.example.com" target="_blank">` | [Failure color-contrast](#color-contrast) | +| [olh/submissions/?theme=olh](http://localhost:8000/olh/submissions/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p:nth-child(29) > a` | `<a href="https://www.openlibhums.org/site/about/the-olh-model/">international library consortium</a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=olh](http://localhost:8000/olh/issues/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=olh](http://localhost:8000/olh/issues/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issues/?theme=olh](http://localhost:8000/olh/issues/?theme=olh) | [heading-order](https://dequeuniversity.com/rules/axe/4.11/heading-order?application=playwright) | moderate | `#\31 287-box-title` | `<h3 id="1287-box-title"> <span aria-label="Volume 10, Issue 2, 2024">Volume 10 • Issue 2 • 2024</span> </h3>` | [Failure heading-order](#heading-order) | +| [olh/issue/402/info/?theme=olh](http://localhost:8000/olh/issue/402/info/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=olh](http://localhost:8000/olh/issue/402/info/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/402/info/?theme=olh](http://localhost:8000/olh/issue/402/info/?theme=olh) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `aside` | `<aside class="large-4 columns sticky-container" data-sticky-container="">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [olh/issue/409/info/?theme=olh](http://localhost:8000/olh/issue/409/info/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=olh](http://localhost:8000/olh/issue/409/info/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/issue/409/info/?theme=olh](http://localhost:8000/olh/issue/409/info/?theme=olh) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `aside` | `<aside class="large-4 columns sticky-container" data-sticky-container="">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [olh/collections/?theme=olh](http://localhost:8000/olh/collections/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/?theme=olh](http://localhost:8000/olh/collections/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/963/"]` | `<a href="/olh/collections/963/">Humour as a Human Right </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/905/"]` | `<a href="/olh/collections/905/">Cultural Heritage Data for Research: Opening Museum Collections, Project Data and Digital Images for Research, Query and Discovery </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/895/"]` | `<a href="/olh/collections/895/">Caliban's Mirror: Reflections of James Joyce and Oscar Wilde </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/877/"]` | `<a href="/olh/collections/877/">Cultural Representations of Machine Vision </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/850/"]` | `<a href="/olh/collections/850/">The Public Curatorship of the Medieval Past </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/846/"]` | `<a href="/olh/collections/846/">Medieval Minds and Matter </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/803/"]` | `<a href="/olh/collections/803/">Representing the Medieval in Popular Culture: Remembering the Angevins </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/505/"]` | `<a href="/olh/collections/505/">The Politics and History of Menstruation: Contextualising the Scottish Campaign to End Period Poverty </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/455/"]` | `<a href="/olh/collections/455/">Production Archives 03: Archival Practices </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/454/"]` | `<a href="/olh/collections/454/">Production Archives 02: Production Contexts </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/453/"]` | `<a href="/olh/collections/453/">Production Archives 01: Puppets for Action </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/452/"]` | `<a href="/olh/collections/452/">Representing Classical Music in the Twenty-First Century </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/447/"]` | `<a href="/olh/collections/447/">The Pathological Body: European Literary and Cultural Perspectives in the Age of Modern Medicine </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/449/"]` | `<a href="/olh/collections/449/">Binary Modernisms: Re/Appropriations of Modernist Art in the Digital Age </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/450/"]` | `<a href="/olh/collections/450/">Local and Universal in Irish Literature and Culture </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/412/"]` | `<a href="/olh/collections/412/">Reading in Ruins: Exploring Posthumanist Narrative Studies </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/413/"]` | `<a href="/olh/collections/413/">The Language of Perspective </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/414/"]` | `<a href="/olh/collections/414/">Nancy Astor, Public Women and Gendered Political Culture in Interwar Britain </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/415/"]` | `<a href="/olh/collections/415/">The Working-Class Avant-Garde </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/416/"]` | `<a href="/olh/collections/416/">Colonialities in Dispute: Discourses on Colonialism and Race in the Spanish State </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/417/"]` | `<a href="/olh/collections/417/">Powering the Future: Energy Resources in Science Fiction and Fantasy </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/418/"]` | `<a href="/olh/collections/418/">Writers and Intellectuals on Britain and Europe, 1918–2018 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/419/"]` | `<a href="/olh/collections/419/">Literature, Law and Psychoanalysis </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/420/"]` | `<a href="/olh/collections/420/">Muslims in the Media </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/421/"]` | `<a href="/olh/collections/421/">Encounters between Asian and Western Art in the 20th and 21st centuries: a liberating influence for Asia? </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/422/"]` | `<a href="/olh/collections/422/">Waste: Disposability, Decay, and Depletion </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/423/"]` | `<a href="/olh/collections/423/">Pride Revisited: Cinema, Activism and Re-Activation </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/424/"]` | `<a href="/olh/collections/424/">New Approaches to Late Medieval Court Records </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/425/"]` | `<a href="/olh/collections/425/">Utopian Art and Literature from Modern India </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/426/"]` | `<a href="/olh/collections/426/">Right-Wing Populism and Mediated Activism: Creative Responses and Counter-Narratives </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/427/"]` | `<a href="/olh/collections/427/">Representing Climate: Local to Global </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/428/"]` | `<a href="/olh/collections/428/">Cultivating Spheres: Agriculture, Technical Communication, and the Publics </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/429/"]` | `<a href="/olh/collections/429/">Freedom After Neoliberalism </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/430/"]` | `<a href="/olh/collections/430/">The Medieval Brain </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/431/"]` | `<a href="/olh/collections/431/">Remaking Collections </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/432/"]` | `<a href="/olh/collections/432/">New Approaches to Medieval Water Studies </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/433/"]` | `<a href="/olh/collections/433/">Imaginaries of the Future 01: Bodies and Media </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/434/"]` | `<a href="/olh/collections/434/">Imaginaries of the Future 02: Politics, Poetics, Place </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/435/"]` | `<a href="/olh/collections/435/">Imaginaries of the Future 03: Utopia at the Border </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/436/"]` | `<a href="/olh/collections/436/">Postcolonial Perspectives in Game Studies </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/437/"]` | `<a href="/olh/collections/437/">Station Eleven and Twenty-First-Century Writing </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/438/"]` | `<a href="/olh/collections/438/">#Agreement20 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/439/"]` | `<a href="/olh/collections/439/">What’s Left? Marxism, Literature and Culture in the 21st Century </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/440/"]` | `<a href="/olh/collections/440/">New Voices in Jewish-American Literature </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/441/"]` | `<a href="/olh/collections/441/">Authors, Narratives, and Audiences in Medieval Saints’ Lives </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/442/"]` | `<a href="/olh/collections/442/">From TV To Film </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/443/"]` | `<a href="/olh/collections/443/">American Literature & the Transnational Marketplace </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/444/"]` | `<a href="/olh/collections/444/">Mnemosyne </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/445/"]` | `<a href="/olh/collections/445/">Healing Gods, Heroes and Rituals in the Graeco-Roman World </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/collections/446/"]` | `<a href="/olh/collections/446/">The Abolition of the University </a>` | [Failure color-contrast](#color-contrast) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [heading-order](https://dequeuniversity.com/rules/axe/4.11/heading-order?application=playwright) | moderate | `#issue_top > h3` | `<h3>Editors: </h3>` | [Failure heading-order](#heading-order) | +| [olh/collections/846/?theme=olh](http://localhost:8000/olh/collections/846/?theme=olh) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `aside` | `<aside class="large-4 columns sticky-container" data-sticky-container="" style="height: 1861.41px;">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-759"]` | `<a class="button" href="/olh/news/759/" aria-describedby="news-759"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-758"]` | `<a class="button" href="/olh/news/758/" aria-describedby="news-758"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-757"]` | `<a class="button" href="/olh/news/757/" aria-describedby="news-757"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-756"]` | `<a class="button" href="/olh/news/756/" aria-describedby="news-756"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-755"]` | `<a class="button" href="/olh/news/755/" aria-describedby="news-755"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-754"]` | `<a class="button" href="/olh/news/754/" aria-describedby="news-754"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-753"]` | `<a class="button" href="/olh/news/753/" aria-describedby="news-753"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-752"]` | `<a class="button" href="/olh/news/752/" aria-describedby="news-752"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-751"]` | `<a class="button" href="/olh/news/751/" aria-describedby="news-751"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-750"]` | `<a class="button" href="/olh/news/750/" aria-describedby="news-750"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-749"]` | `<a class="button" href="/olh/news/749/" aria-describedby="news-749"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/?theme=olh](http://localhost:8000/olh/news/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[aria-describedby="news-748"]` | `<a class="button" href="/olh/news/748/" aria-describedby="news-748"> Read More </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/429/?theme=olh](http://localhost:8000/olh/news/429/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/429/?theme=olh](http://localhost:8000/olh/news/429/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/news/429/?theme=olh](http://localhost:8000/olh/news/429/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="news/"]` | `<a href="/olh/news/" class="button"> Back to News List </a>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=olh](http://localhost:8000/olh/articles/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=olh](http://localhost:8000/olh/articles/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=olh](http://localhost:8000/olh/articles/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.large-4 > .section[aria-labelledby="filter-title"] > form[method="GET"] > .button[action=""][type="submit"]` | `<button action="" class="button" type="submit">Apply</button>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=olh](http://localhost:8000/olh/articles/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.large-4 > .section[aria-labelledby="filter-title"] > form[method="GET"] > .warning.button[name="clear_all"]` | `<button class="button warning" name="clear_all">Clear all</button>` | [Failure color-contrast](#color-contrast) | +| [olh/articles/?theme=olh](http://localhost:8000/olh/articles/?theme=olh) | [landmark-complementary-is-top-level](https://dequeuniversity.com/rules/axe/4.11/landmark-complementary-is-top-level?application=playwright) | moderate | `.large-4` | `<aside class="large-4 columns show-for-large">` | [Failure landmark-complementary-is-top-level](#landmark-complementary-is-top-level) | +| [olh/articles/?theme=olh](http://localhost:8000/olh/articles/?theme=olh) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select[name="order_by"]` | `<select class="input-group-field" onchange="this.form.submit()" name="order_by" form="facet_form">` | [Failure select-name](#select-name) | +| [olh/articles/?theme=olh](http://localhost:8000/olh/articles/?theme=olh) | [select-name](https://dequeuniversity.com/rules/axe/4.11/select-name?application=playwright) | critical | `select[name="paginate_by"]` | `<select class="input-group-field" onchange="this.form.submit()" name="paginate_by" form="facet_form">` | [Failure select-name](#select-name) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[onclick="resizeText(-1);"]` | `<button onclick="resizeText(-1);" aria-label="decrease text size">A-</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[onclick="resizeText(1);"]` | `<button onclick="resizeText(1);" aria-label="increase text size">A+</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#dyslexia-mode` | `<button onclick="toggleDyslexia();" id="dyslexia-mode" aria-label="Dyslexia mode">Dyslexia</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/4890/"]` | `<a href="/olh/keywords/4890/"> Saint Augustine-Ancient Greek-Pedagogy- Stephen D. Krashen-Second Language Acquisition<span aria-hidden="true"></span> </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-content > span > a[target="_blank"]` | `<a target="_blank" href="https://doi.org/10.16995/olh.30" aria-label="D.O.I. for Non amabam Litteras Graecas. Note sulla Testimonianza di Sant’Agostino come Discente del Greco Antico Rivisitata alla L…` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#article_date_published` | `<p id="article_date_published"> Published on <br> 12 October 2015 </p>…` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.large-4.columns[data-equalizer-watch=""]:nth-child(2) > p` | `<p>Peer Reviewed</p>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.large-4.columns[data-equalizer-watch=""]:nth-child(3) > p` | `<p>License</p>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#license > p` | `<p>test html in license text</p>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B91-1` | `<a class="xref-bibr" href="#B91" aria-describedby="reference-header" id="cite-B91-1">Waquet, 2004: 251–254</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B9-1` | `<a class="xref-bibr" href="#B9" aria-describedby="reference-header" id="cite-B9-1">Canfora and Cardinale, 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B58-1` | `<a class="xref-bibr" href="#B58" aria-describedby="reference-header" id="cite-B58-1">Olivia, 2008: 13</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B52-1` | `<a class="xref-bibr" href="#B52" aria-describedby="reference-header" id="cite-B52-1">Milanese, 2012: 67–82</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B67-1` | `<a class="xref-bibr" href="#B67" aria-describedby="reference-header" id="cite-B67-1">Ricucci, 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B69-1` | `<a class="xref-bibr" href="#B69" aria-describedby="reference-header" id="cite-B69-1">2014a</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B59-1` | `<a class="xref-bibr" href="#B59" aria-describedby="reference-header" id="cite-B59-1">1975</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B68-1` | `<a class="xref-bibr" href="#B68" aria-describedby="reference-header" id="cite-B68-1">Ricucci, 2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B70-1` | `<a class="xref-bibr" href="#B70" aria-describedby="reference-header" id="cite-B70-1">2014b</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B35-1` | `<a class="xref-bibr" href="#B35" aria-describedby="reference-header" id="cite-B35-1">Krashen, 1991</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B25-1` | `<a class="xref-bibr" href="#B25" aria-describedby="reference-header" id="cite-B25-1">Howatt and Smith, 2002</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B81-1` | `<a class="xref-bibr" href="#B81" aria-describedby="reference-header" id="cite-B81-1">Titone, 1987: 5</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B81-2` | `<a class="xref-bibr" href="#B81" aria-describedby="reference-header" id="cite-B81-2">Titone, 1987: 5</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B24-1` | `<a class="xref-bibr" href="#B24" aria-describedby="reference-header" id="cite-B24-1">Howatt, 1984: 284</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B75-1` | `<a class="xref-bibr" href="#B75" aria-describedby="reference-header" id="cite-B75-1">Schulz, 1975</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B42-1` | `<a class="xref-bibr" href="#B42" aria-describedby="reference-header" id="cite-B42-1">Lightbown, 1985</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B43-1` | `<a class="xref-bibr" href="#B43" aria-describedby="reference-header" id="cite-B43-1">Lightbown, 2000</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B14-1` | `<a class="xref-bibr" href="#B14" aria-describedby="reference-header" id="cite-B14-1">Debyser, 1973: 63–68</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B65-1` | `<a class="xref-bibr" href="#B65" aria-describedby="reference-header" id="cite-B65-1">Puren, 1994</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B76-1` | `<a class="xref-bibr" href="#B76" aria-describedby="reference-header" id="cite-B76-1">Serra Borneto, 1998</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B39-1` | `<a class="xref-bibr" href="#B39" aria-describedby="reference-header" id="cite-B39-1">Kumaravadivelu, 1994</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B40-1` | `<a class="xref-bibr" href="#B40" aria-describedby="reference-header" id="cite-B40-1">2006</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B10-1` | `<a class="xref-bibr" href="#B10" aria-describedby="reference-header" id="cite-B10-1">Celce-murcia, 1980</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B84-1` | `<a class="xref-bibr" href="#B84" aria-describedby="reference-header" id="cite-B84-1">Van Patten and Williams, 2005: 25</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B36-1` | `<a class="xref-bibr" href="#B36" aria-describedby="reference-header" id="cite-B36-1">1994: 45–46</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B29-1` | `<a class="xref-bibr" href="#B29" aria-describedby="reference-header" id="cite-B29-1">Kirwan, 1994: 188</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B51-1` | `<a class="xref-bibr" href="#B51" aria-describedby="reference-header" id="cite-B51-1">McLynn, 2005</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n10-nm1 > sup` | `<sup>10</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B6-1` | `<a class="xref-bibr" href="#B6" aria-describedby="reference-header" id="cite-B6-1">Bellissima, 1955</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B11-1` | `<a class="xref-bibr" href="#B11" aria-describedby="reference-header" id="cite-B11-1">Collart, 1971</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B45-1` | `<a class="xref-bibr" href="#B45" aria-describedby="reference-header" id="cite-B45-1">Louth, 1989: 151</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n11-nm1 > sup` | `<sup>11</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n12-nm1 > sup` | `<sup>12</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n13-nm1 > sup` | `<sup>13</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n14-nm1 > sup` | `<sup>14</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n15-nm1 > sup` | `<sup>15</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n16-nm1 > sup` | `<sup>16</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B2-1` | `<a class="xref-bibr" href="#B2" aria-describedby="reference-header" id="cite-B2-1">Alfonsi, 1971: 42</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n17-nm1 > sup` | `<sup>17</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B7-1` | `<a class="xref-bibr" href="#B7" aria-describedby="reference-header" id="cite-B7-1">Bonner, 1986: 180–183</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B57-1` | `<a class="xref-bibr" href="#B57" aria-describedby="reference-header" id="cite-B57-1">Neraudau, 1996: 58–59</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n18-nm1 > sup` | `<sup>18</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n19-nm1 > sup` | `<sup>19</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n20-nm1 > sup` | `<sup>20</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B12-1` | `<a class="xref-bibr" href="#B12" aria-describedby="reference-header" id="cite-B12-1">Courcelle, 1943: 142</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B48-1` | `<a class="xref-bibr" href="#B48" aria-describedby="reference-header" id="cite-B48-1">Marrou, 1958<sup>4</sup>: 446 s.</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B78-1` | `<a class="xref-bibr" href="#B78" aria-describedby="reference-header" id="cite-B78-1">Solignac, 1962: 667</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n21-nm1 > sup` | `<sup>21</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n22-nm1 > sup` | `<sup>22</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n23-nm1 > sup` | `<sup>23</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n24-nm1 > sup` | `<sup>24</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n25-nm1 > sup` | `<sup>25</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n26-nm1 > sup` | `<sup>26</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n27-nm1 > sup` | `<sup>27</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n28-nm1 > sup` | `<sup>28</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n29-nm1 > sup` | `<sup>29</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B53-1` | `<a class="xref-bibr" href="#B53" aria-describedby="reference-header" id="cite-B53-1">Miraglia 2004: 231–234</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B22-1` | `<a class="xref-bibr" href="#B22" aria-describedby="reference-header" id="cite-B22-1">Green, 1951</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B1-1` | `<a class="xref-bibr" href="#B1" aria-describedby="reference-header" id="cite-B1-1">Adams, 2003: 213–245</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B1-2` | `<a class="xref-bibr" href="#B1" aria-describedby="reference-header" id="cite-B1-2">Adams, 2003: 192–194</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B56-1` | `<a class="xref-bibr" href="#B56" aria-describedby="reference-header" id="cite-B56-1">2010: 531</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n30-nm1 > sup` | `<sup>30</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n31-nm1 > sup` | `<sup>31</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n32-nm1 > sup` | `<sup>32</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n33-nm1 > sup` | `<sup>33</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B49-1` | `<a class="xref-bibr" href="#B49" aria-describedby="reference-header" id="cite-B49-1">Marrou, 1966: 365–366</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n34-nm1 > sup` | `<sup>34</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B77-1` | `<a class="xref-bibr" href="#B77" aria-describedby="reference-header" id="cite-B77-1">Simone, 1969: 106</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n35-nm1 > sup` | `<sup>35</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B31-1` | `<a class="xref-bibr" href="#B31" aria-describedby="reference-header" id="cite-B31-1">Korhonen, 1996: 107</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B19-1` | `<a class="xref-bibr" href="#B19" aria-describedby="reference-header" id="cite-B19-1">Flammini, 1990: 17</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B79-1` | `<a class="xref-bibr" href="#B79" aria-describedby="reference-header" id="cite-B79-1">Tagliaferro, 2008: 68</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n36-nm1 > sup` | `<sup>36</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B33-1` | `<a class="xref-bibr" href="#B33" aria-describedby="reference-header" id="cite-B33-1">1985: 4</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B34-1` | `<a class="xref-bibr" href="#B34" aria-describedby="reference-header" id="cite-B34-1">1987<sup>2</sup>: 66–67</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B8-1` | `<a class="xref-bibr" href="#B8" aria-describedby="reference-header" id="cite-B8-1">Cambiano, 1992: 526</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B74-1` | `<a class="xref-bibr" href="#B74" aria-describedby="reference-header" id="cite-B74-1">Sandys, 1910<sup>2</sup>: 235</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B20-1` | `<a class="xref-bibr" href="#B20" aria-describedby="reference-header" id="cite-B20-1">Gallo, 2003: 94</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#n37-nm1 > sup` | `<sup>37</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B18-1` | `<a class="xref-bibr" href="#B18" aria-describedby="reference-header" id="cite-B18-1">Dombart and Kalb (ed.) 1960</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B92-1` | `<a class="xref-bibr" href="#B92" aria-describedby="reference-header" id="cite-B92-1">Weigel 1961</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B50-1` | `<a class="xref-bibr" href="#B50" aria-describedby="reference-header" id="cite-B50-1">Martin 1962</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B87-1` | `<a class="xref-bibr" href="#B87" aria-describedby="reference-header" id="cite-B87-1">Verheijen 1991</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B17-1` | `<a class="xref-bibr" href="#B17" aria-describedby="reference-header" id="cite-B17-1">Doignon 1997</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B82-1` | `<a class="xref-bibr" href="#B82" aria-describedby="reference-header" id="cite-B82-1">Too, 2001</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B90-1` | `<a class="xref-bibr" href="#B90" aria-describedby="reference-header" id="cite-B90-1">Vössing, 2003</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B62-1` | `<a class="xref-bibr" href="#B62" aria-describedby="reference-header" id="cite-B62-1">Pernot, 2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B5-1` | `<a class="xref-bibr" href="#B5" aria-describedby="reference-header" id="cite-B5-1">Bellandi and Ferri, 2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B41-1` | `<a class="xref-bibr" href="#B41" aria-describedby="reference-header" id="cite-B41-1">Laes, 2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B32-1` | `<a class="xref-bibr" href="#B32" aria-describedby="reference-header" id="cite-B32-1">Krashen, 1981</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B38-1` | `<a class="xref-bibr" href="#B38" aria-describedby="reference-header" id="cite-B38-1">Krashen and Terrell, 1983</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B37-1` | `<a class="xref-bibr" href="#B37" aria-describedby="reference-header" id="cite-B37-1">Krashen, 2003</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B44-1` | `<a class="xref-bibr" href="#B44" aria-describedby="reference-header" id="cite-B44-1">Lightbown and Spada, 2011<sup>3</sup>: 38</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B3-1` | `<a class="xref-bibr" href="#B3" aria-describedby="reference-header" id="cite-B3-1">Ando, 1994</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B88-1` | `<a class="xref-bibr" href="#B88" aria-describedby="reference-header" id="cite-B88-1">Vössing, 1992</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B89-1` | `<a class="xref-bibr" href="#B89" aria-describedby="reference-header" id="cite-B89-1">Vössing, 1997</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B55-1` | `<a class="xref-bibr" href="#B55" aria-describedby="reference-header" id="cite-B55-1">Moretti, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B86-1` | `<a class="xref-bibr" href="#B86" aria-describedby="reference-header" id="cite-B86-1">Vecchio, 1994</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B46-1` | `<a class="xref-bibr" href="#B46" aria-describedby="reference-header" id="cite-B46-1">Manetti, 1987: 226–227</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B64-1` | `<a class="xref-bibr" href="#B64" aria-describedby="reference-header" id="cite-B64-1">Preti, 1956</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B4-1` | `<a class="xref-bibr" href="#B4" aria-describedby="reference-header" id="cite-B4-1">Baratin, 1981</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B83-1` | `<a class="xref-bibr" href="#B83" aria-describedby="reference-header" id="cite-B83-1">Toom, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B47-1` | `<a class="xref-bibr" href="#B47" aria-describedby="reference-header" id="cite-B47-1">Markus, 1957</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B26-1` | `<a class="xref-bibr" href="#B26" aria-describedby="reference-header" id="cite-B26-1">Jackson, 1969</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B73-1` | `<a class="xref-bibr" href="#B73" aria-describedby="reference-header" id="cite-B73-1">Ruef, 1981</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B30-1` | `<a class="xref-bibr" href="#B30" aria-describedby="reference-header" id="cite-B30-1">Kirwan, 2001</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B23-1` | `<a class="xref-bibr" href="#B23" aria-describedby="reference-header" id="cite-B23-1">Henninger, 1989</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B60-1` | `<a class="xref-bibr" href="#B60" aria-describedby="reference-header" id="cite-B60-1">Paffenroth and Hughes, 2000</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B27-1` | `<a class="xref-bibr" href="#B27" aria-describedby="reference-header" id="cite-B27-1">Kaimio, 1979: 195–207</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B13-1` | `<a class="xref-bibr" href="#B13" aria-describedby="reference-header" id="cite-B13-1">Debut, 1983</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B15-1` | `<a class="xref-bibr" href="#B15" aria-describedby="reference-header" id="cite-B15-1">Dickey, 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B53-2` | `<a class="xref-bibr" href="#B53" aria-describedby="reference-header" id="cite-B53-2">2004: 226–227</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B72-1` | `<a class="xref-bibr" href="#B72" aria-describedby="reference-header" id="cite-B72-1">Rochette, 2008: 89–90</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B85-1` | `<a class="xref-bibr" href="#B85" aria-describedby="reference-header" id="cite-B85-1">Van Patten and Benati, 2010: 43</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B21-1` | `<a class="xref-bibr" href="#B21" aria-describedby="reference-header" id="cite-B21-1">Gardner, 1985: 10</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B28-1` | `<a class="xref-bibr" href="#B28" aria-describedby="reference-header" id="cite-B28-1">1976<sup>2</sup>: 323</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B63-1` | `<a class="xref-bibr" href="#B63" aria-describedby="reference-header" id="cite-B63-1">1997: 126</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B61-1` | `<a class="xref-bibr" href="#B61" aria-describedby="reference-header" id="cite-B61-1">Pallotti, 2001<sup>2</sup>: 219–220</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B16-1` | `<a class="xref-bibr" href="#B16" aria-describedby="reference-header" id="cite-B16-1">Diller, 1978: 72</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B66-1` | `<a class="xref-bibr" href="#B66" aria-describedby="reference-header" id="cite-B66-1">Richards and Rodgers, 2001<sup>2</sup>: 9</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B80-1` | `<a class="xref-bibr" href="#B80" aria-describedby="reference-header" id="cite-B80-1">Titone, 1968: 100–101</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B71-1` | `<a class="xref-bibr" href="#B71" aria-describedby="reference-header" id="cite-B71-1">Rivers, 1964: 19–20</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-B54-1` | `<a class="xref-bibr" href="#B54" aria-describedby="reference-header" id="cite-B54-1">Moreschini, 1979: 38 s.</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-B1-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-B1-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#block-kj025vokp"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-B53-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#B58 > a[target="_blank"]` | `<a href="http://www.treellle.org/files/lll/QA1.pdf" target="_blank">http://www.treellle.org/files/lll/QA1.pdf</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-B81-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#block-kptzyn8ec"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(1) > a[target="_blank"]` | `<a target="_blank" href="/olh/article/4403/galley/7575/view/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(2) > a` | `<a href="/olh/article/4403/galley/7575/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(3) > a` | `<a href="/olh/article/4403/galley/7576/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(4) > a` | `<a href="/olh/article/4403/galley/33913/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(5) > a` | `<a href="/olh/article/4403/galley/33914/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(6) > a` | `<a href="/olh/article/4403/galley/33915/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="info/"]` | `<a href="/olh/issue/401/info/"> Volume 1 • Issue 1 • 2015 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(4) > ul > li > a[target="_blank"]` | `<a target="_blank" href="https://doi.org/10.16995/olh.30" aria-label="D.O.I. for Non amabam Litteras Graecas. Note sulla Testimonianza di Sant’Agostino come Discente del Greco Antico Rivisitata alla L…` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading0"]` | `<a href="#heading0" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">1. Premessa</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading1"]` | `<a href="#heading1" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">2. <em>Second Language Acquisition</em>: la posizione di Krashen</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading1"] > em` | `<em>Second Language Acquisition</em>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading2"]` | `<a href="#heading2" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">3. Agostino: “linguista”, docente e discente</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading3"]` | `<a href="#heading3" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">4. Da Agostino a Krashen: la ricerca dell’acquisizione del Logos</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading4"]` | `<a href="#heading4" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">5. Conclusioni</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading5"]` | `<a href="#heading5" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Competing Interests</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading6"]` | `<a href="#heading6" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Notes</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading7"]` | `<a href="#heading7" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">References</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="bbc.co.uk/"]` | `<a href="https://www.bbc.co.uk/">Link</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.hide-for-small-only.section:nth-child(9) > ul > li > a` | `<a href="https://doi.org/10.16995/olh.6318">https://doi.org/10.16995/olh.6318</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n3-nm1` | `<a class="xref-fn" href="#n3" id="n3-nm1"><sup>3</sup></a>` | [Failure target-size](#target-size) | +| [olh/article/id/4403/?theme=olh](http://localhost:8000/olh/article/id/4403/?theme=olh) | [target-size](https://dequeuniversity.com/rules/axe/4.11/target-size?application=playwright) | serious | `#n36-nm1` | `<a class="xref-fn" href="#n36" id="n36-nm1"><sup>36</sup></a>` | [Failure target-size](#target-size) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href$="login/"]` | `<a href="/olh/login/" class="active"> Log in </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `p > .active[href="/olh/register/step/1/"]` | `<a href="/olh/register/step/1/" class="active"> Register </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[onclick="resizeText(-1);"]` | `<button onclick="resizeText(-1);" aria-label="decrease text size">A-</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `button[onclick="resizeText(1);"]` | `<button onclick="resizeText(1);" aria-label="increase text size">A+</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#dyslexia-mode` | `<button onclick="toggleDyslexia();" id="dyslexia-mode" aria-label="Dyslexia mode">Dyslexia</button>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/1316/"]` | `<a href="/olh/keywords/1316/"> education<span aria-hidden="true">, </span> </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/4892/"]` | `<a href="/olh/keywords/4892/"> political economy<span aria-hidden="true">, </span> </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/4893/"]` | `<a href="/olh/keywords/4893/"> secular crisis<span aria-hidden="true">, </span> </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href="/olh/keywords/4894/"]` | `<a href="/olh/keywords/4894/"> university<span aria-hidden="true"></span> </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-content > span > a[target="_blank"]` | `<a target="_blank" href="https://doi.org/10.16995/olh.15" aria-label="D.O.I. for DEV: Evaluation of Fresh and Frozen Beef Strip Loins of Equal Aging Periods for Palatability Traits">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#article_date_published` | `<p id="article_date_published"> Published on <br> 26 October 2015 </p>…` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.large-4.columns[data-equalizer-watch=""]:nth-child(2) > p` | `<p>Peer Reviewed</p>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.large-4.columns[data-equalizer-watch=""]:nth-child(3) > p` | `<p>License</p>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#license > p` | `<p>Creative Commons Attribution 4.0</p>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r20-1` | `<a class="xref-bibr" href="#r20" aria-describedby="reference-header" id="cite-r20-1">Iskandar et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r10-1` | `<a class="xref-bibr" href="#r10" aria-describedby="reference-header" id="cite-r10-1">Buckley et al., 1977</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r31-1` | `<a class="xref-bibr" href="#r31" aria-describedby="reference-header" id="cite-r31-1">Pietrasik and Janz, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r31-2` | `<a class="xref-bibr" href="#r31" aria-describedby="reference-header" id="cite-r31-2">Pietrasik and Janz, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-1` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-1">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-1` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-1">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-2` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-2">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r9-1` | `<a class="xref-bibr" href="#r9" aria-describedby="reference-header" id="cite-r9-1">Botinestean et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r43-1` | `<a class="xref-bibr" href="#r43" aria-describedby="reference-header" id="cite-r43-1">Zhang et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r28-1` | `<a class="xref-bibr" href="#r28" aria-describedby="reference-header" id="cite-r28-1">Martino and Zaritzky, 1988</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-2` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-2">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-3` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-3">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r41-1` | `<a class="xref-bibr" href="#r41" aria-describedby="reference-header" id="cite-r41-1">Wheeler et al., 1990</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-1` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-1">Lagerstedt et al., 2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-1` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-1">Hergenreder et al., 2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-3` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-3">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-2` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-2">Hergenreder et al., 2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-4` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-4">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-5` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-5">2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-4` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-4">2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-3` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-3">2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r31-3` | `<a class="xref-bibr" href="#r31" aria-describedby="reference-header" id="cite-r31-3">Pietrasik and Janz, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.xref-fig` | `<a class="xref-fig" href="#f1">Figure 1</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r13-1` | `<a class="xref-bibr" href="#r13" aria-describedby="reference-header" id="cite-r13-1">Drey et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r30-1` | `<a class="xref-bibr" href="#r30" aria-describedby="reference-header" id="cite-r30-1">Olson et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r32-1` | `<a class="xref-bibr" href="#r32" aria-describedby="reference-header" id="cite-r32-1">Prill et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r36-1` | `<a class="xref-bibr" href="#r36" aria-describedby="reference-header" id="cite-r36-1">Rice et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r8-1` | `<a class="xref-bibr" href="#r8" aria-describedby="reference-header" id="cite-r8-1">Beyer et al., 2021</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r15-1` | `<a class="xref-bibr" href="#r15" aria-describedby="reference-header" id="cite-r15-1">Farmer et al., 2022</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r3-1` | `<a class="xref-bibr" href="#r3" aria-describedby="reference-header" id="cite-r3-1">AMSA, 2015</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r8-2` | `<a class="xref-bibr" href="#r8" aria-describedby="reference-header" id="cite-r8-2">2021</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r13-2` | `<a class="xref-bibr" href="#r13" aria-describedby="reference-header" id="cite-r13-2">Drey et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r30-2` | `<a class="xref-bibr" href="#r30" aria-describedby="reference-header" id="cite-r30-2">Olson et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r32-2` | `<a class="xref-bibr" href="#r32" aria-describedby="reference-header" id="cite-r32-2">Prill et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r36-2` | `<a class="xref-bibr" href="#r36" aria-describedby="reference-header" id="cite-r36-2">Rice et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r15-2` | `<a class="xref-bibr" href="#r15" aria-describedby="reference-header" id="cite-r15-2">Farmer et al., 2022</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r3-2` | `<a class="xref-bibr" href="#r3" aria-describedby="reference-header" id="cite-r3-2">AMSA, 2015</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r15-3` | `<a class="xref-bibr" href="#r15" aria-describedby="reference-header" id="cite-r15-3">2022</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r39-1` | `<a class="xref-bibr" href="#r39" aria-describedby="reference-header" id="cite-r39-1">1999</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r23-1` | `<a class="xref-bibr" href="#r23" aria-describedby="reference-header" id="cite-r23-1">King et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r3-3` | `<a class="xref-bibr" href="#r3" aria-describedby="reference-header" id="cite-r3-3">AMSA, 2015</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r12-1` | `<a class="xref-bibr" href="#r12" aria-describedby="reference-header" id="cite-r12-1">2021</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r23-2` | `<a class="xref-bibr" href="#r23" aria-describedby="reference-header" id="cite-r23-2">King et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r23-3` | `<a class="xref-bibr" href="#r23" aria-describedby="reference-header" id="cite-r23-3">King et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r1-1` | `<a class="xref-bibr" href="#r1" aria-describedby="reference-header" id="cite-r1-1">1998</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r11-1` | `<a class="xref-bibr" href="#r11" aria-describedby="reference-header" id="cite-r11-1">Dahmer et al., 2022</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab1"]` | `<a class="xref-table" href="#tab1">Table 1</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm2 > sup > sup` | `<sup>ab</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm3 > sup > sup` | `<sup>bc</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm4 > sup > sup` | `<sup>cd</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm5 > sup > sup` | `<sup>cd</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm6 > sup > sup` | `<sup>de</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm8 > sup > sup` | `<sup>ef</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm10 > sup > sup` | `<sup>fg</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm13 > sup > sup` | `<sup>gh</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm14 > sup > sup` | `<sup>ghi</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab2-fn1-nm15 > sup > sup` | `<sup>hi</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab3"]` | `<a class="xref-table" href="#tab3">Table 3</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab4"]` | `<a class="xref-table" href="#tab4">Table 4</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab5"]` | `<a class="xref-table" href="#tab5">Table 5</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab6"]` | `<a class="xref-table" href="#tab6">Table 6</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab7"]` | `<a class="xref-table" href="#tab7">Table 7</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#tab8"]` | `<a class="xref-table" href="#tab8">Tables 8</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab8-fn1-nm14 > sup > sup` | `<sup>ab</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab9-fn1-nm9 > sup > sup` | `<sup>ab</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#tab9-fn1-nm15 > sup > sup` | `<sup>ab</sup>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-2` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-2">Lagerstedt et al., 2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-6` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-6">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-5` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-5">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r33-1` | `<a class="xref-bibr" href="#r33" aria-describedby="reference-header" id="cite-r33-1">Rahelić et al., 1985</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-6` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-6">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-3` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-3">Lagerstedt et al., 2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-7` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-7">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-7` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-7">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-4` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-4">2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-8` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-8">2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r24-1` | `<a class="xref-bibr" href="#r24" aria-describedby="reference-header" id="cite-r24-1">Koohmaraie, 1990</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r24-2` | `<a class="xref-bibr" href="#r24" aria-describedby="reference-header" id="cite-r24-2">Koohmaraie, 1990</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r25-1` | `<a class="xref-bibr" href="#r25" aria-describedby="reference-header" id="cite-r25-1">Kristensen et al., 2006</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-9` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-9">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-8` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-8">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-10` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-10">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-9` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-9">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r41-2` | `<a class="xref-bibr" href="#r41" aria-describedby="reference-header" id="cite-r41-2">Wheeler et al., 1990</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r26-5` | `<a class="xref-bibr" href="#r26" aria-describedby="reference-header" id="cite-r26-5">Lagerstedt et al., 2008</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r17-11` | `<a class="xref-bibr" href="#r17" aria-describedby="reference-header" id="cite-r17-11">Grayson et al., 2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-10` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-10">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-4` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-4">2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r18-1` | `<a class="xref-bibr" href="#r18" aria-describedby="reference-header" id="cite-r18-1">Grujić et al., 1993</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-11` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-11">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-5` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-5">2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r27-1` | `<a class="xref-bibr" href="#r27" aria-describedby="reference-header" id="cite-r27-1">Leygonie et al., 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-12` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-12">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r22-1` | `<a class="xref-bibr" href="#r22" aria-describedby="reference-header" id="cite-r22-1">Kim et al., 2018</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-13` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-13">2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-14` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-14">2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-15` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-15">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r27-2` | `<a class="xref-bibr" href="#r27" aria-describedby="reference-header" id="cite-r27-2">Leygonie et al., 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-16` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-16">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r22-2` | `<a class="xref-bibr" href="#r22" aria-describedby="reference-header" id="cite-r22-2">Kim et al., 2018</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r37-1` | `<a class="xref-bibr" href="#r37" aria-describedby="reference-header" id="cite-r37-1">Sánchez del Pulgar et al., 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r14-1` | `<a class="xref-bibr" href="#r14" aria-describedby="reference-header" id="cite-r14-1">English et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r35-1` | `<a class="xref-bibr" href="#r35" aria-describedby="reference-header" id="cite-r35-1">Ramanathan et al., 2020</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r14-2` | `<a class="xref-bibr" href="#r14" aria-describedby="reference-header" id="cite-r14-2">English et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r21-1` | `<a class="xref-bibr" href="#r21" aria-describedby="reference-header" id="cite-r21-1">Jeong et al., 2011</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r7-1` | `<a class="xref-bibr" href="#r7" aria-describedby="reference-header" id="cite-r7-1">Bekhit and Faustman, 2005</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r40-1` | `<a class="xref-bibr" href="#r40" aria-describedby="reference-header" id="cite-r40-1">2014</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r19-6` | `<a class="xref-bibr" href="#r19" aria-describedby="reference-header" id="cite-r19-6">Hergenreder et al., 2013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r21-2` | `<a class="xref-bibr" href="#r21" aria-describedby="reference-header" id="cite-r21-2">Jeong et al., 2011</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r29-1` | `<a class="xref-bibr" href="#r29" aria-describedby="reference-header" id="cite-r29-1">Nair et al., 2017</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r34-1` | `<a class="xref-bibr" href="#r34" aria-describedby="reference-header" id="cite-r34-1">Rahman et al., 2015</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r38-1` | `<a class="xref-bibr" href="#r38" aria-describedby="reference-header" id="cite-r38-1">Setyabrata and Kim, 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r2-1` | `<a class="xref-bibr" href="#r2" aria-describedby="reference-header" id="cite-r2-1">Al-Dalali et al., 2022</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r34-2` | `<a class="xref-bibr" href="#r34" aria-describedby="reference-header" id="cite-r34-2">Rahman et al., 2015</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r38-2` | `<a class="xref-bibr" href="#r38" aria-describedby="reference-header" id="cite-r38-2">Setyabrata and Kim, 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r43-2` | `<a class="xref-bibr" href="#r43" aria-describedby="reference-header" id="cite-r43-2">Zhang et al., 2023</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r42-1` | `<a class="xref-bibr" href="#r42" aria-describedby="reference-header" id="cite-r42-1">Xia et al., 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r6-1` | `<a class="xref-bibr" href="#r6" aria-describedby="reference-header" id="cite-r6-1">Bao et al., 2021</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r42-2` | `<a class="xref-bibr" href="#r42" aria-describedby="reference-header" id="cite-r42-2">Xia et al., 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r44-1` | `<a class="xref-bibr" href="#r44" aria-describedby="reference-header" id="cite-r44-1">Zhang et al., 2019</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r27-3` | `<a class="xref-bibr" href="#r27" aria-describedby="reference-header" id="cite-r27-3">Leygonie et al., 2012</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r5-17` | `<a class="xref-bibr" href="#r5" aria-describedby="reference-header" id="cite-r5-17">Aroeira et al., 2016</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r22-3` | `<a class="xref-bibr" href="#r22" aria-describedby="reference-header" id="cite-r22-3">Kim et al., 2018</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#cite-r31-4` | `<a class="xref-bibr" href="#r31" aria-describedby="reference-header" id="cite-r31-4">Pietrasik and Janz, 2009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r1 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/S0309-1740(97)00101-0" target="_blank">https://doi.org/10.1016/S0309-1740(97)00101-0</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r2 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.foodchem.2021.131881" target="_blank">https://doi.org/10.1016/j.foodchem.2021.131881</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r3-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r3-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#block-cz4k4wum9"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r5 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2016.02.006" target="_blank">https://doi.org/10.1016/j.meatsci.2016.02.006</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-5"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-6"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-7"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(7)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-8"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(8)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-9"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(9)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-10"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(10)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-11"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(11)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-12"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(12)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-13"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(13)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-14"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(14)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-15"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(15)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-16"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(16)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r5-17"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(17)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r6 > a[target="_blank"]` | `<a href="https://doi.org/10.1111/1541-4337.12841" target="_blank">https://doi.org/10.1111/1541-4337.12841</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r7 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2005.04.032" target="_blank">https://doi.org/10.1016/j.meatsci.2005.04.032</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r8 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb.12424" target="_blank">https://doi.org/10.22175/mmb.12424</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r8-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r8-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r9 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.lwt.2016.07.026" target="_blank">https://doi.org/10.1016/j.lwt.2016.07.026</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r10 > a[target="_blank"]:nth-child(2)` | `<a href="https://www.jstor.org/stable/25557929" target="_blank">https://www.jstor.org/stable/25557929</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r10 > a[target="_blank"]:nth-child(3)` | `<a href="https://www.jstor.org/stable/25557929" target="_blank">https://www.jstor.org/stable/25557929</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r11 > a[target="_blank"]` | `<a href="https://doi.org/10.1093/tas/txac060" target="_blank">https://doi.org/10.1093/tas/txac060</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r12 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2021.108454" target="_blank">https://doi.org/10.1016/j.meatsci.2021.108454</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r13 > a[target="_blank"]` | `<a href="https://doi.org/10.1093/jas/sky435" target="_blank">https://doi.org/10.1093/jas/sky435</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r13-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r13-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r14 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/jas.2016-0561" target="_blank">https://doi.org/10.2527/jas.2016-0561</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r14-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r14-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r15 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb.15488" target="_blank">https://doi.org/10.22175/mmb.15488</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r15-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r15-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r15-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r16 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/S0309-1740(03)00081-0" target="_blank">https://doi.org/10.1016/S0309-1740(03)00081-0</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r17 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/jas.2014-7613" target="_blank">https://doi.org/10.2527/jas.2014-7613</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-5"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-6"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-7"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(7)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-8"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(8)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-9"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(9)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-10"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(10)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r17-11"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(11)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r18 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/0309-1740(93)90003-Z" target="_blank">https://doi.org/10.1016/0309-1740(93)90003-Z</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r19 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/jas.2012-5223" target="_blank">https://doi.org/10.2527/jas.2012-5223</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-5"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r19-6"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(6)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r20 > a[target="_blank"]` | `<a href="https://doi.org/10.1088/1755-1315/365/1/012072" target="_blank">https://doi.org/10.1088/1755-1315/365/1/012072</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r21 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.foodres.2011.08.023" target="_blank">https://doi.org/10.1016/j.foodres.2011.08.023</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r21-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r21-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r22 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2018.01.024" target="_blank">https://doi.org/10.1016/j.meatsci.2018.01.024</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r22-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r22-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r22-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r23 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb.12473" target="_blank">https://doi.org/10.22175/mmb.12473</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r23-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r23-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r23-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r24 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/1990.683659x" target="_blank">https://doi.org/10.2527/1990.683659x</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r24-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r24-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r25 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2005.06.010" target="_blank">https://doi.org/10.1016/j.meatsci.2005.06.010</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r26 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2008.01.009" target="_blank">https://doi.org/10.1016/j.meatsci.2008.01.009</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r26-5"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(5)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r27 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2012.01.013" target="_blank">https://doi.org/10.1016/j.meatsci.2012.01.013</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r27-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r27-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r27-3"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r28 > a[target="_blank"]` | `<a href="https://doi.org/10.1111/j.1365-2621.1988.tb07802.x" target="_blank">https://doi.org/10.1111/j.1365-2621.1988.tb07802.x</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r29 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb2017.07.0037" target="_blank">https://doi.org/10.22175/mmb2017.07.0037</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r30 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb2019.07.0022" target="_blank">https://doi.org/10.22175/mmb2019.07.0022</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r30-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r30-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r31 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2008.10.006" target="_blank">https://doi.org/10.1016/j.meatsci.2008.10.006</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r31-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r31-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#block-bac4rnkez"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(3)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r31-4"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(4)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r32 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb2019.07.0024" target="_blank">https://doi.org/10.22175/mmb2019.07.0024</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r32-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r32-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r33 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/0309-1740(85)90082-8" target="_blank">https://doi.org/10.1016/0309-1740(85)90082-8</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r34 > a[target="_blank"]` | `<a href="https://doi.org/10.5851/kosfa.2015.35.6.772" target="_blank">https://doi.org/10.5851/kosfa.2015.35.6.772</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r34-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r34-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r35 > a[target="_blank"]` | `<a href="https://doi.org/10.1021/acs.jafc.9b08098" target="_blank">https://doi.org/10.1021/acs.jafc.9b08098</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r36 > a[target="_blank"]` | `<a href="https://doi.org/10.22175/mmb2019.07.0027" target="_blank">https://doi.org/10.22175/mmb2019.07.0027</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r36-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r36-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r37 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2011.11.024" target="_blank">https://doi.org/10.1016/j.meatsci.2011.11.024</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r38 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2019.01.007" target="_blank">https://doi.org/10.1016/j.meatsci.2019.01.007</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r38-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r38-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r39 > a[target="_blank"]` | `<a href="https://doi.org/10.2527/1999.77102693x" target="_blank">https://doi.org/10.2527/1999.77102693x</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r40 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2014.06.032" target="_blank">https://doi.org/10.1016/j.meatsci.2014.06.032</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r41 > a[target="_blank"]` | `<a href="https://doi.org/10.1111/j.1365-2621.1990.tb06748.x" target="_blank">https://doi.org/10.1111/j.1365-2621.1990.tb06748.x</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r41-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r41-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r42 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2009.05.003" target="_blank">https://doi.org/10.1016/j.meatsci.2009.05.003</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r42-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r42-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r43 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.foodchem.2022.133874" target="_blank">https://doi.org/10.1016/j.foodchem.2022.133874</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r43-1"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(1)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[data-citation-id="cite-r43-2"] > span[aria-hidden="true"]` | `<span aria-hidden="true">---^(2)</span>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `#r44 > a[target="_blank"]` | `<a href="https://doi.org/10.1016/j.meatsci.2018.11.018" target="_blank">https://doi.org/10.1016/j.meatsci.2018.11.018</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(1) > a[target="_blank"]` | `<a target="_blank" href="/olh/article/4405/galley/7579/view/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(2) > a` | `<a href="/olh/article/4405/galley/7579/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(3) > a` | `<a href="/olh/article/4405/galley/7580/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(2) > ul > li:nth-child(4) > a` | `<a href="/olh/article/4405/galley/33919/download/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="info/"]` | `<a href="/olh/issue/401/info/"> Volume 1 • Issue 1 • 2015 </a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(4) > ul > li > a[target="_blank"]` | `<a target="_blank" href="https://doi.org/10.16995/olh.15" aria-label="D.O.I. for DEV: Evaluation of Fresh and Frozen Beef Strip Loins of Equal Aging Periods for Palatability Traits">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `.section:nth-child(6) > ul > li > a` | `<a href="/olh/download/article/4405/supp_file/783/">` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading0"]` | `<a href="#heading0" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Introduction</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading1"]` | `<a href="#heading1" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Materials and Methods</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading2"]` | `<a href="#heading2" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Sample collection and fabrication</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading3"]` | `<a href="#heading3" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Trained sensory panels</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading4"]` | `<a href="#heading4" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Consumer sensory panels</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading5"]` | `<a href="#heading5" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Shear force, cooking characteristics, and internal color</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading6"]` | `<a href="#heading6" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Sample preparation and proximate analysis</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading7"]` | `<a href="#heading7" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Surface hydrophobicity</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading8"]` | `<a href="#heading8" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Metmyoglobin-reducing activity</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading9"]` | `<a href="#heading9" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Lipid oxidation</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading10"]` | `<a href="#heading10" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Statistical analysis</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading11"]` | `<a href="#heading11" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Results</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading12"]` | `<a href="#heading12" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Consumer sensory evaluation</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading13"]` | `<a href="#heading13" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Trained sensory evaluation</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading14"]` | `<a href="#heading14" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Warner-Bratzler shear force and cooking characteristics</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading15"]` | `<a href="#heading15" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Internal cooked color, color stability, lipid oxidation, and surface…` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading16"]` | `<a href="#heading16" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Discussion</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading17"]` | `<a href="#heading17" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Conclusions</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading18"]` | `<a href="#heading18" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Acknowledgement</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [color-contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast?application=playwright) | serious | `a[href$="#heading19"]` | `<a href="#heading19" onclick="$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top - 35}, 500);return false;">Reference</a>` | [Failure color-contrast](#color-contrast) | +| [olh/article/id/4405/?theme=olh](http://localhost:8000/olh/article/id/4405/?theme=olh) | [list](https://dequeuniversity.com/rules/axe/4.11/list?application=playwright) | serious | `#reflist > ul` | `<ul>` | [Failure list 2](#list-2) | diff --git a/a11y/results/markdown/page_titles.md b/a11y/results/markdown/page_titles.md new file mode 100644 index 0000000..2694c56 --- /dev/null +++ b/a11y/results/markdown/page_titles.md @@ -0,0 +1,48 @@ +# Page Title Comparison Across Themes + +Generated from 42 URL(s). + +| URL | OLH Title | Material Title | Clean Title | All Identical | Human Review | +| ---------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | -------------------------------------------------------------| +| [http://localhost:8000/](http://localhost:8000/) | Open Library of Humanities | Open Library of Humanities | Open Library of Humanities | :white_check_mark: | :white_check_mark: :white_check_mark: :white_check_mark: | +| [http://localhost:8000/404/](http://localhost:8000/404/) | Error: 404 | Error: 404 | Error: 404 | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/contact](http://localhost:8000/contact) | Contact | Contact | Contact | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/journals](http://localhost:8000/journals) | Open Library of Humanities | Open Library of Humanities \| Journals | Open Library of Humanities \| Journals | :x: | :x: :white_check_mark: :white_check_mark: | +| [http://localhost:8000/olh/](http://localhost:8000/olh/) | Open Library of Humanities | Open Library of Humanities | Open Library of Humanities | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/glossa/](http://localhost:8000/glossa/) | Glossa: a journal of general linguistics | Glossa: a journal of general linguistics | Glossa: a journal of general linguistics | :white_check_mark: | :white_check_mark: :white_check_mark: :white_check_mark: | +| [http://localhost:8000/olh/404/](http://localhost:8000/olh/404/) | Error: 404 | Error: 404 | Error: 404 | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/olh/contact](http://localhost:8000/olh/contact) | Contact | Contact | Contact | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/olh/editorialteam](http://localhost:8000/olh/editorialteam) | Editorial Team | Editorial Team | Editorial Team | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/olh/submissions](http://localhost:8000/olh/submissions) | Submissions | Submissions | Submissions | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/olh/site/about](http://localhost:8000/olh/site/about) | About | About | About | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/olh/site/author-guidelines](http://localhost:8000/olh/site/author-guidelines) | Author Guidelines | Author Guidelines | Author Guidelines | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/olh/site/journal-policies/](http://localhost:8000/olh/site/journal-policies/) | Journal Policies | Journal Policies | Journal Policies | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/ane/contact](http://localhost:8000/ane/contact) | Contact | Contact | Contact | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/ane/editorialteam](http://localhost:8000/ane/editorialteam) | Editorial Team | Editorial Team | Editorial Team | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/ane/submissions](http://localhost:8000/ane/submissions) | Submissions | Submissions | Submissions | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/ane/site/about](http://localhost:8000/ane/site/about) | About | About | About | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/ane/site/author-guidelines](http://localhost:8000/ane/site/author-guidelines) | Author Guidelines | Author Guidelines | Author Guidelines | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/glossa/site/governance/](http://localhost:8000/glossa/site/governance/) | Governance | Governance | Governance | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/glossa/site/blindreview/](http://localhost:8000/glossa/site/blindreview/) | Ensuring a Blind Review | Ensuring a Blind Review | Ensuring a Blind Review | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/olh/news/](http://localhost:8000/olh/news/) | News | News | News | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/glossa/news/](http://localhost:8000/glossa/news/) | News | News | News | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/olh/news/429/](http://localhost:8000/olh/news/429/) | News - OLH is now dedicated to publishing Special Collections | News - OLH is now dedicated to publishing Special Collections | OLH is now dedicated to publishing Special Collections | :x: | :x: :x: :x: | +| [http://localhost:8000/olh/news/758/](http://localhost:8000/olh/news/758/) | News - title after previous disappeared | News - title after previous disappeared | title after previous disappeared | :x: | :x: :x: :x: | +| [http://localhost:8000/olh/news/759/](http://localhost:8000/olh/news/759/) | News - random news | News - random news | random news | :x: | :x: :x: :x: | +| [http://localhost:8000/olh/articles](http://localhost:8000/olh/articles) | Articles | Articles | Articles | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/ane/articles](http://localhost:8000/ane/articles) | Articles | Articles | Articles | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/olh/article/id/4633/](http://localhost:8000/olh/article/id/4633/) | Nancy Astor, Women and Politics, 1919–1945 \| Open Library of Humanities | Nancy Astor, Women and Politics, 1919–1945 \| Open Library of Humanities | Nancy Astor, Women and Politics, 1919–1945 \| Open Library of Humanities | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/olh/article/id/4642/](http://localhost:8000/olh/article/id/4642/) | Commonalities and Differences in the Interpretation of Predicates of Personal Taste vs. Relational Locative Expressions: Some Theoretical Considerations and Experimental Evidence \| Open Library of Humanities | Commonalities and Differences in the Interpretation of Predicates of Personal Taste vs. Relational Locative Expressions: Some Theoretical Considerations and Experimental Evidence \| Open Library of Humanities | Commonalities and Differences in the Interpretation of Predicates of Personal Taste vs. Relational Locative Expressions: Some Theoretical Considerations and Experimental Evidence \| Open Library of Humanities | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/ane/article/id/7885/](http://localhost:8000/ane/article/id/7885/) | Fostering Campus-Wide Dialogue and Student-Centered Learning through Film Festivals and Media Projects: Engaging Chinese Environmental Issues beyond the Asian Studies Classroom \| ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts | Fostering Campus-Wide Dialogue and Student-Centered Learning through Film Festivals and Media Projects: Engaging Chinese Environmental Issues beyond the Asian Studies Classroom \| ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts | Fostering Campus-Wide Dialogue and Student-Centered Learning through Film Festivals and Media Projects: Engaging Chinese Environmental Issues beyond the Asian Studies Classroom \| ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/ane/article/id/7789/](http://localhost:8000/ane/article/id/7789/) | Re-Examining Extreme Violence: Historical Reconstruction and Ethnic Consciousness in Warriors of the Rainbow: Seediq Bale \| ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts | Re-Examining Extreme Violence: Historical Reconstruction and Ethnic Consciousness in Warriors of the Rainbow: Seediq Bale \| ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts | Re-Examining Extreme Violence: Historical Reconstruction and Ethnic Consciousness in Warriors of the Rainbow: Seediq Bale \| ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/olh/issues](http://localhost:8000/olh/issues) | Issues | Issues | Open Library of Humanities | :x: | :x: :x: :x: | +| [http://localhost:8000/ane/issues/](http://localhost:8000/ane/issues/) | Issues | Issues | ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts | :x: | :x: :x: :x: | +| [http://localhost:8000/olh/issue/964/info/](http://localhost:8000/olh/issue/964/info/) | Open Library of Humanities \| Issue: Issue: 1(10) Volume 10 (2024) | Open Library of Humanities \| Issue: Issue: 1(10) Volume 10 (2024) | Open Library of Humanities \| Issue: Issue: 1(10) Volume 10 (2024) | :white_check_mark: | :white_check_mark: :white_check_mark: :white_check_mark: | +| [http://localhost:8000/olh/issue/411/info/](http://localhost:8000/olh/issue/411/info/) | Open Library of Humanities \| Issue: Issue: 1(7) Volume 7 (2021) | Open Library of Humanities \| Issue: Issue: 1(7) Volume 7 (2021) | Open Library of Humanities \| Issue: Issue: 1(7) Volume 7 (2021) | :white_check_mark: | :white_check_mark: :white_check_mark: :white_check_mark: | +| [http://localhost:8000/ane/issue/774/info/](http://localhost:8000/ane/issue/774/info/) | ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts \| Issue: Issue: 2(27) Volume 27 (2021) | ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts \| Issue: Issue: 2(27) Volume 27 (2021) | ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts \| Issue: Issue: 2(27) Volume 27 (2021) | :white_check_mark: | :white_check_mark: :white_check_mark: :white_check_mark: | +| [http://localhost:8000/ane/issue/762/info/](http://localhost:8000/ane/issue/762/info/) | ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts \| Issue: Issue: 2(21) Volume 21 (2014) | ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts \| Issue: Issue: 2(21) Volume 21 (2014) | ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts \| Issue: Issue: 2(21) Volume 21 (2014) | :white_check_mark: | :white_check_mark: :white_check_mark: :white_check_mark: | +| [http://localhost:8000/olh/collections/](http://localhost:8000/olh/collections/) | Special Collections | Special Collections | Special Collections | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/glossa/collections/](http://localhost:8000/glossa/collections/) | Collections | Collections | Collections | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/olh/collections/414/](http://localhost:8000/olh/collections/414/) | Open Library of Humanities \| Collection: | Open Library of Humanities \| Collection: | Open Library of Humanities \| Collection: | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/olh/collections/455/](http://localhost:8000/olh/collections/455/) | Open Library of Humanities \| Collection: | Open Library of Humanities \| Collection: | Open Library of Humanities \| Collection: | :white_check_mark: | :x: :x: :x: | +| [http://localhost:8000/glossa/collections/888/](http://localhost:8000/glossa/collections/888/) | Glossa: a journal of general linguistics \| Collection: | Glossa: a journal of general linguistics \| Collection: | Glossa: a journal of general linguistics \| Collection: | :white_check_mark: | :x: :x: :x: | diff --git a/a11y/test_inputs/clarity.json b/a11y/test_inputs/clarity.json new file mode 100644 index 0000000..3b048d9 --- /dev/null +++ b/a11y/test_inputs/clarity.json @@ -0,0 +1,31 @@ +[ + "http://localhost:8000/", + "http://localhost:8000/404/", + "http://localhost:8000/journals/", + "http://localhost:8000/contact/", + + "http://localhost:8000/olh/", + "http://localhost:8000/olh/accessibility/", + "http://localhost:8000/olh/contact/ ", + "http://localhost:8000/olh/editorialteam/", + "http://localhost:8000/olh/search/", + "http://localhost:8000/olh/site/about/", + "http://localhost:8000/olh/site/author-guidelines/", + "http://localhost:8000/olh/site/journal-policies/", + "http://localhost:8000/olh/submissions/", + + "http://localhost:8000/olh/issues/", + "http://localhost:8000/olh/issue/402/info/", + "http://localhost:8000/olh/issue/409/info/", + + "http://localhost:8000/olh/collections/", + "http://localhost:8000/olh/collections/846/", + + "http://localhost:8000/olh/news/", + "http://localhost:8000/olh/news/429/", + + "http://localhost:8000/olh/articles/", + "http://localhost:8000/olh/article/id/4403/", + "http://localhost:8000/olh/article/id/4405/" + +] \ No newline at end of file diff --git a/a11y/test_inputs/clean.json b/a11y/test_inputs/clean.json new file mode 100644 index 0000000..624a2d1 --- /dev/null +++ b/a11y/test_inputs/clean.json @@ -0,0 +1,31 @@ +[ + "http://localhost:8000/?theme=clean", + "http://localhost:8000/404/?theme=clean", + "http://localhost:8000/journals/?theme=clean", + "http://localhost:8000/contact/?theme=clean", + + "http://localhost:8000/olh/?theme=clean", + "http://localhost:8000/olh/accessibility/?theme=clean", + "http://localhost:8000/olh/contact/?theme=clean ", + "http://localhost:8000/olh/editorialteam/?theme=clean", + "http://localhost:8000/olh/search/?theme=clean", + "http://localhost:8000/olh/site/about/?theme=clean", + "http://localhost:8000/olh/site/author-guidelines/?theme=clean", + "http://localhost:8000/olh/site/journal-policies/?theme=clean", + "http://localhost:8000/olh/submissions/?theme=clean", + + "http://localhost:8000/olh/issues/?theme=clean", + "http://localhost:8000/olh/issue/402/info/?theme=clean", + "http://localhost:8000/olh/issue/409/info/?theme=clean", + + "http://localhost:8000/olh/collections/?theme=clean", + "http://localhost:8000/olh/collections/846/?theme=clean", + + "http://localhost:8000/olh/news/?theme=clean", + "http://localhost:8000/olh/news/429/?theme=clean", + + "http://localhost:8000/olh/articles/?theme=clean", + "http://localhost:8000/olh/article/id/4403/?theme=clean", + "http://localhost:8000/olh/article/id/4405/?theme=clean" + +] \ No newline at end of file diff --git a/a11y/test_inputs/front_of_house.json b/a11y/test_inputs/front_of_house.json new file mode 100644 index 0000000..0b77a3b --- /dev/null +++ b/a11y/test_inputs/front_of_house.json @@ -0,0 +1,84 @@ +[ + "http://localhost:8000/?theme=clean", + "http://localhost:8000/404/?theme=clean", + "http://localhost:8000/journals/?theme=clean", + "http://localhost:8000/contact/?theme=clean", + + "http://localhost:8000/olh/?theme=clean", + "http://localhost:8000/olh/accessibility/?theme=clean", + "http://localhost:8000/olh/contact/?theme=clean ", + "http://localhost:8000/olh/editorialteam/?theme=clean", + "http://localhost:8000/olh/search/?theme=clean", + "http://localhost:8000/olh/site/about/?theme=clean", + "http://localhost:8000/olh/site/author-guidelines/?theme=clean", + "http://localhost:8000/olh/site/journal-policies/?theme=clean", + "http://localhost:8000/olh/submissions/?theme=clean", + + "http://localhost:8000/olh/issues/?theme=clean", + "http://localhost:8000/olh/issue/402/info/?theme=clean", + "http://localhost:8000/olh/issue/409/info/?theme=clean", + + "http://localhost:8000/olh/collections/?theme=clean", + "http://localhost:8000/olh/collections/846/?theme=clean", + + "http://localhost:8000/olh/news/?theme=clean", + "http://localhost:8000/olh/news/429/?theme=clean", + + "http://localhost:8000/olh/articles/?theme=clean", + "http://localhost:8000/olh/article/id/4403/?theme=clean", + "http://localhost:8000/olh/article/id/4405/?theme=clean", + + "http://localhost:8000/?theme=olh", + "http://localhost:8000/404/?theme=olh", + "http://localhost:8000/journals/?theme=olh", + "http://localhost:8000/contact/?theme=olh", + + "http://localhost:8000/olh/?theme=olh", + "http://localhost:8000/olh/accessibility/?theme=olh", + "http://localhost:8000/olh/contact/?theme=olh ", + "http://localhost:8000/olh/editorialteam/?theme=olh", + "http://localhost:8000/olh/search/?theme=olh", + "http://localhost:8000/olh/site/about/?theme=olh", + "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "http://localhost:8000/olh/submissions/?theme=olh", + + "http://localhost:8000/olh/issues/?theme=olh", + "http://localhost:8000/olh/issue/402/info/?theme=olh", + "http://localhost:8000/olh/issue/409/info/?theme=olh", + + "http://localhost:8000/olh/collections/?theme=olh", + "http://localhost:8000/olh/collections/846/?theme=olh", + + "http://localhost:8000/olh/news/?theme=olh", + "http://localhost:8000/olh/news/429/?theme=olh", + + "http://localhost:8000/olh/articles/?theme=olh", + "http://localhost:8000/olh/article/id/4403/?theme=olh", + "http://localhost:8000/olh/article/id/4405/?theme=olh", + + "http://localhost:8000/olh/?theme=material", + "http://localhost:8000/olh/accessibility/?theme=material", + "http://localhost:8000/olh/contact/?theme=material ", + "http://localhost:8000/olh/editorialteam/?theme=material", + "http://localhost:8000/olh/search/?theme=material", + "http://localhost:8000/olh/site/about/?theme=material", + "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "http://localhost:8000/olh/site/journal-policies/?theme=material", + "http://localhost:8000/olh/submissions/?theme=material", + + "http://localhost:8000/olh/issues/?theme=material", + "http://localhost:8000/olh/issue/402/info/?theme=material", + "http://localhost:8000/olh/issue/409/info/?theme=material", + + "http://localhost:8000/olh/collections/?theme=material", + "http://localhost:8000/olh/collections/846/?theme=material", + + "http://localhost:8000/olh/news/?theme=material", + "http://localhost:8000/olh/news/429/?theme=material", + + "http://localhost:8000/olh/articles/?theme=material", + "http://localhost:8000/olh/article/id/4403/?theme=material", + "http://localhost:8000/olh/article/id/4405/?theme=material" + +] \ No newline at end of file diff --git a/a11y/test_inputs/hourglass.json b/a11y/test_inputs/hourglass.json new file mode 100644 index 0000000..9ebd95e --- /dev/null +++ b/a11y/test_inputs/hourglass.json @@ -0,0 +1,28 @@ +[ + "http://localhost:8000/", + "http://localhost:8000/contact/", + "http://localhost:8000/journals/", + "http://localhost:8000/login/", + "http://localhost:8000/news/702/", + "http://localhost:8000/news/743/", + "http://localhost:8000/register/step/1/", + "http://localhost:8000/site/accessibility/", + "http://localhost:8000/site/announcements-blog/", + "http://localhost:8000/site/copyright/", + "http://localhost:8000/site/for-editors/", + "http://localhost:8000/site/for-librarians-consortia/", + "http://localhost:8000/site/for-readers-authors/", + "http://localhost:8000/site/how-we-work/", + "http://localhost:8000/site/internships/", + "http://localhost:8000/site/janeway/", + "http://localhost:8000/site/newsletter-annual-reports/", + "http://localhost:8000/site/oa-glossary/", + "http://localhost:8000/site/open-access-movement/", + "http://localhost:8000/site/our-team/", + "http://localhost:8000/site/privacy/", + "http://localhost:8000/site/publisher-policies/", + "http://localhost:8000/site/reading-list/", + "http://localhost:8000/site/resources/", + "http://localhost:8000/site/what-we-do/", + "http://localhost:8000/site/who-we-are/" +] \ No newline at end of file diff --git a/a11y/test_inputs/material.json b/a11y/test_inputs/material.json new file mode 100644 index 0000000..4763220 --- /dev/null +++ b/a11y/test_inputs/material.json @@ -0,0 +1,27 @@ +[ + + "http://localhost:8000/olh/?theme=material", + "http://localhost:8000/olh/accessibility/?theme=material", + "http://localhost:8000/olh/contact/?theme=material ", + "http://localhost:8000/olh/editorialteam/?theme=material", + "http://localhost:8000/olh/search/?theme=material", + "http://localhost:8000/olh/site/about/?theme=material", + "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "http://localhost:8000/olh/site/journal-policies/?theme=material", + "http://localhost:8000/olh/submissions/?theme=material", + + "http://localhost:8000/olh/issues/?theme=material", + "http://localhost:8000/olh/issue/402/info/?theme=material", + "http://localhost:8000/olh/issue/409/info/?theme=material", + + "http://localhost:8000/olh/collections/?theme=material", + "http://localhost:8000/olh/collections/846/?theme=material", + + "http://localhost:8000/olh/news/?theme=material", + "http://localhost:8000/olh/news/429/?theme=material", + + "http://localhost:8000/olh/articles/?theme=material", + "http://localhost:8000/olh/article/id/4403/?theme=material", + "http://localhost:8000/olh/article/id/4405/?theme=material" + +] \ No newline at end of file diff --git a/a11y/test_inputs/olh.json b/a11y/test_inputs/olh.json new file mode 100644 index 0000000..ce7159e --- /dev/null +++ b/a11y/test_inputs/olh.json @@ -0,0 +1,31 @@ +[ + "http://localhost:8000/?theme=olh", + "http://localhost:8000/404/?theme=olh", + "http://localhost:8000/journals/?theme=olh", + "http://localhost:8000/contact/?theme=olh", + + "http://localhost:8000/olh/?theme=olh", + "http://localhost:8000/olh/accessibility/?theme=olh", + "http://localhost:8000/olh/contact/?theme=olh ", + "http://localhost:8000/olh/editorialteam/?theme=olh", + "http://localhost:8000/olh/search/?theme=olh", + "http://localhost:8000/olh/site/about/?theme=olh", + "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "http://localhost:8000/olh/submissions/?theme=olh", + + "http://localhost:8000/olh/issues/?theme=olh", + "http://localhost:8000/olh/issue/402/info/?theme=olh", + "http://localhost:8000/olh/issue/409/info/?theme=olh", + + "http://localhost:8000/olh/collections/?theme=olh", + "http://localhost:8000/olh/collections/846/?theme=olh", + + "http://localhost:8000/olh/news/?theme=olh", + "http://localhost:8000/olh/news/429/?theme=olh", + + "http://localhost:8000/olh/articles/?theme=olh", + "http://localhost:8000/olh/article/id/4403/?theme=olh", + "http://localhost:8000/olh/article/id/4405/?theme=olh" + +] \ No newline at end of file diff --git a/a11y/test_inputs/page_title_urls.json b/a11y/test_inputs/page_title_urls.json new file mode 100644 index 0000000..cf47383 --- /dev/null +++ b/a11y/test_inputs/page_title_urls.json @@ -0,0 +1,44 @@ +[ + "http://localhost:8000/", + "http://localhost:8000/404/", + "http://localhost:8000/contact", + "http://localhost:8000/journals", + "http://localhost:8000/olh/", + "http://localhost:8000/glossa/", + "http://localhost:8000/olh/404/", + "http://localhost:8000/olh/contact", + "http://localhost:8000/olh/editorialteam", + "http://localhost:8000/olh/submissions", + "http://localhost:8000/olh/site/about", + "http://localhost:8000/olh/site/author-guidelines", + "http://localhost:8000/olh/site/journal-policies/", + "http://localhost:8000/ane/contact", + "http://localhost:8000/ane/editorialteam", + "http://localhost:8000/ane/submissions", + "http://localhost:8000/ane/site/about", + "http://localhost:8000/ane/site/author-guidelines", + "http://localhost:8000/glossa/site/governance/", + "http://localhost:8000/glossa/site/blindreview/", + "http://localhost:8000/olh/news/", + "http://localhost:8000/glossa/news/", + "http://localhost:8000/olh/news/429/", + "http://localhost:8000/olh/news/758/", + "http://localhost:8000/olh/news/759/", + "http://localhost:8000/olh/articles", + "http://localhost:8000/ane/articles", + "http://localhost:8000/olh/article/id/4633/", + "http://localhost:8000/olh/article/id/4642/", + "http://localhost:8000/ane/article/id/7885/", + "http://localhost:8000/ane/article/id/7789/", + "http://localhost:8000/olh/issues", + "http://localhost:8000/ane/issues/", + "http://localhost:8000/olh/issue/964/info/", + "http://localhost:8000/olh/issue/411/info/", + "http://localhost:8000/ane/issue/774/info/", + "http://localhost:8000/ane/issue/762/info/", + "http://localhost:8000/olh/collections/", + "http://localhost:8000/glossa/collections/", + "http://localhost:8000/olh/collections/414/", + "http://localhost:8000/olh/collections/455/", + "http://localhost:8000/glossa/collections/888/" +] diff --git a/management/commands/a11y_page_titles.py b/management/commands/a11y_page_titles.py new file mode 100644 index 0000000..6ab9849 --- /dev/null +++ b/management/commands/a11y_page_titles.py @@ -0,0 +1,202 @@ +import json +import os +from html import unescape +from urllib.parse import urlparse + +from django.conf import settings +from django.test import Client +from django.test.utils import override_settings +from django.utils import translation +from bs4 import BeautifulSoup + +from utils.management.base import ProfiledCommand + + +class Command(ProfiledCommand): + """CLI interface for generating a markdown file comparing page titles across themes.""" + + help = "Generates a markdown file with a table comparing page titles across OLH, Material, and Clean themes." + + DEFAULT_URLS_JSON = os.path.join( + settings.BASE_DIR, "plugins", "scripts", "a11y", "test_inputs", "page_title_urls.json" + ) + DEFAULT_OUTPUT = os.path.join( + settings.BASE_DIR, "plugins", "scripts", "a11y", "results", "markdown", "page_titles.md" + ) + + def add_arguments(self, parser): + """Adds arguments to Django's management command-line parser.""" + super().add_arguments(parser) + parser.add_argument( + "--output", + default=None, + metavar="PATH", + help=f"Output markdown file path (default: {self.DEFAULT_OUTPUT})", + ) + parser.add_argument( + "--urls-json", + default=None, + metavar="PATH", + help=f"Path to JSON file containing list of URLs to check (default: {self.DEFAULT_URLS_JSON})", + ) + + def extract_title_from_html(self, html_content): + """Extract the title from HTML content.""" + try: + soup = BeautifulSoup(html_content, "html.parser") + title_tag = soup.find("title") + if title_tag: + return unescape(title_tag.get_text().strip()) + except Exception as e: + self.stdout.write(self.style.WARNING(f"Error parsing HTML: {e}")) + return None + + def normalize_url_for_client(self, url): + """Normalize URL to make it work with Django test client.""" + parsed = urlparse(url) + # Extract path and query string + path = parsed.path + if parsed.query: + path += f"?{parsed.query}" + return path, parsed.netloc + + def get_title_for_theme(self, url, theme): + """Get the page title for a given URL and theme.""" + try: + with override_settings(DEBUG=True, IN_TEST_RUNNER=True): + client = Client() + path, server_name = self.normalize_url_for_client(url) + + # Add theme parameter + path = f"{path}?theme={theme}" + + # Use SERVER_NAME if it's an absolute URL (domain mode) + kwargs = {"follow": True} + if server_name: + kwargs["SERVER_NAME"] = server_name + + response = client.get(path, **kwargs) + + if response.status_code == 200: + title = self.extract_title_from_html(response.content) + return title + else: + return f"Error: {response.status_code}" + except Exception as e: + return f"Error: {str(e)}" + + def load_urls_from_json(self, path): + """Load list of URLs from a JSON file. Returns list of URL strings.""" + with open(path, encoding="utf-8") as f: + data = json.load(f) + if not isinstance(data, list): + raise ValueError(f"JSON file must contain a list of URLs, got {type(data)}") + return [str(u) for u in data] + + def handle(self, *args, **options): + """Main command handler.""" + with override_settings(DEBUG=True, IN_TEST_RUNNER=True): + with translation.override(settings.LANGUAGE_CODE): + output_file = options.get("output") or self.DEFAULT_OUTPUT + urls_json = options.get("urls_json") or self.DEFAULT_URLS_JSON + + try: + all_urls = self.load_urls_from_json(urls_json) + except FileNotFoundError: + self.stderr.write( + self.style.ERROR(f"URLs file not found: {urls_json}") + ) + return + except (json.JSONDecodeError, ValueError) as e: + self.stderr.write( + self.style.ERROR(f"Invalid URLs JSON: {e}") + ) + return + + # Preserve order by filtering duplicates while maintaining order + seen = set() + deduped = [] + for url in all_urls: + if url not in seen: + seen.add(url) + deduped.append(url) + all_urls = deduped + + self.stdout.write(f"Processing {len(all_urls)} URL(s)") + + # Get titles for each URL in each theme + themes = ["olh", "material", "clean"] + results = [] + + self.stdout.write("Fetching titles for each URL and theme...") + for i, url in enumerate(all_urls, 1): + self.stdout.write(f"Processing {i}/{len(all_urls)}: {url}") + + titles = {} + for theme in themes: + title = self.get_title_for_theme(url, theme) + titles[theme] = title + + # Check if all titles are identical + # Get all title values (including errors) + all_title_values = [titles[t] for t in themes if titles[t]] + + # All identical if all titles are the same (including if they're all errors) + if len(all_title_values) == len(themes): + all_identical = len(set(all_title_values)) <= 1 + else: + all_identical = False + + results.append( + { + "url": url, + "titles": titles, + "all_identical": all_identical, + } + ) + + def escape_markdown(text): + if not text or text.startswith("Error"): + return text or "N/A" + return text.replace("|", "\\|").replace("\n", " ") + + # Build all row data before writing so column widths can be computed + headers = ["URL", "OLH Title", "Material Title", "Clean Title", "All Identical", "Human Review"] + rows = [] + for result in results: + url = result["url"] + titles = result["titles"] + all_identical = ":white_check_mark:" if result["all_identical"] else ":x:" + page_link = f"[{url}]({url})" + olh_title = escape_markdown(titles.get("olh", "N/A")) + material_title = escape_markdown(titles.get("material", "N/A")) + clean_title = escape_markdown(titles.get("clean", "N/A")) + rows.append([page_link, olh_title, material_title, clean_title, all_identical, ""]) + + # Calculate column widths for vertical alignment + col_widths = [len(h) for h in headers] + for row in rows: + for i, cell in enumerate(row): + col_widths[i] = max(col_widths[i], len(cell)) + + # Generate markdown table + self.stdout.write(f"Generating markdown file: {output_file}") + output_dir = os.path.dirname(output_file) + if output_dir: + os.makedirs(output_dir, exist_ok=True) + with open(output_file, "w", encoding="utf-8") as f: + f.write("# Page Title Comparison Across Themes\n\n") + f.write(f"Generated from {len(all_urls)} URL(s).\n\n") + + header_row = "| " + " | ".join(h.ljust(col_widths[i]) for i, h in enumerate(headers)) + " |" + separator_row = "| " + " | ".join("-" * col_widths[i] for i in range(len(headers))) + " |" + f.write(header_row + "\n") + f.write(separator_row + "\n") + + for row in rows: + data_row = "| " + " | ".join(cell.ljust(col_widths[i]) for i, cell in enumerate(row)) + " |" + f.write(data_row + "\n") + + self.stdout.write( + self.style.SUCCESS(f"Successfully generated {output_file}") + )