From 0eaf2a957f75e0601cc7f7214bedd4d2bc0c8608 Mon Sep 17 00:00:00 2001
From: StephDriver <5330770+StephDriver@users.noreply.github.com>
Date: Fri, 6 Mar 2026 17:10:26 +0000
Subject: [PATCH 1/7] add DS_Store to gitignore
---
.gitignore | 3 +++
1 file changed, 3 insertions(+)
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]
From 798ce1b157db05e1c57a4e89df56bb2be454c89f Mon Sep 17 00:00:00 2001
From: StephDriver <5330770+StephDriver@users.noreply.github.com>
Date: Tue, 24 Mar 2026 14:26:03 +0000
Subject: [PATCH 2/7] a11y: #2 add management command to report on page titles
---
a11y/docs/a11y_page_titles.md | 76 +++++++++
a11y/results/markdown/page_titles.md | 48 ++++++
a11y/test_inputs/page_title_urls.json | 44 ++++++
management/commands/a11y_page_titles.py | 202 ++++++++++++++++++++++++
4 files changed, 370 insertions(+)
create mode 100644 a11y/docs/a11y_page_titles.md
create mode 100644 a11y/results/markdown/page_titles.md
create mode 100644 a11y/test_inputs/page_title_urls.json
create mode 100644 management/commands/a11y_page_titles.py
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/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/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}")
+ )
From f08e98b4d11b8368f313164a81b191106ec49fb3 Mon Sep 17 00:00:00 2001
From: StephDriver <5330770+StephDriver@users.noreply.github.com>
Date: Tue, 24 Mar 2026 14:32:21 +0000
Subject: [PATCH 3/7] a11y: #2 add playwright and configure axe
---
a11y/playwright/.gitignore | 8 +
a11y/playwright/axe-detail-teardown.js | 121 +++++++++
a11y/playwright/axe-general-markdown.js | 184 +++++++++++++
a11y/playwright/axe-general-report.js | 45 ++++
a11y/playwright/axe-general-teardown.js | 84 ++++++
a11y/playwright/axe-normalise.js | 54 ++++
a11y/playwright/axe-setup.js | 17 ++
a11y/playwright/markdown-report.js | 299 ++++++++++++++++++++++
a11y/playwright/package-lock.json | 122 +++++++++
a11y/playwright/package.json | 16 ++
a11y/playwright/playwright.config.js | 79 ++++++
a11y/playwright/teardown.js | 13 +
a11y/playwright/tests/axe-detail.test.js | 40 +++
a11y/playwright/tests/axe-general.test.js | 62 +++++
a11y/test_inputs/front_of_house.json | 84 ++++++
15 files changed, 1228 insertions(+)
create mode 100644 a11y/playwright/.gitignore
create mode 100644 a11y/playwright/axe-detail-teardown.js
create mode 100644 a11y/playwright/axe-general-markdown.js
create mode 100644 a11y/playwright/axe-general-report.js
create mode 100644 a11y/playwright/axe-general-teardown.js
create mode 100644 a11y/playwright/axe-normalise.js
create mode 100644 a11y/playwright/axe-setup.js
create mode 100644 a11y/playwright/markdown-report.js
create mode 100644 a11y/playwright/package-lock.json
create mode 100644 a11y/playwright/package.json
create mode 100644 a11y/playwright/playwright.config.js
create mode 100644 a11y/playwright/teardown.js
create mode 100644 a11y/playwright/tests/axe-detail.test.js
create mode 100644 a11y/playwright/tests/axe-general.test.js
create mode 100644 a11y/test_inputs/front_of_house.json
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-detail-teardown.js b/a11y/playwright/axe-detail-teardown.js
new file mode 100644
index 0000000..09ea5e6
--- /dev/null
+++ b/a11y/playwright/axe-detail-teardown.js
@@ -0,0 +1,121 @@
+// @ts-check
+/**
+ * Teardown for axe-detail.test.js.
+ * Collates raw results into a JSON report with full node detail, including axe check arrays.
+ * Autogenerated IDs in targets and html are normalised for readability.
+ */
+const fs = require('fs');
+const path = require('path');
+const { normalise, normaliseHtml } = require('./axe-normalise');
+
+const testResultsDir = path.join(__dirname, 'test-results');
+const rawDir = path.join(testResultsDir, 'raw');
+
+module.exports = async function axeDetailTeardown() {
+ if (!fs.existsSync(rawDir)) return;
+
+ const files = fs.readdirSync(rawDir).filter((f) => f.endsWith('.json'));
+ if (files.length === 0) return;
+
+ files.sort((a, b) => {
+ const na = parseInt(a.replace(/\D/g, ''), 10);
+ const nb = parseInt(b.replace(/\D/g, ''), 10);
+ if (!isNaN(na) && !isNaN(nb)) return na - nb;
+ return a.localeCompare(b);
+ });
+
+ const results = files.map((f) => JSON.parse(fs.readFileSync(path.join(rawDir, f), 'utf8')));
+
+ const startFile = path.join(testResultsDir, 'run-start.txt');
+ const collated = fs.existsSync(startFile)
+ ? fs.readFileSync(startFile, 'utf8').trim()
+ : new Date().toISOString().slice(0, 16);
+
+ const ruleMeta = new Map(); // Map
+ const ruleUrlBrowsers = new Map(); // Map>>
+ const ruleUrlNodes = new Map(); // Map>>
+
+ for (const { url, violations, rulesRun, browser } of results) {
+ for (const { id, help, tags } of (rulesRun || [])) {
+ if (!ruleMeta.has(id)) {
+ ruleMeta.set(id, { id, help, tags: [...tags].sort() });
+ }
+ if (!ruleUrlBrowsers.has(id)) ruleUrlBrowsers.set(id, new Map());
+ const urlMap = ruleUrlBrowsers.get(id);
+ if (!urlMap.has(url)) urlMap.set(url, new Map());
+ urlMap.get(url).set(browser, collated);
+ }
+ for (const { id, nodes } of violations) {
+ if (!ruleUrlNodes.has(id)) ruleUrlNodes.set(id, new Map());
+ const urlMap = ruleUrlNodes.get(id);
+ if (!urlMap.has(url)) urlMap.set(url, new Map());
+ const nodeMap = urlMap.get(url);
+ for (const node of nodes) {
+ const normalisedTarget = Array.isArray(node.target)
+ ? node.target.map((/** @type {string} */ s) => normalise(s))
+ : normalise(String(node.target));
+ const key = String(normalisedTarget);
+ if (!nodeMap.has(key)) {
+ nodeMap.set(key, {
+ nodeData: {
+ ...node,
+ target: normalisedTarget,
+ html: normaliseHtml(node.html || ''),
+ },
+ occurrences: {},
+ });
+ }
+ const nodeEntry = nodeMap.get(key);
+ nodeEntry.occurrences[browser] = (nodeEntry.occurrences[browser] || 0) + 1;
+ }
+ }
+ }
+
+ const output = [...ruleMeta.values()]
+ .sort((a, b) => a.id.localeCompare(b.id))
+ .map(({ id, help, tags }) => {
+ const urlBrowsers = ruleUrlBrowsers.get(id) || new Map();
+ const urlNodes = ruleUrlNodes.get(id) || new Map();
+
+ const urls = [...urlBrowsers.entries()]
+ .sort(([a], [b]) => a.localeCompare(b))
+ .map(([u, browserMap]) => {
+ const nodeMap = urlNodes.get(u) || new Map();
+ const allBrowsers = [...browserMap.keys()].sort();
+
+ const browsers = Object.fromEntries(
+ [...browserMap.entries()].sort().map(([b, test_date]) => {
+ const violations = [...nodeMap.values()].reduce(
+ (sum, { occurrences }) => sum + (occurrences[b] || 0),
+ 0
+ );
+ return [b, { test_date, violations }];
+ })
+ );
+
+ const nodes = [...nodeMap.entries()]
+ .sort(([a], [b]) => a.localeCompare(b))
+ .map(([, { nodeData, occurrences }]) => ({
+ impact: nodeData.impact,
+ html: nodeData.html,
+ target: nodeData.target,
+ failureSummary: nodeData.failureSummary,
+ any: [...(nodeData.any || [])].sort((a, b) => a.id.localeCompare(b.id)),
+ all: [...(nodeData.all || [])].sort((a, b) => a.id.localeCompare(b.id)),
+ none: [...(nodeData.none || [])].sort((a, b) => a.id.localeCompare(b.id)),
+ occurrences: Object.fromEntries(
+ allBrowsers.map((b) => [b, { test_date: collated, violations: occurrences[b] || 0 }])
+ ),
+ }));
+
+ return { url: u, browsers, nodes };
+ });
+
+ return { id, help, tags, urls };
+ });
+
+ const timestamp = collated.replace(/[:.]/g, '-').slice(0, 19);
+ fs.mkdirSync(testResultsDir, { recursive: true });
+ const outPath = path.join(testResultsDir, `results-${timestamp}.json`);
+ fs.writeFileSync(outPath, JSON.stringify(output, null, 2), 'utf8');
+};
diff --git a/a11y/playwright/axe-general-markdown.js b/a11y/playwright/axe-general-markdown.js
new file mode 100644
index 0000000..e1247f4
--- /dev/null
+++ b/a11y/playwright/axe-general-markdown.js
@@ -0,0 +1,184 @@
+// @ts-check
+/**
+ * Build a markdown summary report from axe-general teardown output.
+ * One section per rule: heading, help text, tags, then a URL × browser violations table.
+ */
+
+/** 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>`');
+}
+
+/**
+ * Find the longest common URL prefix that ends at a path boundary (/)
+ * so table cells show only the distinctive path segment.
+ */
+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 path segment of url after root; use '/' when it is the root itself. */
+function shortUrl(root, url) {
+ const suffix = root && url.startsWith(root) ? url.slice(root.length) : url;
+ return suffix || '/';
+}
+
+/** Generate a stable anchor ID from a short URL path. */
+function urlAnchor(short) {
+ return 'url-' + short.replace(/[^a-z0-9]+/gi, '-').replace(/^-+|-+$/g, '').toLowerCase() || 'url-root';
+}
+
+/** Violation count cell: checkmark for zero, number otherwise. */
+function cell(n) {
+ return n === 0 ? ':white_check_mark:' : String(n);
+}
+
+/** Extract the test_date from the first browser entry found in the output. */
+function extractTestDate(output) {
+ for (const rule of output) {
+ for (const urlEntry of rule.urls) {
+ for (const browserData of Object.values(urlEntry.browsers)) {
+ if (browserData.test_date) return browserData.test_date;
+ }
+ }
+ }
+ return '';
+}
+
+/** Sum all violations across all URLs and browsers for a rule. */
+function totalViolations(rule) {
+ return rule.urls.reduce(
+ (sum, urlEntry) =>
+ sum + Object.values(urlEntry.browsers).reduce((s, b) => s + b.violations, 0),
+ 0
+ );
+}
+
+/**
+ * Build the markdown report from axe-general teardown output.
+ * @param {Array<{id: string, help: string, tags: string[], urls: Array<{url: string, browsers: Record}>}>} output
+ * @returns {string}
+ */
+function buildGeneralMarkdown(output) {
+ const testDate = extractTestDate(output);
+ const allUrls = [...new Set(output.flatMap((r) => r.urls.map((u) => u.url)))].sort();
+ const urlRoot = commonUrlRoot(allUrls);
+
+ const lines = [
+ '# Axe general accessibility report',
+ '',
+ `**Test date:** ${testDate}`,
+ '',
+ '| Rule | Description | Tags | Results |',
+ '| --- | --- | --- | --- |',
+ ];
+
+ for (const rule of output) {
+ const total = totalViolations(rule);
+ const desc = mdAngleBrackets(rule.help).replace(/\|/g, '\\|');
+ const tags = rule.tags.map((t) => `\`${t}\``).join(', ');
+ const results = total === 0 ? ':white_check_mark:' : `[${total}](#${rule.id})`;
+ lines.push(`| ${rule.id} | ${desc} | ${tags} | ${results} |`);
+ }
+
+ lines.push('');
+
+ // Second summary: URLs × browsers
+ const allBrowsers = [...new Set(
+ output.flatMap((r) => r.urls.flatMap((u) => Object.keys(u.browsers)))
+ )].sort();
+
+ // Build a map: url → browser → total violations across all rules
+ /** @type {Map>} */
+ const urlBrowserTotals = new Map();
+ for (const rule of output) {
+ for (const urlEntry of rule.urls) {
+ if (!urlBrowserTotals.has(urlEntry.url)) urlBrowserTotals.set(urlEntry.url, new Map());
+ const browserMap = urlBrowserTotals.get(urlEntry.url);
+ for (const [browser, data] of Object.entries(urlEntry.browsers)) {
+ browserMap.set(browser, (browserMap.get(browser) || 0) + data.violations);
+ }
+ }
+ }
+
+ lines.push(`| URL | ${allBrowsers.join(' | ')} |`, `| --- |${allBrowsers.map(() => ' --- |').join('')}`);
+ for (const url of allUrls) {
+ const browserMap = urlBrowserTotals.get(url) || new Map();
+ const short = shortUrl(urlRoot, url);
+ const hasViolations = [...(browserMap.values())].some((n) => n > 0);
+ const urlCell = hasViolations ? `[${short}](#${urlAnchor(short)})` : short;
+ const cells = allBrowsers.map((b) => cell(browserMap.get(b) || 0));
+ lines.push(`| ${urlCell} | ${cells.join(' | ')} |`);
+ }
+
+ lines.push('');
+
+ // Detail tables only for rules with at least one violation
+ for (const rule of output.filter((r) => totalViolations(r) > 0)) {
+ const browsers = rule.urls.length > 0 ? Object.keys(rule.urls[0].browsers).sort() : [];
+
+ lines.push(`## ${rule.id}`, '');
+ lines.push(mdAngleBrackets(rule.help), '');
+ lines.push(`Tags: ${rule.tags.map((t) => `\`${t}\``).join(', ')}`, '');
+
+ const header = `| URL | ${browsers.join(' | ')} | Total |`;
+ const sep = `| --- |${browsers.map(() => ' --- |').join('')} --- |`;
+ lines.push(header, sep);
+
+ for (const urlEntry of rule.urls) {
+ const counts = browsers.map((b) => urlEntry.browsers[b]?.violations ?? 0);
+ const rowTotal = counts.reduce((s, n) => s + n, 0);
+ if (rowTotal === 0) continue;
+ const urlLabel = shortUrl(urlRoot, urlEntry.url);
+ const cells = counts.map((n) => cell(n));
+ lines.push(`| ${urlLabel} | ${cells.join(' | ')} | ${cell(rowTotal)} |`);
+ }
+
+ lines.push('');
+ }
+
+ // Second detail set: one section per URL, rows are rules
+ // Build url → rule → browsers map (only where violations exist)
+ /** @type {Map>>} */
+ const urlRuleMap = new Map();
+ for (const rule of output) {
+ for (const urlEntry of rule.urls) {
+ const urlTotal = Object.values(urlEntry.browsers).reduce((s, b) => s + b.violations, 0);
+ if (urlTotal === 0) continue;
+ if (!urlRuleMap.has(urlEntry.url)) urlRuleMap.set(urlEntry.url, new Map());
+ urlRuleMap.get(urlEntry.url).set(rule.id, urlEntry.browsers);
+ }
+ }
+
+ for (const url of allUrls) {
+ const ruleMap = urlRuleMap.get(url);
+ if (!ruleMap) continue;
+
+ const short = shortUrl(urlRoot, url);
+ lines.push(``, `## ${short}`, '');
+
+ const header = `| Rule | ${allBrowsers.join(' | ')} | Total |`;
+ const sep = `| --- |${allBrowsers.map(() => ' --- |').join('')} --- |`;
+ lines.push(header, sep);
+
+ for (const [ruleId, browsers] of [...ruleMap.entries()].sort(([a], [b]) => a.localeCompare(b))) {
+ const counts = allBrowsers.map((b) => browsers[b]?.violations ?? 0);
+ const rowTotal = counts.reduce((s, n) => s + n, 0);
+ const cells = counts.map((n) => cell(n));
+ lines.push(`| ${ruleId} | ${cells.join(' | ')} | ${cell(rowTotal)} |`);
+ }
+
+ lines.push('');
+ }
+
+ return lines.join('\n');
+}
+
+module.exports = { buildGeneralMarkdown };
diff --git a/a11y/playwright/axe-general-report.js b/a11y/playwright/axe-general-report.js
new file mode 100644
index 0000000..46a8856
--- /dev/null
+++ b/a11y/playwright/axe-general-report.js
@@ -0,0 +1,45 @@
+// @ts-check
+/**
+ * Generate a markdown report from an existing axe-general JSON results file.
+ *
+ * Usage:
+ * node axe-general-report.js
+ * node axe-general-report.js (uses the most recent results-*.json in test-results/)
+ *
+ * Writes the markdown to the same directory and base name as the input, with a .md extension.
+ */
+const fs = require('fs');
+const path = require('path');
+const { buildGeneralMarkdown } = require('./axe-general-markdown');
+
+const testResultsDir = path.join(__dirname, 'test-results');
+
+function findLatestResults() {
+ if (!fs.existsSync(testResultsDir)) {
+ console.error(`No test-results directory found at ${testResultsDir}`);
+ process.exit(1);
+ }
+ const files = fs.readdirSync(testResultsDir)
+ .filter((f) => f.startsWith('results-') && f.endsWith('.json'))
+ .map((f) => path.join(testResultsDir, f))
+ .sort((a, b) => fs.statSync(b).mtimeMs - fs.statSync(a).mtimeMs);
+ if (files.length === 0) {
+ console.error('No results-*.json files found in test-results/');
+ process.exit(1);
+ }
+ return files[0];
+}
+
+const inputPath = path.resolve(process.argv[2] || findLatestResults());
+
+if (!fs.existsSync(inputPath)) {
+ console.error(`File not found: ${inputPath}`);
+ process.exit(1);
+}
+
+const output = JSON.parse(fs.readFileSync(inputPath, 'utf8'));
+const markdown = buildGeneralMarkdown(output);
+
+const outPath = inputPath.replace(/\.json$/, '.md');
+fs.writeFileSync(outPath, markdown, 'utf8');
+console.log(`Written: ${outPath}`);
diff --git a/a11y/playwright/axe-general-teardown.js b/a11y/playwright/axe-general-teardown.js
new file mode 100644
index 0000000..0448b22
--- /dev/null
+++ b/a11y/playwright/axe-general-teardown.js
@@ -0,0 +1,84 @@
+// @ts-check
+/**
+ * Teardown for axe-general.test.js.
+ * Collates per-URL raw results into a single JSON report with violation counts per browser per URL.
+ * Node-level detail is omitted; use axe-detail-teardown for that.
+ */
+const fs = require('fs');
+const path = require('path');
+const { buildGeneralMarkdown } = require('./axe-general-markdown');
+
+const testResultsDir = path.join(__dirname, 'test-results');
+const rawDir = path.join(testResultsDir, 'raw');
+
+module.exports = async function axeGeneralTeardown() {
+ if (!fs.existsSync(rawDir)) return;
+
+ const files = fs.readdirSync(rawDir).filter((f) => f.endsWith('.json'));
+ if (files.length === 0) return;
+
+ files.sort((a, b) => {
+ const na = parseInt(a.replace(/\D/g, ''), 10);
+ const nb = parseInt(b.replace(/\D/g, ''), 10);
+ if (!isNaN(na) && !isNaN(nb)) return na - nb;
+ return a.localeCompare(b);
+ });
+
+ const results = files.map((f) => JSON.parse(fs.readFileSync(path.join(rawDir, f), 'utf8')));
+
+ const startFile = path.join(testResultsDir, 'run-start.txt');
+ const collated = fs.existsSync(startFile)
+ ? fs.readFileSync(startFile, 'utf8').trim()
+ : new Date().toISOString().slice(0, 16);
+
+ const ruleMeta = new Map(); // Map
+ const ruleUrlBrowsers = new Map(); // Map>>
+ const ruleUrlViolations = new Map(); // Map>>
+
+ for (const { url, violations, rulesRun, browser } of results) {
+ for (const { id, help, tags } of (rulesRun || [])) {
+ if (!ruleMeta.has(id)) {
+ ruleMeta.set(id, { id, help, tags: [...tags].sort() });
+ }
+ if (!ruleUrlBrowsers.has(id)) ruleUrlBrowsers.set(id, new Map());
+ const urlMap = ruleUrlBrowsers.get(id);
+ if (!urlMap.has(url)) urlMap.set(url, new Map());
+ urlMap.get(url).set(browser, collated);
+ }
+ for (const { id, nodes } of violations) {
+ if (!ruleUrlViolations.has(id)) ruleUrlViolations.set(id, new Map());
+ const urlMap = ruleUrlViolations.get(id);
+ if (!urlMap.has(url)) urlMap.set(url, new Map());
+ const browserMap = urlMap.get(url);
+ browserMap.set(browser, (browserMap.get(browser) || 0) + nodes.length);
+ }
+ }
+
+ const output = [...ruleMeta.values()]
+ .sort((a, b) => a.id.localeCompare(b.id))
+ .map(({ id, help, tags }) => {
+ const urlBrowsers = ruleUrlBrowsers.get(id) || new Map();
+ const urlViolations = ruleUrlViolations.get(id) || new Map();
+
+ const urls = [...urlBrowsers.entries()]
+ .sort(([a], [b]) => a.localeCompare(b))
+ .map(([u, browserMap]) => ({
+ url: u,
+ browsers: Object.fromEntries(
+ [...browserMap.entries()].sort().map(([b, test_date]) => [
+ b,
+ { test_date, violations: (urlViolations.get(u) || new Map()).get(b) || 0 },
+ ])
+ ),
+ }));
+
+ return { id, help, tags, urls };
+ });
+
+ const timestamp = collated.replace(/[:.]/g, '-').slice(0, 19);
+ fs.mkdirSync(testResultsDir, { recursive: true });
+ const outPath = path.join(testResultsDir, `results-${timestamp}.json`);
+ fs.writeFileSync(outPath, JSON.stringify(output, null, 2), 'utf8');
+ const mdPath = path.join(testResultsDir, `results-${timestamp}.md`);
+ fs.writeFileSync(mdPath, buildGeneralMarkdown(output), 'utf8');
+};
diff --git a/a11y/playwright/axe-normalise.js b/a11y/playwright/axe-normalise.js
new file mode 100644
index 0000000..068015b
--- /dev/null
+++ b/a11y/playwright/axe-normalise.js
@@ -0,0 +1,54 @@
+// @ts-check
+/**
+ * Normalisation utilities for axe results.
+ * Replaces autogenerated IDs and sorts class attributes to prevent git history noise.
+ */
+
+/**
+ * Autogenerated ID patterns to normalise in selectors before deduplication and storage.
+ * Each entry replaces matches of `pattern` with `replacement`.
+ * Add new patterns here as autogenerated ID schemes are identified.
+ */
+const TARGET_NORMALISATIONS = [
+ // UUID must run first so prefix patterns don't consume part of a UUID before it can be matched in full
+ { pattern: /\b[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\b/gi, replacement: '[id]' },
+ { pattern: /\bblock-[a-z0-9]+\b/g, replacement: 'block-[id]' },
+ { pattern: /\bsection-[a-z0-9]+\b/g, replacement: 'section-[id]' },
+ { pattern: /\bm_select-input-[a-z0-9]+\b/g, replacement: 'm_select-input-[id]' },
+ { pattern: /\bselect-options-[a-z0-9]+\b/g, replacement: 'select-options-[id]' },
+ // Foundation accordion: generated IDs like 3glr2n-accordion and 3glr2n-accordion-label
+ // CSS-escaped form must run first e.g. \33 glr2n-accordion (digit-prefixed IDs), before the
+ // plain-text pattern consumes the alphanumeric suffix and leaves \37 [id]-accordion unmatched
+ { pattern: /\\[0-9a-f]{2} [a-z0-9]+-accordion(?:-[a-z]+)*/gi, replacement: '[id]-accordion' },
+ { pattern: /\b[a-z0-9]+-accordion(?:-[a-z]+)*\b/g, replacement: '[id]-accordion' },
+ { pattern: /data-n="[^"]+"/g, replacement: 'data-n="[id]"' },
+ { pattern: /\[data-resize="[^"]+"\]/g, replacement: '[data-resize="[id]"]' },
+];
+
+/**
+ * Normalise a string by replacing known autogenerated ID patterns.
+ * Applied to both target selectors and html content.
+ * @param {string} str
+ */
+function normalise(str) {
+ let result = str;
+ for (const { pattern, replacement } of TARGET_NORMALISATIONS) {
+ result = result.replace(pattern, replacement);
+ }
+ return result;
+}
+
+/**
+ * Normalise an html snippet for stable storage.
+ * Sorts class attribute values alphabetically to prevent git history noise
+ * caused by browsers adding classes in different orders at runtime.
+ * @param {string} html
+ */
+function normaliseHtml(html) {
+ return normalise(html || '').replace(/\bclass="([^"]*)"/g, (_, classes) => {
+ const sorted = classes.trim().split(/\s+/).filter(Boolean).sort().join(' ');
+ return `class="${sorted}"`;
+ });
+}
+
+module.exports = { normalise, normaliseHtml };
diff --git a/a11y/playwright/axe-setup.js b/a11y/playwright/axe-setup.js
new file mode 100644
index 0000000..80470b7
--- /dev/null
+++ b/a11y/playwright/axe-setup.js
@@ -0,0 +1,17 @@
+// @ts-check
+/**
+ * Global setup: record test run start time for use in teardown.
+ */
+const fs = require('fs');
+const path = require('path');
+
+const testResultsDir = path.join(__dirname, 'test-results');
+
+module.exports = async function globalSetup() {
+ fs.mkdirSync(testResultsDir, { recursive: true });
+ fs.writeFileSync(
+ path.join(testResultsDir, 'run-start.txt'),
+ new Date().toISOString().slice(0, 16),
+ 'utf8'
+ );
+};
diff --git a/a11y/playwright/markdown-report.js b/a11y/playwright/markdown-report.js
new file mode 100644
index 0000000..a327cdd
--- /dev/null
+++ b/a11y/playwright/markdown-report.js
@@ -0,0 +1,299 @@
+// @ts-check
+/**
+ * Build a markdown accessibility report from merged axe results.
+ */
+
+/** 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 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(``, `### ${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, ''];
+}
+
+/**
+ * Assemble and return the full markdown report string.
+ * @param {Array<{url: string, violations: any[]}>} allResults
+ * @param {Array<{url: string, violations: any[]}>} allViolationsByUrl
+ * @param {any[]} rulesRun
+ * @returns {string}
+ */
+function buildMarkdownReport(allResults, allViolationsByUrl, 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 } = 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: byRuleRefs, refMap, refCount, ruleIdToTags } = buildSummaryRefs(allViolationsByUrl);
+ summary += '\n---\n\n## Details by URL\n\n';
+ summary += formatSummaryReference(byRuleRefs, 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';
+ }
+
+ return summary;
+}
+
+module.exports = { buildMarkdownReport };
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..54edf6d
--- /dev/null
+++ b/a11y/playwright/playwright.config.js
@@ -0,0 +1,79 @@
+// @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'],
+ globalSetup: './axe-setup.js',
+ globalTeardown: './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'] },
+ },
+
+ /* Mobile phone viewports */
+ {
+ name: 'mobile-chrome',
+ use: { ...devices['Pixel 7'] },
+ },
+
+ {
+ name: 'mobile-safari',
+ use: { ...devices['iPhone 15 Pro'] },
+ },
+
+ /* Tablet viewports */
+ {
+ name: 'tablet-chrome',
+ use: { ...devices['Galaxy Tab S4'] },
+ },
+
+ {
+ name: 'tablet-safari',
+ use: { ...devices['iPad Pro 11'] },
+ },
+ ],
+});
+
diff --git a/a11y/playwright/teardown.js b/a11y/playwright/teardown.js
new file mode 100644
index 0000000..4efec71
--- /dev/null
+++ b/a11y/playwright/teardown.js
@@ -0,0 +1,13 @@
+// @ts-check
+/**
+ * Global teardown dispatcher.
+ * Routes to the appropriate teardown based on which test was run:
+ * - A11Y_RULE set → axe-detail-teardown (single rule, full node detail)
+ * - otherwise → axe-general-teardown (all rules, counts per URL per browser)
+ */
+module.exports = async function globalTeardown() {
+ if (process.env.A11Y_RULE) {
+ return require('./axe-detail-teardown')();
+ }
+ return require('./axe-general-teardown')();
+};
diff --git a/a11y/playwright/tests/axe-detail.test.js b/a11y/playwright/tests/axe-detail.test.js
new file mode 100644
index 0000000..1101de5
--- /dev/null
+++ b/a11y/playwright/tests/axe-detail.test.js
@@ -0,0 +1,40 @@
+// @ts-check
+const { test } = require('@playwright/test');
+const AxeBuilder = require('@axe-core/playwright').default;
+const fs = require('fs');
+const path = require('path');
+
+const url = process.env.A11Y_URL;
+const ruleId = process.env.A11Y_RULE;
+
+if (!url || !ruleId) {
+ throw new Error('A11Y_URL and A11Y_RULE must both be set to run axe-detail tests.\nExample: A11Y_URL=http://localhost:8000/ A11Y_RULE=color-contrast npx playwright test axe-detail');
+}
+
+const rawDir = path.join(__dirname, '..', 'test-results', 'raw');
+
+test(`axe detail: ${ruleId} on ${url}`, async ({ page }, testInfo) => {
+ test.setTimeout(90000);
+
+ await page.goto(url, { waitUntil: 'load' });
+
+ const results = await new AxeBuilder({ page })
+ .withRules([ruleId])
+ .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 || [] });
+ }
+ }
+
+ const browser = testInfo.project.name;
+ const resultFile = path.join(rawDir, `axe-${browser}-0.json`);
+ fs.mkdirSync(rawDir, { recursive: true });
+ fs.writeFileSync(resultFile, JSON.stringify({ url, violations, rulesRun, browser }), 'utf8');
+});
diff --git a/a11y/playwright/tests/axe-general.test.js b/a11y/playwright/tests/axe-general.test.js
new file mode 100644
index 0000000..45886ca
--- /dev/null
+++ b/a11y/playwright/tests/axe-general.test.js
@@ -0,0 +1,62 @@
+// @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 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 urls = getUrls();
+const rawDir = path.join(__dirname, '..', 'test-results', '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: 'load' });
+
+ const results = await new AxeBuilder({ page })
+ .withTags(['wcag2a', 'wcag2aa', 'wcag21a', 'wcag21aa', 'wcag22aa', 'best-practice', 'EN-301-549', 'ACT'])
+ .options({ resultTypes: ['violations'] })
+ .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 browser = testInfo.project.name;
+ const resultFile = path.join(rawDir, `axe-${browser}-${index}.json`);
+ fs.mkdirSync(rawDir, { recursive: true });
+ fs.writeFileSync(resultFile, JSON.stringify({ url, violations, rulesRun, browser }), 'utf8');
+ });
+}
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
From 21e562811a4a3b9405d360b49d38bb114c981164 Mon Sep 17 00:00:00 2001
From: StephDriver <5330770+StephDriver@users.noreply.github.com>
Date: Tue, 24 Mar 2026 14:34:01 +0000
Subject: [PATCH 4/7] a11y: #2 test axe front of house a11y-audit-1.9 tag
---
a11y/results/json/axe-front-of-house.json | 94064 ++++++++++++++++++
a11y/results/markdown/axe-front-of-house.md | 991 +
2 files changed, 95055 insertions(+)
create mode 100644 a11y/results/json/axe-front-of-house.json
create mode 100644 a11y/results/markdown/axe-front-of-house.md
diff --git a/a11y/results/json/axe-front-of-house.json b/a11y/results/json/axe-front-of-house.json
new file mode 100644
index 0000000..e32098a
--- /dev/null
+++ b/a11y/results/json/axe-front-of-house.json
@@ -0,0 +1,94064 @@
+[
+ {
+ "id": "aria-allowed-attr",
+ "help": "Elements must only use supported ARIA attributes",
+ "tags": [
+ "EN-301-549",
+ "EN-9.4.1.2",
+ "RGAA-7.1.1",
+ "RGAAv4",
+ "cat.aria",
+ "wcag2a",
+ "wcag412"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=clean ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "aria-allowed-role",
+ "help": "ARIA role should be appropriate for the element",
+ "tags": [
+ "best-practice",
+ "cat.aria"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "aria-command-name",
+ "help": "ARIA commands must have an accessible name",
+ "tags": [
+ "ACT",
+ "EN-301-549",
+ "EN-9.4.1.2",
+ "RGAA-11.9.1",
+ "RGAAv4",
+ "TT6.a",
+ "TTv5",
+ "cat.aria",
+ "wcag2a",
+ "wcag412"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "aria-conditional-attr",
+ "help": "ARIA attributes must be used as specified for the element's role",
+ "tags": [
+ "EN-301-549",
+ "EN-9.4.1.2",
+ "RGAA-7.1.1",
+ "RGAAv4",
+ "cat.aria",
+ "wcag2a",
+ "wcag412"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=clean ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "aria-deprecated-role",
+ "help": "Deprecated ARIA roles must not be used",
+ "tags": [
+ "EN-301-549",
+ "EN-9.4.1.2",
+ "RGAA-7.1.1",
+ "RGAAv4",
+ "cat.aria",
+ "wcag2a",
+ "wcag412"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "aria-hidden-body",
+ "help": "aria-hidden=\"true\" must not be present on the document body",
+ "tags": [
+ "EN-301-549",
+ "EN-9.1.3.1",
+ "EN-9.4.1.2",
+ "RGAA-10.8.1",
+ "RGAAv4",
+ "cat.aria",
+ "wcag131",
+ "wcag2a",
+ "wcag412"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=clean ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "aria-hidden-focus",
+ "help": "ARIA hidden element must not be focusable or contain focusable elements",
+ "tags": [
+ "EN-301-549",
+ "EN-9.4.1.2",
+ "RGAA-10.8.1",
+ "RGAAv4",
+ "TT6.a",
+ "TTv5",
+ "cat.name-role-value",
+ "wcag2a",
+ "wcag412"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "aria-prohibited-attr",
+ "help": "Elements must only use permitted ARIA attributes",
+ "tags": [
+ "EN-301-549",
+ "EN-9.4.1.2",
+ "RGAA-7.1.1",
+ "RGAAv4",
+ "cat.aria",
+ "wcag2a",
+ "wcag412"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=clean ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "aria-required-attr",
+ "help": "Required ARIA attributes must be provided",
+ "tags": [
+ "EN-301-549",
+ "EN-9.4.1.2",
+ "RGAA-7.1.1",
+ "RGAAv4",
+ "cat.aria",
+ "wcag2a",
+ "wcag412"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "aria-required-children",
+ "help": "Certain ARIA roles must contain particular children",
+ "tags": [
+ "EN-301-549",
+ "EN-9.1.3.1",
+ "RGAA-9.3.1",
+ "RGAAv4",
+ "cat.aria",
+ "wcag131",
+ "wcag2a"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 1
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 1
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 1
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 1
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "aria-required-parent",
+ "help": "Certain ARIA roles must be contained by particular parents",
+ "tags": [
+ "EN-301-549",
+ "EN-9.1.3.1",
+ "RGAA-9.3.1",
+ "RGAAv4",
+ "cat.aria",
+ "wcag131",
+ "wcag2a"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 1
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 1
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 1
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 1
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "aria-roles",
+ "help": "ARIA roles used must conform to valid values",
+ "tags": [
+ "EN-301-549",
+ "EN-9.4.1.2",
+ "RGAA-7.1.1",
+ "RGAAv4",
+ "cat.aria",
+ "wcag2a",
+ "wcag412"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "aria-valid-attr",
+ "help": "ARIA attributes must conform to valid names",
+ "tags": [
+ "EN-301-549",
+ "EN-9.4.1.2",
+ "RGAA-7.1.1",
+ "RGAAv4",
+ "cat.aria",
+ "wcag2a",
+ "wcag412"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=clean ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "aria-valid-attr-value",
+ "help": "ARIA attributes must conform to valid values",
+ "tags": [
+ "EN-301-549",
+ "EN-9.4.1.2",
+ "RGAA-7.1.1",
+ "RGAAv4",
+ "cat.aria",
+ "wcag2a",
+ "wcag412"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=clean ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "autocomplete-valid",
+ "help": "autocomplete attribute must be used correctly",
+ "tags": [
+ "ACT",
+ "EN-301-549",
+ "EN-9.1.3.5",
+ "RGAA-11.13.1",
+ "RGAAv4",
+ "cat.forms",
+ "wcag135",
+ "wcag21aa"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "avoid-inline-spacing",
+ "help": "Inline text spacing must be adjustable with custom stylesheets",
+ "tags": [
+ "ACT",
+ "EN-301-549",
+ "EN-9.1.4.12",
+ "cat.structure",
+ "wcag1412",
+ "wcag21aa"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "button-name",
+ "help": "Buttons must have discernible text",
+ "tags": [
+ "ACT",
+ "EN-301-549",
+ "EN-9.4.1.2",
+ "RGAA-11.9.1",
+ "RGAAv4",
+ "TT6.a",
+ "TTv5",
+ "cat.name-role-value",
+ "section508",
+ "section508.22.a",
+ "wcag2a",
+ "wcag412"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=clean ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "bypass",
+ "help": "Page must have means to bypass repeated blocks",
+ "tags": [
+ "EN-301-549",
+ "EN-9.2.4.1",
+ "RGAA-12.7.1",
+ "RGAAv4",
+ "TT9.a",
+ "TTv5",
+ "cat.keyboard",
+ "section508",
+ "section508.22.o",
+ "wcag241",
+ "wcag2a"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=clean ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "color-contrast",
+ "help": "Elements must meet minimum color contrast ratio thresholds",
+ "tags": [
+ "ACT",
+ "EN-301-549",
+ "EN-9.1.4.3",
+ "RGAA-3.2.1",
+ "RGAAv4",
+ "TT13.c",
+ "TTv5",
+ "cat.color",
+ "wcag143",
+ "wcag2aa"
+ ],
+ "urls": [
+ {
+ "url": "http://localhost:8000/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/404/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/contact/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/journals/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 10
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 10
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 8
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 8
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 10
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 10
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 10
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/accessibility/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 147
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 147
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 153
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 153
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 145
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 146
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 147
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4403/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 158
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 157
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 152
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 152
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 158
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 160
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 160
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 278
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 278
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 282
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 282
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 277
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 278
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 278
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/article/id/4405/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 292
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 292
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 273
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 273
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 292
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 292
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 292
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 68
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 68
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 68
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 68
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 68
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 68
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 68
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/articles/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 4
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 4
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 1
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 1
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 4
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 48
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 48
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 50
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 48
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 40
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 51
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 48
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 53
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 53
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 53
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 53
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 52
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 53
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 53
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/collections/846/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 52
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 52
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 50
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 50
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 52
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 52
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 52
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=clean ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=material ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 9
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/contact/?theme=olh ",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 18
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 18
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 18
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 18
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 18
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 18
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 18
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/editorialteam/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 17
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 17
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 17
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 17
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/402/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 19
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 19
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 21
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 21
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issue/409/info/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 19
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 19
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 21
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 21
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 22
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/issues/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 14
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 14
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 14
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 14
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 14
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 7
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 7
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 7
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 7
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 7
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 7
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 7
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/news/429/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 1
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 1
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 3
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 6
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 6
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 6
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 6
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 6
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 6
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 6
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 12
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/search/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 4
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 4
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 2
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 4
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 4
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 4
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 13
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 13
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 13
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 13
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 13
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 13
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 13
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/about/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 10
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 10
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/author-guidelines/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 13
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 13
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 15
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 28
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 28
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 28
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 28
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 28
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 28
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 28
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 53
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 53
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 25
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 25
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 54
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 54
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 53
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=clean",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 0
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=material",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 17
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 17
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 17
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 17
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 17
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 17
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 17
+ }
+ }
+ },
+ {
+ "url": "http://localhost:8000/olh/submissions/?theme=olh",
+ "browsers": {
+ "chromium": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "firefox": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "mobile-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 14
+ },
+ "mobile-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 14
+ },
+ "tablet-chrome": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "tablet-safari": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ },
+ "webkit": {
+ "test_date": "a11y-audit-1.9",
+ "violations": 16
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": "definition-list",
+ "help": " elements must only directly contain properly-ordered - and
- groups,