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<ruleId, { id, help, tags }> + const ruleUrlBrowsers = new Map(); // Map<ruleId, Map<url, Map<browser, test_date>>> + const ruleUrlNodes = new Map(); // Map<ruleId, Map<url, Map<normalisedTarget, { nodeData, occurrences }>>> + + 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<string, {test_date: string, violations: number}>}>}>} 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<string, Map<string, number>>} */ + 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<string, Map<string, Record<string, {violations: number}>>>} */ + 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(`<span id="${urlAnchor(short)}"></span>`, `## ${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 <path/to/results.json> + * 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<ruleId, { id, help, tags }> + const ruleUrlBrowsers = new Map(); // Map<ruleId, Map<url, Map<browser, test_date>>> + const ruleUrlViolations = new Map(); // Map<ruleId, Map<url, Map<browser, count>>> + + 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(`<span id="${anchorId}"></span>`, `### ${headingWithCount}`, ''); + if (wcagCriteria.length > 0 && i === 0) { + lines.push('**Related WCAG criteria:**', '', wcagCriteria.map((c) => `- ${c}`).join('\n'), ''); + } + lines.push(display, ''); + } + } + return lines.join('\n'); +} + +/** Escape pipe and newline for markdown table cell content. */ +function tableCell(s) { + return String(s).replace(/\|/g, '\\|').replace(/\n/g, ' ').trim(); +} + +/** Build one table for all violations across all URLs; first column is Page (link to URL). */ +function formatResultsTable(allViolationsByUrl, refMap, urlRoot) { + const rows = []; + for (const { url, violations } of allViolationsByUrl) { + const pageHeading = shortUrlHeading(urlRoot, url); + const pageLink = `[${pageHeading}](${url})`; + for (const v of violations) { + const ruleLink = `[${v.id}](${v.helpUrl})`; + const impact = v.impact || ''; + for (const node of v.nodes || []) { + const selector = Array.isArray(node.target) ? node.target.join(' ') : node.target; + const key = normalizeFailureSummaryForMarkdown(node.failureSummary); + const ref = refMap.get(`${v.id}|${key}`); + const refLink = ref ? `[${ref.label}](#${ref.anchorId})` : '(see reference)'; + const htmlSnippet = node.html ? node.html.replace(/\s+/g, ' ').trim().slice(0, 200) + (node.html.length > 200 ? '…' : '') : ''; + rows.push([pageLink, ruleLink, impact, tableCell(selector), tableCell(htmlSnippet), refLink]); + } + } + } + if (rows.length === 0) return []; + const tableHeader = '| Page | Rule | Impact | Selector | HTML | Issue ref |'; + const tableSep = '| --- | --- | --- | --- | --- | --- |'; + const tableRows = rows.map((r) => `| ${r[0]} | ${r[1]} | ${r[2]} | \`${r[3]}\` | \`${r[4]}\` | ${r[5]} |`); + return [tableHeader, tableSep, ...tableRows, '']; +} + +/** + * 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": "<dl> elements must only directly contain properly-ordered <dt> and <dd> groups, <script>, <template> or <div> elements", + "tags": [ + "EN-301-549", + "EN-9.1.3.1", + "RGAA-9.3.3", + "RGAAv4", + "cat.structure", + "wcag131", + "wcag2a" + ], + "urls": [ + { + "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 + } + } + } + ] + }, + { + "id": "dlitem", + "help": "<dt> and <dd> elements must be contained by a <dl>", + "tags": [ + "EN-301-549", + "EN-9.1.3.1", + "RGAA-9.3.3", + "RGAAv4", + "cat.structure", + "wcag131", + "wcag2a" + ], + "urls": [ + { + "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 + } + } + } + ] + }, + { + "id": "document-title", + "help": "Documents must have <title> element to aid in navigation", + "tags": [ + "ACT", + "EN-301-549", + "EN-9.2.4.2", + "RGAA-8.5.1", + "RGAAv4", + "TT12.a", + "TTv5", + "cat.text-alternatives", + "wcag242", + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": "duplicate-id-aria", + "help": "IDs used in ARIA and labels must be unique", + "tags": [ + "EN-301-549", + "EN-9.4.1.2", + "RGAA-8.2.1", + "RGAAv4", + "cat.parsing", + "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/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/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": "empty-heading", + "help": "Headings should not be empty", + "tags": [ + "best-practice", + "cat.name-role-value" + ], + "urls": [ + { + "url": "http://localhost:8000/?theme=clean", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/?theme=olh", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": "empty-table-header", + "help": "Table header text should not be empty", + "tags": [ + "best-practice", + "cat.name-role-value" + ], + "urls": [ + { + "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=clean", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "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/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": "form-field-multiple-labels", + "help": "Form field must not have multiple label elements", + "tags": [ + "EN-301-549", + "EN-9.3.3.2", + "RGAA-11.2.1", + "RGAAv4", + "TT5.c", + "TTv5", + "cat.forms", + "wcag2a", + "wcag332" + ], + "urls": [ + { + "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 + }, + "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 + }, + "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 + }, + "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=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "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=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "webkit": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + } + ] + }, + { + "id": "heading-order", + "help": "Heading levels should only increase by one", + "tags": [ + "best-practice", + "cat.semantics" + ], + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/?theme=olh", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": "html-has-lang", + "help": "<html> element must have a lang attribute", + "tags": [ + "ACT", + "EN-301-549", + "EN-9.3.1.1", + "RGAA-8.3.1", + "RGAAv4", + "TT11.a", + "TTv5", + "cat.language", + "wcag2a", + "wcag311" + ], + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": "html-lang-valid", + "help": "<html> element must have a valid value for the lang attribute", + "tags": [ + "ACT", + "EN-301-549", + "EN-9.3.1.1", + "RGAA-8.4.1", + "RGAAv4", + "TT11.a", + "TTv5", + "cat.language", + "wcag2a", + "wcag311" + ], + "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/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/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/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/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": "image-alt", + "help": "Images must have alternative text", + "tags": [ + "ACT", + "EN-301-549", + "EN-9.1.1.1", + "RGAA-1.1.1", + "RGAAv4", + "TT7.a", + "TT7.b", + "TTv5", + "cat.text-alternatives", + "section508", + "section508.22.a", + "wcag111", + "wcag2a" + ], + "urls": [ + { + "url": "http://localhost:8000/?theme=clean", + "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/?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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": "image-redundant-alt", + "help": "Alternative text of images should not be repeated as text", + "tags": [ + "best-practice", + "cat.text-alternatives" + ], + "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": "input-button-name", + "help": "Input buttons must have discernible text", + "tags": [ + "ACT", + "EN-301-549", + "EN-9.4.1.2", + "RGAA-11.9.1", + "RGAAv4", + "TT5.c", + "TTv5", + "cat.name-role-value", + "section508", + "section508.22.a", + "wcag2a", + "wcag412" + ], + "urls": [ + { + "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 + } + } + } + ] + }, + { + "id": "label", + "help": "Form elements must have labels", + "tags": [ + "ACT", + "EN-301-549", + "EN-9.4.1.2", + "RGAA-11.1.1", + "RGAAv4", + "TT5.c", + "TTv5", + "cat.forms", + "section508", + "section508.22.n", + "wcag2a", + "wcag412" + ], + "urls": [ + { + "url": "http://localhost:8000/contact/?theme=clean", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/contact/?theme=olh", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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 + }, + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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 + }, + "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 + }, + "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 + }, + "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": 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/contact/?theme=olh ", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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=olh", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "firefox": { + "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 + }, + "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 + }, + "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 + }, + "webkit": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + } + ] + }, + { + "id": "label-title-only", + "help": "Form elements should have a visible label", + "tags": [ + "best-practice", + "cat.forms" + ], + "urls": [ + { + "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 + }, + "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 + }, + "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 + }, + "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=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "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=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "webkit": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + } + ] + }, + { + "id": "landmark-banner-is-top-level", + "help": "Banner landmark should not be contained in another landmark", + "tags": [ + "best-practice", + "cat.semantics" + ], + "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": "landmark-complementary-is-top-level", + "help": "Aside should not be contained in another landmark", + "tags": [ + "best-practice", + "cat.semantics" + ], + "urls": [ + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/articles/?theme=olh", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=olh", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "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": 1 + } + } + } + ] + }, + { + "id": "landmark-contentinfo-is-top-level", + "help": "Contentinfo landmark should not be contained in another landmark", + "tags": [ + "best-practice", + "cat.semantics" + ], + "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": "landmark-main-is-top-level", + "help": "Main landmark should not be contained in another landmark", + "tags": [ + "best-practice", + "cat.semantics" + ], + "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": "landmark-no-duplicate-banner", + "help": "Document should not have more than one banner landmark", + "tags": [ + "best-practice", + "cat.semantics" + ], + "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": "landmark-no-duplicate-contentinfo", + "help": "Document should not have more than one contentinfo landmark", + "tags": [ + "best-practice", + "cat.semantics" + ], + "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": "landmark-no-duplicate-main", + "help": "Document should not have more than one main landmark", + "tags": [ + "best-practice", + "cat.semantics" + ], + "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": "landmark-one-main", + "help": "Document should have one main landmark", + "tags": [ + "best-practice", + "cat.semantics" + ], + "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": "landmark-unique", + "help": "Landmarks should have a unique role or role/label/title (i.e. accessible name) combination", + "tags": [ + "best-practice", + "cat.semantics" + ], + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": "link-in-text-block", + "help": "Links must be distinguishable without relying on color", + "tags": [ + "EN-301-549", + "EN-9.1.4.1", + "RGAA-10.6.1", + "RGAAv4", + "TT13.a", + "TTv5", + "cat.color", + "wcag141", + "wcag2a" + ], + "urls": [ + { + "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=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/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 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "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/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": "link-name", + "help": "Links must have discernible text", + "tags": [ + "ACT", + "EN-301-549", + "EN-9.2.4.4", + "EN-9.4.1.2", + "RGAA-6.2.1", + "RGAAv4", + "TT6.a", + "TTv5", + "cat.name-role-value", + "section508", + "section508.22.a", + "wcag244", + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": "list", + "help": "<ul> and <ol> must only directly contain <li>, <script> or <template> elements", + "tags": [ + "EN-301-549", + "EN-9.1.3.1", + "RGAA-9.3.1", + "RGAAv4", + "cat.structure", + "wcag131", + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + }, + "webkit": { + "test_date": "a11y-audit-1.9", + "violations": 1 + } + } + }, + { + "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": 1 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "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": 2 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 2 + }, + "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": 2 + }, + "webkit": { + "test_date": "a11y-audit-1.9", + "violations": 2 + } + } + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "webkit": { + "test_date": "a11y-audit-1.9", + "violations": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=olh", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/articles/?theme=clean", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 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/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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=clean", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": "listitem", + "help": "<li> elements must be contained in a <ul> or <ol>", + "tags": [ + "EN-301-549", + "EN-9.1.3.1", + "RGAA-9.3.1", + "RGAAv4", + "cat.structure", + "wcag131", + "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": 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=clean", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "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": "meta-viewport", + "help": "Zooming and scaling must not be disabled", + "tags": [ + "ACT", + "EN-301-549", + "EN-9.1.4.4", + "RGAA-10.4.2", + "RGAAv4", + "cat.sensory-and-visual-cues", + "wcag144", + "wcag2aa" + ], + "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": "meta-viewport-large", + "help": "Users should be able to zoom and scale the text up to 500%", + "tags": [ + "best-practice", + "cat.sensory-and-visual-cues" + ], + "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": "nested-interactive", + "help": "Interactive controls must not be nested", + "tags": [ + "EN-301-549", + "EN-9.4.1.2", + "RGAA-7.1.1", + "RGAAv4", + "TT6.a", + "TTv5", + "cat.keyboard", + "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": "page-has-heading-one", + "help": "Page should contain a level-one heading", + "tags": [ + "best-practice", + "cat.semantics" + ], + "urls": [ + { + "url": "http://localhost:8000/?theme=clean", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/?theme=olh", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": "presentation-role-conflict", + "help": "Elements marked as presentational should be consistently ignored", + "tags": [ + "ACT", + "best-practice", + "cat.aria" + ], + "urls": [ + { + "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": "region", + "help": "All page content should be contained by landmarks", + "tags": [ + "RGAA-9.2.1", + "RGAAv4", + "best-practice", + "cat.keyboard" + ], + "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": "scope-attr-valid", + "help": "scope attribute should be used correctly", + "tags": [ + "best-practice", + "cat.tables" + ], + "urls": [ + { + "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/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": "scrollable-region-focusable", + "help": "Scrollable region must have keyboard access", + "tags": [ + "EN-301-549", + "EN-9.2.1.1", + "EN-9.2.1.3", + "RGAA-7.3.2", + "RGAAv4", + "TT4.a", + "TTv5", + "cat.keyboard", + "wcag211", + "wcag213", + "wcag2a" + ], + "urls": [ + { + "url": "http://localhost:8000/olh/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/accessibility/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-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": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "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": 1 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "webkit": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "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 + }, + "webkit": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/articles/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/collections/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/contact/?theme=material ", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/editorialteam/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/search/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/site/about/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "browsers": { + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + } + } + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "browsers": { + "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 + } + } + } + ] + }, + { + "id": "select-name", + "help": "Select element must have an accessible name", + "tags": [ + "ACT", + "EN-301-549", + "EN-9.4.1.2", + "RGAA-11.1.1", + "RGAAv4", + "TT5.c", + "TTv5", + "cat.forms", + "section508", + "section508.22.n", + "wcag2a", + "wcag412" + ], + "urls": [ + { + "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/olh/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/accessibility/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/article/id/4403/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/article/id/4405/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/articles/?theme=clean", + "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/articles/?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/articles/?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/collections/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/collections/846/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 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/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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/issue/402/info/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/issue/409/info/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/issues/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/news/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/news/429/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "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": 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/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": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/site/journal-policies/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + }, + { + "url": "http://localhost:8000/olh/submissions/?theme=material", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 1 + }, + "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": 1 + } + } + } + ] + }, + { + "id": "skip-link", + "help": "The skip-link target should exist and be focusable", + "tags": [ + "RGAA-12.7.1", + "RGAAv4", + "best-practice", + "cat.keyboard" + ], + "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": "tabindex", + "help": "Elements should not have tabindex greater than zero", + "tags": [ + "best-practice", + "cat.keyboard" + ], + "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 + }, + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "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/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/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/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 + } + } + } + ] + }, + { + "id": "table-duplicate-name", + "help": "Tables should not have the same summary and caption", + "tags": [ + "RGAA-5.2.1", + "RGAAv4", + "best-practice", + "cat.tables" + ], + "urls": [ + { + "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=clean", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "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/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": "td-headers-attr", + "help": "Table cell headers attributes must refer to other <th> elements in the same table", + "tags": [ + "EN-301-549", + "EN-9.1.3.1", + "RGAA-5.7.4", + "RGAAv4", + "TT14.b", + "TTv5", + "cat.tables", + "section508", + "section508.22.g", + "wcag131", + "wcag2a" + ], + "urls": [ + { + "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=clean", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "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/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": "th-has-data-cells", + "help": "Table headers in a data table must refer to data cells", + "tags": [ + "EN-301-549", + "EN-9.1.3.1", + "RGAA-5.7.1", + "RGAAv4", + "TT14.b", + "TTv5", + "cat.tables", + "section508", + "section508.22.g", + "wcag131", + "wcag2a" + ], + "urls": [ + { + "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=clean", + "browsers": { + "chromium": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "firefox": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "mobile-safari": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "tablet-chrome": { + "test_date": "a11y-audit-1.9", + "violations": 0 + }, + "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/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": "valid-lang", + "help": "lang attribute must have a valid value", + "tags": [ + "ACT", + "EN-301-549", + "EN-9.3.1.2", + "RGAA-8.8.1", + "RGAAv4", + "TT11.b", + "TTv5", + "cat.language", + "wcag2aa", + "wcag312" + ], + "urls": [ + { + "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 + } + } + } + ] + } +] \ No newline at end of file diff --git a/a11y/results/markdown/axe-front-of-house.md b/a11y/results/markdown/axe-front-of-house.md new file mode 100644 index 0000000..9449436 --- /dev/null +++ b/a11y/results/markdown/axe-front-of-house.md @@ -0,0 +1,991 @@ +# Axe general accessibility report + +**Test date:** a11y-audit-1.9 + +| Rule | Description | Tags | Results | +| --- | --- | --- | --- | +| aria-allowed-attr | Elements must only use supported ARIA attributes | `EN-301-549`, `EN-9.4.1.2`, `RGAA-7.1.1`, `RGAAv4`, `cat.aria`, `wcag2a`, `wcag412` | :white_check_mark: | +| aria-allowed-role | ARIA role should be appropriate for the element | `best-practice`, `cat.aria` | :white_check_mark: | +| aria-command-name | ARIA commands must have an accessible name | `ACT`, `EN-301-549`, `EN-9.4.1.2`, `RGAA-11.9.1`, `RGAAv4`, `TT6.a`, `TTv5`, `cat.aria`, `wcag2a`, `wcag412` | :white_check_mark: | +| aria-conditional-attr | ARIA attributes must be used as specified for the element's role | `EN-301-549`, `EN-9.4.1.2`, `RGAA-7.1.1`, `RGAAv4`, `cat.aria`, `wcag2a`, `wcag412` | :white_check_mark: | +| aria-deprecated-role | Deprecated ARIA roles must not be used | `EN-301-549`, `EN-9.4.1.2`, `RGAA-7.1.1`, `RGAAv4`, `cat.aria`, `wcag2a`, `wcag412` | :white_check_mark: | +| aria-hidden-body | aria-hidden="true" must not be present on the document body | `EN-301-549`, `EN-9.1.3.1`, `EN-9.4.1.2`, `RGAA-10.8.1`, `RGAAv4`, `cat.aria`, `wcag131`, `wcag2a`, `wcag412` | :white_check_mark: | +| aria-hidden-focus | ARIA hidden element must not be focusable or contain focusable elements | `EN-301-549`, `EN-9.4.1.2`, `RGAA-10.8.1`, `RGAAv4`, `TT6.a`, `TTv5`, `cat.name-role-value`, `wcag2a`, `wcag412` | :white_check_mark: | +| aria-prohibited-attr | Elements must only use permitted ARIA attributes | `EN-301-549`, `EN-9.4.1.2`, `RGAA-7.1.1`, `RGAAv4`, `cat.aria`, `wcag2a`, `wcag412` | :white_check_mark: | +| aria-required-attr | Required ARIA attributes must be provided | `EN-301-549`, `EN-9.4.1.2`, `RGAA-7.1.1`, `RGAAv4`, `cat.aria`, `wcag2a`, `wcag412` | :white_check_mark: | +| aria-required-children | Certain ARIA roles must contain particular children | `EN-301-549`, `EN-9.1.3.1`, `RGAA-9.3.1`, `RGAAv4`, `cat.aria`, `wcag131`, `wcag2a` | [4](#aria-required-children) | +| aria-required-parent | Certain ARIA roles must be contained by particular parents | `EN-301-549`, `EN-9.1.3.1`, `RGAA-9.3.1`, `RGAAv4`, `cat.aria`, `wcag131`, `wcag2a` | [4](#aria-required-parent) | +| aria-roles | ARIA roles used must conform to valid values | `EN-301-549`, `EN-9.4.1.2`, `RGAA-7.1.1`, `RGAAv4`, `cat.aria`, `wcag2a`, `wcag412` | :white_check_mark: | +| aria-valid-attr | ARIA attributes must conform to valid names | `EN-301-549`, `EN-9.4.1.2`, `RGAA-7.1.1`, `RGAAv4`, `cat.aria`, `wcag2a`, `wcag412` | :white_check_mark: | +| aria-valid-attr-value | ARIA attributes must conform to valid values | `EN-301-549`, `EN-9.4.1.2`, `RGAA-7.1.1`, `RGAAv4`, `cat.aria`, `wcag2a`, `wcag412` | :white_check_mark: | +| autocomplete-valid | autocomplete attribute must be used correctly | `ACT`, `EN-301-549`, `EN-9.1.3.5`, `RGAA-11.13.1`, `RGAAv4`, `cat.forms`, `wcag135`, `wcag21aa` | :white_check_mark: | +| avoid-inline-spacing | Inline text spacing must be adjustable with custom stylesheets | `ACT`, `EN-301-549`, `EN-9.1.4.12`, `cat.structure`, `wcag1412`, `wcag21aa` | :white_check_mark: | +| button-name | Buttons must have discernible text | `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` | :white_check_mark: | +| bypass | Page must have means to bypass repeated blocks | `EN-301-549`, `EN-9.2.4.1`, `RGAA-12.7.1`, `RGAAv4`, `TT9.a`, `TTv5`, `cat.keyboard`, `section508`, `section508.22.o`, `wcag241`, `wcag2a` | :white_check_mark: | +| color-contrast | Elements must meet minimum color contrast ratio thresholds | `ACT`, `EN-301-549`, `EN-9.1.4.3`, `RGAA-3.2.1`, `RGAAv4`, `TT13.c`, `TTv5`, `cat.color`, `wcag143`, `wcag2aa` | [10562](#color-contrast) | +| definition-list | `<dl>` elements must only directly contain properly-ordered `<dt>` and `<dd>` groups, `<script>`, `<template>` or `<div>` elements | `EN-301-549`, `EN-9.1.3.1`, `RGAA-9.3.3`, `RGAAv4`, `cat.structure`, `wcag131`, `wcag2a` | :white_check_mark: | +| dlitem | `<dt>` and `<dd>` elements must be contained by a `<dl>` | `EN-301-549`, `EN-9.1.3.1`, `RGAA-9.3.3`, `RGAAv4`, `cat.structure`, `wcag131`, `wcag2a` | :white_check_mark: | +| document-title | Documents must have `<title>` element to aid in navigation | `ACT`, `EN-301-549`, `EN-9.2.4.2`, `RGAA-8.5.1`, `RGAAv4`, `TT12.a`, `TTv5`, `cat.text-alternatives`, `wcag242`, `wcag2a` | [7](#document-title) | +| duplicate-id-aria | IDs used in ARIA and labels must be unique | `EN-301-549`, `EN-9.4.1.2`, `RGAA-8.2.1`, `RGAAv4`, `cat.parsing`, `wcag2a`, `wcag412` | :white_check_mark: | +| empty-heading | Headings should not be empty | `best-practice`, `cat.name-role-value` | [14](#empty-heading) | +| empty-table-header | Table header text should not be empty | `best-practice`, `cat.name-role-value` | :white_check_mark: | +| form-field-multiple-labels | Form field must not have multiple label elements | `EN-301-549`, `EN-9.3.3.2`, `RGAA-11.2.1`, `RGAAv4`, `TT5.c`, `TTv5`, `cat.forms`, `wcag2a`, `wcag332` | :white_check_mark: | +| heading-order | Heading levels should only increase by one | `best-practice`, `cat.semantics` | [35](#heading-order) | +| html-has-lang | `<html>` element must have a lang attribute | `ACT`, `EN-301-549`, `EN-9.3.1.1`, `RGAA-8.3.1`, `RGAAv4`, `TT11.a`, `TTv5`, `cat.language`, `wcag2a`, `wcag311` | [28](#html-has-lang) | +| html-lang-valid | `<html>` element must have a valid value for the lang attribute | `ACT`, `EN-301-549`, `EN-9.3.1.1`, `RGAA-8.4.1`, `RGAAv4`, `TT11.a`, `TTv5`, `cat.language`, `wcag2a`, `wcag311` | :white_check_mark: | +| image-alt | Images must have alternative text | `ACT`, `EN-301-549`, `EN-9.1.1.1`, `RGAA-1.1.1`, `RGAAv4`, `TT7.a`, `TT7.b`, `TTv5`, `cat.text-alternatives`, `section508`, `section508.22.a`, `wcag111`, `wcag2a` | [175](#image-alt) | +| image-redundant-alt | Alternative text of images should not be repeated as text | `best-practice`, `cat.text-alternatives` | :white_check_mark: | +| input-button-name | Input buttons must have discernible text | `ACT`, `EN-301-549`, `EN-9.4.1.2`, `RGAA-11.9.1`, `RGAAv4`, `TT5.c`, `TTv5`, `cat.name-role-value`, `section508`, `section508.22.a`, `wcag2a`, `wcag412` | :white_check_mark: | +| label | Form elements must have labels | `ACT`, `EN-301-549`, `EN-9.4.1.2`, `RGAA-11.1.1`, `RGAAv4`, `TT5.c`, `TTv5`, `cat.forms`, `section508`, `section508.22.n`, `wcag2a`, `wcag412` | [56](#label) | +| label-title-only | Form elements should have a visible label | `best-practice`, `cat.forms` | :white_check_mark: | +| landmark-banner-is-top-level | Banner landmark should not be contained in another landmark | `best-practice`, `cat.semantics` | :white_check_mark: | +| landmark-complementary-is-top-level | Aside should not be contained in another landmark | `best-practice`, `cat.semantics` | [45](#landmark-complementary-is-top-level) | +| landmark-contentinfo-is-top-level | Contentinfo landmark should not be contained in another landmark | `best-practice`, `cat.semantics` | :white_check_mark: | +| landmark-main-is-top-level | Main landmark should not be contained in another landmark | `best-practice`, `cat.semantics` | :white_check_mark: | +| landmark-no-duplicate-banner | Document should not have more than one banner landmark | `best-practice`, `cat.semantics` | :white_check_mark: | +| landmark-no-duplicate-contentinfo | Document should not have more than one contentinfo landmark | `best-practice`, `cat.semantics` | :white_check_mark: | +| landmark-no-duplicate-main | Document should not have more than one main landmark | `best-practice`, `cat.semantics` | :white_check_mark: | +| landmark-one-main | Document should have one main landmark | `best-practice`, `cat.semantics` | :white_check_mark: | +| landmark-unique | Landmarks should have a unique role or role/label/title (i.e. accessible name) combination | `best-practice`, `cat.semantics` | [21](#landmark-unique) | +| link-in-text-block | Links must be distinguishable without relying on color | `EN-301-549`, `EN-9.1.4.1`, `RGAA-10.6.1`, `RGAAv4`, `TT13.a`, `TTv5`, `cat.color`, `wcag141`, `wcag2a` | :white_check_mark: | +| link-name | Links must have discernible text | `ACT`, `EN-301-549`, `EN-9.2.4.4`, `EN-9.4.1.2`, `RGAA-6.2.1`, `RGAAv4`, `TT6.a`, `TTv5`, `cat.name-role-value`, `section508`, `section508.22.a`, `wcag244`, `wcag2a`, `wcag412` | [133](#link-name) | +| list | `<ul>` and `<ol>` must only directly contain `<li>`, `<script>` or `<template>` elements | `EN-301-549`, `EN-9.1.3.1`, `RGAA-9.3.1`, `RGAAv4`, `cat.structure`, `wcag131`, `wcag2a` | [206](#list) | +| listitem | `<li>` elements must be contained in a `<ul>` or `<ol>` | `EN-301-549`, `EN-9.1.3.1`, `RGAA-9.3.1`, `RGAAv4`, `cat.structure`, `wcag131`, `wcag2a` | [4](#listitem) | +| meta-viewport | Zooming and scaling must not be disabled | `ACT`, `EN-301-549`, `EN-9.1.4.4`, `RGAA-10.4.2`, `RGAAv4`, `cat.sensory-and-visual-cues`, `wcag144`, `wcag2aa` | :white_check_mark: | +| meta-viewport-large | Users should be able to zoom and scale the text up to 500% | `best-practice`, `cat.sensory-and-visual-cues` | :white_check_mark: | +| nested-interactive | Interactive controls must not be nested | `EN-301-549`, `EN-9.4.1.2`, `RGAA-7.1.1`, `RGAAv4`, `TT6.a`, `TTv5`, `cat.keyboard`, `wcag2a`, `wcag412` | :white_check_mark: | +| page-has-heading-one | Page should contain a level-one heading | `best-practice`, `cat.semantics` | [14](#page-has-heading-one) | +| presentation-role-conflict | Elements marked as presentational should be consistently ignored | `ACT`, `best-practice`, `cat.aria` | :white_check_mark: | +| region | All page content should be contained by landmarks | `RGAA-9.2.1`, `RGAAv4`, `best-practice`, `cat.keyboard` | :white_check_mark: | +| scope-attr-valid | scope attribute should be used correctly | `best-practice`, `cat.tables` | :white_check_mark: | +| scrollable-region-focusable | Scrollable region must have keyboard access | `EN-301-549`, `EN-9.2.1.1`, `EN-9.2.1.3`, `RGAA-7.3.2`, `RGAAv4`, `TT4.a`, `TTv5`, `cat.keyboard`, `wcag211`, `wcag213`, `wcag2a` | [8](#scrollable-region-focusable) | +| select-name | Select element must have an accessible name | `ACT`, `EN-301-549`, `EN-9.4.1.2`, `RGAA-11.1.1`, `RGAAv4`, `TT5.c`, `TTv5`, `cat.forms`, `section508`, `section508.22.n`, `wcag2a`, `wcag412` | [189](#select-name) | +| skip-link | The skip-link target should exist and be focusable | `RGAA-12.7.1`, `RGAAv4`, `best-practice`, `cat.keyboard` | :white_check_mark: | +| tabindex | Elements should not have tabindex greater than zero | `best-practice`, `cat.keyboard` | :white_check_mark: | +| table-duplicate-name | Tables should not have the same summary and caption | `RGAA-5.2.1`, `RGAAv4`, `best-practice`, `cat.tables` | :white_check_mark: | +| td-headers-attr | Table cell headers attributes must refer to other `<th>` elements in the same table | `EN-301-549`, `EN-9.1.3.1`, `RGAA-5.7.4`, `RGAAv4`, `TT14.b`, `TTv5`, `cat.tables`, `section508`, `section508.22.g`, `wcag131`, `wcag2a` | :white_check_mark: | +| th-has-data-cells | Table headers in a data table must refer to data cells | `EN-301-549`, `EN-9.1.3.1`, `RGAA-5.7.1`, `RGAAv4`, `TT14.b`, `TTv5`, `cat.tables`, `section508`, `section508.22.g`, `wcag131`, `wcag2a` | :white_check_mark: | +| valid-lang | lang attribute must have a valid value | `ACT`, `EN-301-549`, `EN-9.3.1.2`, `RGAA-8.8.1`, `RGAAv4`, `TT11.b`, `TTv5`, `cat.language`, `wcag2aa`, `wcag312` | :white_check_mark: | + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | +| --- | --- | --- | --- | --- | --- | --- | --- | +| [404/?theme=clean](#url-404-theme-clean) | 4 | 4 | 4 | 4 | 4 | 4 | 4 | +| [404/?theme=olh](#url-404-theme-olh) | 4 | 4 | 4 | 4 | 4 | 4 | 4 | +| [?theme=clean](#url-theme-clean) | 27 | 27 | 27 | 27 | 27 | 27 | 27 | +| [?theme=olh](#url-theme-olh) | 6 | 6 | 6 | 6 | 6 | 6 | 6 | +| [contact/?theme=clean](#url-contact-theme-clean) | 5 | 5 | 5 | 5 | 5 | 5 | 5 | +| [contact/?theme=olh](#url-contact-theme-olh) | 4 | 4 | 4 | 4 | 4 | 4 | 4 | +| [journals/?theme=clean](#url-journals-theme-clean) | 4 | 4 | 4 | 4 | 4 | 4 | 4 | +| [journals/?theme=olh](#url-journals-theme-olh) | 3 | 3 | 3 | 3 | 3 | 3 | 3 | +| [olh/?theme=clean](#url-olh-theme-clean) | 3 | 3 | 3 | 3 | 3 | 3 | 3 | +| [olh/?theme=material](#url-olh-theme-material) | 15 | 15 | 15 | 15 | 15 | 15 | 15 | +| [olh/?theme=olh](#url-olh-theme-olh) | 13 | 13 | 11 | 11 | 13 | 13 | 13 | +| [olh/accessibility/?theme=clean](#url-olh-accessibility-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/accessibility/?theme=material](#url-olh-accessibility-theme-material) | 5 | 5 | 5 | 5 | 5 | 5 | 5 | +| [olh/accessibility/?theme=olh](#url-olh-accessibility-theme-olh) | 2 | 2 | :white_check_mark: | :white_check_mark: | 2 | 2 | 2 | +| [olh/article/id/4403/?theme=clean](#url-olh-article-id-4403-theme-clean) | 1 | 1 | 2 | 2 | 2 | 1 | 1 | +| [olh/article/id/4403/?theme=material](#url-olh-article-id-4403-theme-material) | 149 | 149 | 156 | 156 | 147 | 148 | 149 | +| [olh/article/id/4403/?theme=olh](#url-olh-article-id-4403-theme-olh) | 158 | 157 | 152 | 152 | 158 | 160 | 160 | +| [olh/article/id/4405/?theme=clean](#url-olh-article-id-4405-theme-clean) | 11 | 11 | 13 | 13 | 12 | 12 | 11 | +| [olh/article/id/4405/?theme=material](#url-olh-article-id-4405-theme-material) | 281 | 281 | 286 | 287 | 280 | 281 | 281 | +| [olh/article/id/4405/?theme=olh](#url-olh-article-id-4405-theme-olh) | 293 | 293 | 274 | 274 | 293 | 293 | 293 | +| [olh/articles/?theme=clean](#url-olh-articles-theme-clean) | 3 | 3 | 3 | 3 | 3 | 3 | 3 | +| [olh/articles/?theme=material](#url-olh-articles-theme-material) | 74 | 74 | 74 | 74 | 74 | 74 | 74 | +| [olh/articles/?theme=olh](#url-olh-articles-theme-olh) | 7 | 7 | 7 | 7 | 9 | 9 | 7 | +| [olh/collections/846/?theme=clean](#url-olh-collections-846-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/collections/846/?theme=material](#url-olh-collections-846-theme-material) | 56 | 56 | 56 | 56 | 55 | 56 | 56 | +| [olh/collections/846/?theme=olh](#url-olh-collections-846-theme-olh) | 54 | 54 | 52 | 52 | 54 | 54 | 54 | +| [olh/collections/?theme=clean](#url-olh-collections-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/collections/?theme=material](#url-olh-collections-theme-material) | 50 | 50 | 52 | 50 | 42 | 53 | 50 | +| [olh/collections/?theme=olh](#url-olh-collections-theme-olh) | 2 | 2 | :white_check_mark: | :white_check_mark: | 2 | 2 | 2 | +| [olh/contact/?theme=clean ](#url-olh-contact-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/contact/?theme=material ](#url-olh-contact-theme-material) | 14 | 14 | 14 | 14 | 14 | 14 | 14 | +| [olh/contact/?theme=olh ](#url-olh-contact-theme-olh) | 3 | 3 | 1 | 1 | 3 | 3 | 3 | +| [olh/editorialteam/?theme=clean](#url-olh-editorialteam-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/editorialteam/?theme=material](#url-olh-editorialteam-theme-material) | 20 | 20 | 20 | 20 | 20 | 20 | 20 | +| [olh/editorialteam/?theme=olh](#url-olh-editorialteam-theme-olh) | 17 | 17 | 15 | 15 | 15 | 17 | 17 | +| [olh/issue/402/info/?theme=clean](#url-olh-issue-402-info-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/issue/402/info/?theme=material](#url-olh-issue-402-info-theme-material) | 25 | 25 | 25 | 25 | 25 | 25 | 25 | +| [olh/issue/402/info/?theme=olh](#url-olh-issue-402-info-theme-olh) | 3 | 3 | 20 | 20 | 22 | 22 | 3 | +| [olh/issue/409/info/?theme=clean](#url-olh-issue-409-info-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/issue/409/info/?theme=material](#url-olh-issue-409-info-theme-material) | 25 | 25 | 25 | 25 | 25 | 25 | 25 | +| [olh/issue/409/info/?theme=olh](#url-olh-issue-409-info-theme-olh) | 3 | 3 | 20 | 20 | 22 | 22 | 3 | +| [olh/issues/?theme=clean](#url-olh-issues-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/issues/?theme=material](#url-olh-issues-theme-material) | 24 | 24 | 24 | 24 | 24 | 24 | 24 | +| [olh/issues/?theme=olh](#url-olh-issues-theme-olh) | 3 | 3 | 1 | 1 | 3 | 3 | 3 | +| [olh/news/429/?theme=clean](#url-olh-news-429-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/news/429/?theme=material](#url-olh-news-429-theme-material) | 9 | 9 | 9 | 9 | 9 | 9 | 9 | +| [olh/news/429/?theme=olh](#url-olh-news-429-theme-olh) | 3 | 3 | 1 | 1 | 3 | 3 | 3 | +| [olh/news/?theme=clean](#url-olh-news-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/news/?theme=material](#url-olh-news-theme-material) | 18 | 18 | 18 | 18 | 18 | 18 | 18 | +| [olh/news/?theme=olh](#url-olh-news-theme-olh) | 14 | 14 | 12 | 12 | 14 | 14 | 14 | +| [olh/search/?theme=clean](#url-olh-search-theme-clean) | 8 | 8 | 8 | 8 | 8 | 8 | 8 | +| [olh/search/?theme=material](#url-olh-search-theme-material) | 16 | 16 | 16 | 16 | 16 | 16 | 16 | +| [olh/search/?theme=olh](#url-olh-search-theme-olh) | 5 | 5 | 3 | 3 | 5 | 5 | 5 | +| [olh/site/about/?theme=clean](#url-olh-site-about-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/site/about/?theme=material](#url-olh-site-about-theme-material) | 15 | 15 | 15 | 15 | 15 | 15 | 15 | +| [olh/site/about/?theme=olh](#url-olh-site-about-theme-olh) | 17 | 17 | 10 | 10 | 17 | 17 | 17 | +| [olh/site/author-guidelines/?theme=clean](#url-olh-site-author-guidelines-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/site/author-guidelines/?theme=material](#url-olh-site-author-guidelines-theme-material) | 18 | 18 | 18 | 18 | 18 | 18 | 18 | +| [olh/site/author-guidelines/?theme=olh](#url-olh-site-author-guidelines-theme-olh) | 15 | 15 | 13 | 13 | 15 | 15 | 15 | +| [olh/site/journal-policies/?theme=clean](#url-olh-site-journal-policies-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/site/journal-policies/?theme=material](#url-olh-site-journal-policies-theme-material) | 30 | 30 | 30 | 30 | 30 | 30 | 30 | +| [olh/site/journal-policies/?theme=olh](#url-olh-site-journal-policies-theme-olh) | 54 | 54 | 25 | 25 | 55 | 55 | 54 | +| [olh/submissions/?theme=clean](#url-olh-submissions-theme-clean) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | +| [olh/submissions/?theme=material](#url-olh-submissions-theme-material) | 19 | 19 | 20 | 20 | 20 | 20 | 19 | +| [olh/submissions/?theme=olh](#url-olh-submissions-theme-olh) | 16 | 16 | 14 | 14 | 16 | 16 | 16 | + +## aria-required-children + +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` + +| URL | chromium | firefox | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | +| olh/articles/?theme=olh | :white_check_mark: | :white_check_mark: | 1 | 1 | :white_check_mark: | 2 | + +## aria-required-parent + +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` + +| URL | chromium | firefox | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | +| olh/articles/?theme=olh | :white_check_mark: | :white_check_mark: | 1 | 1 | :white_check_mark: | 2 | + +## color-contrast + +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` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| ?theme=clean | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 21 | +| ?theme=olh | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| 404/?theme=clean | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 21 | +| 404/?theme=olh | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| contact/?theme=clean | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 21 | +| contact/?theme=olh | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| journals/?theme=clean | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 21 | +| journals/?theme=olh | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| olh/?theme=material | 12 | 12 | 12 | 12 | 12 | 12 | 12 | 84 | +| olh/?theme=olh | 10 | 10 | 8 | 8 | 10 | 10 | 10 | 66 | +| olh/accessibility/?theme=material | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 21 | +| olh/accessibility/?theme=olh | 2 | 2 | :white_check_mark: | :white_check_mark: | 2 | 2 | 2 | 10 | +| olh/article/id/4403/?theme=material | 147 | 147 | 153 | 153 | 145 | 146 | 147 | 1038 | +| olh/article/id/4403/?theme=olh | 158 | 157 | 152 | 152 | 158 | 160 | 160 | 1097 | +| olh/article/id/4405/?theme=clean | 9 | 9 | 9 | 9 | 9 | 9 | 9 | 63 | +| olh/article/id/4405/?theme=material | 278 | 278 | 282 | 282 | 277 | 278 | 278 | 1953 | +| olh/article/id/4405/?theme=olh | 292 | 292 | 273 | 273 | 292 | 292 | 292 | 2006 | +| olh/articles/?theme=material | 68 | 68 | 68 | 68 | 68 | 68 | 68 | 476 | +| olh/articles/?theme=olh | 4 | 4 | 1 | 1 | 3 | 3 | 4 | 20 | +| olh/collections/?theme=material | 48 | 48 | 50 | 48 | 40 | 51 | 48 | 333 | +| olh/collections/?theme=olh | 2 | 2 | :white_check_mark: | :white_check_mark: | 2 | 2 | 2 | 10 | +| olh/collections/846/?theme=material | 53 | 53 | 53 | 53 | 52 | 53 | 53 | 370 | +| olh/collections/846/?theme=olh | 52 | 52 | 50 | 50 | 52 | 52 | 52 | 360 | +| olh/contact/?theme=material | 9 | 9 | 9 | 9 | 9 | 9 | 9 | 63 | +| olh/contact/?theme=olh | 2 | 2 | :white_check_mark: | :white_check_mark: | 2 | 2 | 2 | 10 | +| olh/editorialteam/?theme=material | 18 | 18 | 18 | 18 | 18 | 18 | 18 | 126 | +| olh/editorialteam/?theme=olh | 17 | 17 | 15 | 15 | 15 | 17 | 17 | 113 | +| olh/issue/402/info/?theme=material | 22 | 22 | 22 | 22 | 22 | 22 | 22 | 154 | +| olh/issue/402/info/?theme=olh | 2 | 2 | 19 | 19 | 21 | 21 | 2 | 86 | +| olh/issue/409/info/?theme=material | 22 | 22 | 22 | 22 | 22 | 22 | 22 | 154 | +| olh/issue/409/info/?theme=olh | 2 | 2 | 19 | 19 | 21 | 21 | 2 | 86 | +| olh/issues/?theme=material | 22 | 22 | 22 | 22 | 22 | 22 | 22 | 154 | +| olh/issues/?theme=olh | 2 | 2 | :white_check_mark: | :white_check_mark: | 2 | 2 | 2 | 10 | +| olh/news/?theme=material | 15 | 15 | 15 | 15 | 15 | 15 | 15 | 105 | +| olh/news/?theme=olh | 14 | 14 | 12 | 12 | 14 | 14 | 14 | 94 | +| olh/news/429/?theme=material | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 49 | +| olh/news/429/?theme=olh | 3 | 3 | 1 | 1 | 3 | 3 | 3 | 17 | +| olh/search/?theme=clean | 6 | 6 | 6 | 6 | 6 | 6 | 6 | 42 | +| olh/search/?theme=material | 12 | 12 | 12 | 12 | 12 | 12 | 12 | 84 | +| olh/search/?theme=olh | 4 | 4 | 2 | 2 | 4 | 4 | 4 | 24 | +| olh/site/about/?theme=material | 13 | 13 | 13 | 13 | 13 | 13 | 13 | 91 | +| olh/site/about/?theme=olh | 16 | 16 | 10 | 10 | 16 | 16 | 16 | 100 | +| olh/site/author-guidelines/?theme=material | 16 | 16 | 16 | 16 | 16 | 16 | 16 | 112 | +| olh/site/author-guidelines/?theme=olh | 15 | 15 | 13 | 13 | 15 | 15 | 15 | 101 | +| olh/site/journal-policies/?theme=material | 28 | 28 | 28 | 28 | 28 | 28 | 28 | 196 | +| olh/site/journal-policies/?theme=olh | 53 | 53 | 25 | 25 | 54 | 54 | 53 | 317 | +| olh/submissions/?theme=material | 17 | 17 | 17 | 17 | 17 | 17 | 17 | 119 | +| olh/submissions/?theme=olh | 16 | 16 | 14 | 14 | 16 | 16 | 16 | 108 | + +## document-title + +Documents must have `<title>` element to aid in navigation + +Tags: `ACT`, `EN-301-549`, `EN-9.2.4.2`, `RGAA-8.5.1`, `RGAAv4`, `TT12.a`, `TTv5`, `cat.text-alternatives`, `wcag242`, `wcag2a` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| 404/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +## empty-heading + +Headings should not be empty + +Tags: `best-practice`, `cat.name-role-value` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| ?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| ?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +## heading-order + +Heading levels should only increase by one + +Tags: `best-practice`, `cat.semantics` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| olh/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/collections/846/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issues/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +## html-has-lang + +`<html>` element must have a lang attribute + +Tags: `ACT`, `EN-301-549`, `EN-9.3.1.1`, `RGAA-8.3.1`, `RGAAv4`, `TT11.a`, `TTv5`, `cat.language`, `wcag2a`, `wcag311` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| ?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| 404/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| contact/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| journals/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +## image-alt + +Images must have alternative text + +Tags: `ACT`, `EN-301-549`, `EN-9.1.1.1`, `RGAA-1.1.1`, `RGAAv4`, `TT7.a`, `TT7.b`, `TTv5`, `cat.text-alternatives`, `section508`, `section508.22.a`, `wcag111`, `wcag2a` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| ?theme=clean | 22 | 22 | 22 | 22 | 22 | 22 | 22 | 154 | +| 404/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| contact/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| journals/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +## label + +Form elements must have labels + +Tags: `ACT`, `EN-301-549`, `EN-9.4.1.2`, `RGAA-11.1.1`, `RGAAv4`, `TT5.c`, `TTv5`, `cat.forms`, `section508`, `section508.22.n`, `wcag2a`, `wcag412` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| contact/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| contact/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/articles/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/contact/?theme=material | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| olh/contact/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/search/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +## landmark-complementary-is-top-level + +Aside should not be contained in another landmark + +Tags: `best-practice`, `cat.semantics` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| olh/articles/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/articles/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/collections/846/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issue/402/info/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issue/409/info/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/site/about/?theme=olh | 1 | 1 | :white_check_mark: | :white_check_mark: | 1 | 1 | 1 | 5 | +| olh/site/journal-policies/?theme=olh | 1 | 1 | :white_check_mark: | :white_check_mark: | 1 | 1 | 1 | 5 | + +## landmark-unique + +Landmarks should have a unique role or role/label/title (i.e. accessible name) combination + +Tags: `best-practice`, `cat.semantics` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| ?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +## link-name + +Links must have discernible text + +Tags: `ACT`, `EN-301-549`, `EN-9.2.4.4`, `EN-9.4.1.2`, `RGAA-6.2.1`, `RGAAv4`, `TT6.a`, `TTv5`, `cat.name-role-value`, `section508`, `section508.22.a`, `wcag244`, `wcag2a`, `wcag412` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| olh/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/accessibility/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/article/id/4403/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/article/id/4405/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/articles/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/collections/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/collections/846/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/contact/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/editorialteam/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issue/402/info/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issue/409/info/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issues/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/news/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/news/429/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/search/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/site/about/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/site/author-guidelines/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/site/journal-policies/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/submissions/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +## list + +`<ul>` and `<ol>` must only directly contain `<li>`, `<script>` or `<template>` elements + +Tags: `EN-301-549`, `EN-9.1.3.1`, `RGAA-9.3.1`, `RGAAv4`, `cat.structure`, `wcag131`, `wcag2a` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| olh/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/accessibility/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/article/id/4403/?theme=clean | 1 | 1 | 2 | 2 | 2 | 1 | 1 | 10 | +| olh/article/id/4403/?theme=material | :white_check_mark: | :white_check_mark: | 1 | 1 | :white_check_mark: | :white_check_mark: | :white_check_mark: | 2 | +| olh/article/id/4405/?theme=clean | 2 | 2 | 3 | 3 | 3 | 2 | 2 | 17 | +| olh/article/id/4405/?theme=material | 1 | 1 | 2 | 2 | 1 | 1 | 1 | 9 | +| olh/article/id/4405/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/articles/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/collections/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/collections/846/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/collections/846/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/contact/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/editorialteam/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issue/402/info/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issue/402/info/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issue/409/info/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issue/409/info/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issues/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/news/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/news/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/news/429/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/search/?theme=clean | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| olh/search/?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/site/about/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/site/author-guidelines/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/site/journal-policies/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/submissions/?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +## listitem + +`<li>` elements must be contained in a `<ul>` or `<ol>` + +Tags: `EN-301-549`, `EN-9.1.3.1`, `RGAA-9.3.1`, `RGAAv4`, `cat.structure`, `wcag131`, `wcag2a` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| olh/articles/?theme=olh | :white_check_mark: | :white_check_mark: | 1 | 1 | 1 | 1 | :white_check_mark: | 4 | + +## page-has-heading-one + +Page should contain a level-one heading + +Tags: `best-practice`, `cat.semantics` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| ?theme=clean | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| ?theme=olh | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +## scrollable-region-focusable + +Scrollable region must have keyboard access + +Tags: `EN-301-549`, `EN-9.2.1.1`, `EN-9.2.1.3`, `RGAA-7.3.2`, `RGAAv4`, `TT4.a`, `TTv5`, `cat.keyboard`, `wcag211`, `wcag213`, `wcag2a` + +| URL | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | Total | +| --- | --- | --- | --- | --- | --- | +| olh/article/id/4405/?theme=clean | 1 | 1 | :white_check_mark: | 1 | 3 | +| olh/article/id/4405/?theme=material | :white_check_mark: | 1 | :white_check_mark: | :white_check_mark: | 1 | +| olh/submissions/?theme=material | 1 | 1 | 1 | 1 | 4 | + +## select-name + +Select element must have an accessible name + +Tags: `ACT`, `EN-301-549`, `EN-9.4.1.2`, `RGAA-11.1.1`, `RGAAv4`, `TT5.c`, `TTv5`, `cat.forms`, `section508`, `section508.22.n`, `wcag2a`, `wcag412` + +| URL | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| olh/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/accessibility/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/article/id/4403/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/article/id/4405/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/articles/?theme=clean | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| olh/articles/?theme=material | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 21 | +| olh/articles/?theme=olh | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| olh/collections/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/collections/846/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/contact/?theme=material | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| olh/editorialteam/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issue/402/info/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issue/409/info/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/issues/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/news/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/news/429/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/search/?theme=material | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| olh/site/about/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/site/author-guidelines/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/site/journal-policies/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| olh/submissions/?theme=material | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-404-theme-clean"></span> +## 404/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 21 | +| image-alt | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-404-theme-olh"></span> +## 404/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| document-title | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| html-has-lang | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-theme-clean"></span> +## ?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 21 | +| empty-heading | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| image-alt | 22 | 22 | 22 | 22 | 22 | 22 | 22 | 154 | +| page-has-heading-one | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-theme-olh"></span> +## ?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| empty-heading | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| html-has-lang | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| landmark-unique | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| page-has-heading-one | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-contact-theme-clean"></span> +## contact/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 21 | +| image-alt | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| label | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-contact-theme-olh"></span> +## contact/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| html-has-lang | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| label | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-journals-theme-clean"></span> +## journals/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 21 | +| image-alt | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-journals-theme-olh"></span> +## journals/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| html-has-lang | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-theme-clean"></span> +## olh/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| heading-order | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| landmark-unique | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-theme-material"></span> +## olh/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 12 | 12 | 12 | 12 | 12 | 12 | 12 | 84 | +| heading-order | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-theme-olh"></span> +## olh/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 10 | 10 | 8 | 8 | 10 | 10 | 10 | 66 | +| heading-order | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| label | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| landmark-unique | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-accessibility-theme-clean"></span> +## olh/accessibility/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-accessibility-theme-material"></span> +## olh/accessibility/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 21 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-accessibility-theme-olh"></span> +## olh/accessibility/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 2 | 2 | :white_check_mark: | :white_check_mark: | 2 | 2 | 2 | 10 | + +<span id="url-olh-article-id-4403-theme-clean"></span> +## olh/article/id/4403/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 2 | 2 | 2 | 1 | 1 | 10 | + +<span id="url-olh-article-id-4403-theme-material"></span> +## olh/article/id/4403/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 147 | 147 | 153 | 153 | 145 | 146 | 147 | 1038 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| list | :white_check_mark: | :white_check_mark: | 1 | 1 | :white_check_mark: | :white_check_mark: | :white_check_mark: | 2 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-article-id-4403-theme-olh"></span> +## olh/article/id/4403/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 158 | 157 | 152 | 152 | 158 | 160 | 160 | 1097 | + +<span id="url-olh-article-id-4405-theme-clean"></span> +## olh/article/id/4405/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 9 | 9 | 9 | 9 | 9 | 9 | 9 | 63 | +| list | 2 | 2 | 3 | 3 | 3 | 2 | 2 | 17 | +| scrollable-region-focusable | :white_check_mark: | :white_check_mark: | 1 | 1 | :white_check_mark: | 1 | :white_check_mark: | 3 | + +<span id="url-olh-article-id-4405-theme-material"></span> +## olh/article/id/4405/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 278 | 278 | 282 | 282 | 277 | 278 | 278 | 1953 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| list | 1 | 1 | 2 | 2 | 1 | 1 | 1 | 9 | +| scrollable-region-focusable | :white_check_mark: | :white_check_mark: | :white_check_mark: | 1 | :white_check_mark: | :white_check_mark: | :white_check_mark: | 1 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-article-id-4405-theme-olh"></span> +## olh/article/id/4405/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 292 | 292 | 273 | 273 | 292 | 292 | 292 | 2006 | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-articles-theme-clean"></span> +## olh/articles/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | + +<span id="url-olh-articles-theme-material"></span> +## olh/articles/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 68 | 68 | 68 | 68 | 68 | 68 | 68 | 476 | +| label | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| landmark-complementary-is-top-level | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 21 | + +<span id="url-olh-articles-theme-olh"></span> +## olh/articles/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| aria-required-children | :white_check_mark: | :white_check_mark: | 1 | 1 | 1 | 1 | :white_check_mark: | 4 | +| aria-required-parent | :white_check_mark: | :white_check_mark: | 1 | 1 | 1 | 1 | :white_check_mark: | 4 | +| color-contrast | 4 | 4 | 1 | 1 | 3 | 3 | 4 | 20 | +| landmark-complementary-is-top-level | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| listitem | :white_check_mark: | :white_check_mark: | 1 | 1 | 1 | 1 | :white_check_mark: | 4 | +| select-name | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | + +<span id="url-olh-collections-846-theme-clean"></span> +## olh/collections/846/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-collections-846-theme-material"></span> +## olh/collections/846/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 53 | 53 | 53 | 53 | 52 | 53 | 53 | 370 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-collections-846-theme-olh"></span> +## olh/collections/846/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 52 | 52 | 50 | 50 | 52 | 52 | 52 | 360 | +| heading-order | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| landmark-complementary-is-top-level | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-collections-theme-clean"></span> +## olh/collections/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-collections-theme-material"></span> +## olh/collections/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 48 | 48 | 50 | 48 | 40 | 51 | 48 | 333 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-collections-theme-olh"></span> +## olh/collections/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 2 | 2 | :white_check_mark: | :white_check_mark: | 2 | 2 | 2 | 10 | + +<span id="url-olh-contact-theme-clean"></span> +## olh/contact/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-contact-theme-material"></span> +## olh/contact/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 9 | 9 | 9 | 9 | 9 | 9 | 9 | 63 | +| label | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | + +<span id="url-olh-contact-theme-olh"></span> +## olh/contact/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 2 | 2 | :white_check_mark: | :white_check_mark: | 2 | 2 | 2 | 10 | +| label | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-editorialteam-theme-clean"></span> +## olh/editorialteam/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-editorialteam-theme-material"></span> +## olh/editorialteam/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 18 | 18 | 18 | 18 | 18 | 18 | 18 | 126 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-editorialteam-theme-olh"></span> +## olh/editorialteam/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 17 | 17 | 15 | 15 | 15 | 17 | 17 | 113 | + +<span id="url-olh-issue-402-info-theme-clean"></span> +## olh/issue/402/info/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-issue-402-info-theme-material"></span> +## olh/issue/402/info/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 22 | 22 | 22 | 22 | 22 | 22 | 22 | 154 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-issue-402-info-theme-olh"></span> +## olh/issue/402/info/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 2 | 2 | 19 | 19 | 21 | 21 | 2 | 86 | +| landmark-complementary-is-top-level | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-issue-409-info-theme-clean"></span> +## olh/issue/409/info/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-issue-409-info-theme-material"></span> +## olh/issue/409/info/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 22 | 22 | 22 | 22 | 22 | 22 | 22 | 154 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-issue-409-info-theme-olh"></span> +## olh/issue/409/info/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 2 | 2 | 19 | 19 | 21 | 21 | 2 | 86 | +| landmark-complementary-is-top-level | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-issues-theme-clean"></span> +## olh/issues/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-issues-theme-material"></span> +## olh/issues/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 22 | 22 | 22 | 22 | 22 | 22 | 22 | 154 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-issues-theme-olh"></span> +## olh/issues/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 2 | 2 | :white_check_mark: | :white_check_mark: | 2 | 2 | 2 | 10 | +| heading-order | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-news-429-theme-clean"></span> +## olh/news/429/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-news-429-theme-material"></span> +## olh/news/429/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 49 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-news-429-theme-olh"></span> +## olh/news/429/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 3 | 3 | 1 | 1 | 3 | 3 | 3 | 17 | + +<span id="url-olh-news-theme-clean"></span> +## olh/news/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-news-theme-material"></span> +## olh/news/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 15 | 15 | 15 | 15 | 15 | 15 | 15 | 105 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-news-theme-olh"></span> +## olh/news/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 14 | 14 | 12 | 12 | 14 | 14 | 14 | 94 | + +<span id="url-olh-search-theme-clean"></span> +## olh/search/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 6 | 6 | 6 | 6 | 6 | 6 | 6 | 42 | +| list | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | + +<span id="url-olh-search-theme-material"></span> +## olh/search/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 12 | 12 | 12 | 12 | 12 | 12 | 12 | 84 | +| label | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 14 | + +<span id="url-olh-search-theme-olh"></span> +## olh/search/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 4 | 4 | 2 | 2 | 4 | 4 | 4 | 24 | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-site-about-theme-clean"></span> +## olh/site/about/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-site-about-theme-material"></span> +## olh/site/about/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 13 | 13 | 13 | 13 | 13 | 13 | 13 | 91 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-site-about-theme-olh"></span> +## olh/site/about/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 16 | 16 | 10 | 10 | 16 | 16 | 16 | 100 | +| landmark-complementary-is-top-level | 1 | 1 | :white_check_mark: | :white_check_mark: | 1 | 1 | 1 | 5 | + +<span id="url-olh-site-author-guidelines-theme-clean"></span> +## olh/site/author-guidelines/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-site-author-guidelines-theme-material"></span> +## olh/site/author-guidelines/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 16 | 16 | 16 | 16 | 16 | 16 | 16 | 112 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-site-author-guidelines-theme-olh"></span> +## olh/site/author-guidelines/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 15 | 15 | 13 | 13 | 15 | 15 | 15 | 101 | + +<span id="url-olh-site-journal-policies-theme-clean"></span> +## olh/site/journal-policies/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-site-journal-policies-theme-material"></span> +## olh/site/journal-policies/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 28 | 28 | 28 | 28 | 28 | 28 | 28 | 196 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-site-journal-policies-theme-olh"></span> +## olh/site/journal-policies/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 53 | 53 | 25 | 25 | 54 | 54 | 53 | 317 | +| landmark-complementary-is-top-level | 1 | 1 | :white_check_mark: | :white_check_mark: | 1 | 1 | 1 | 5 | + +<span id="url-olh-submissions-theme-clean"></span> +## olh/submissions/?theme=clean + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| list | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-submissions-theme-material"></span> +## olh/submissions/?theme=material + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 17 | 17 | 17 | 17 | 17 | 17 | 17 | 119 | +| link-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | +| scrollable-region-focusable | :white_check_mark: | :white_check_mark: | 1 | 1 | 1 | 1 | :white_check_mark: | 4 | +| select-name | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | + +<span id="url-olh-submissions-theme-olh"></span> +## olh/submissions/?theme=olh + +| Rule | chromium | firefox | mobile-chrome | mobile-safari | tablet-chrome | tablet-safari | webkit | Total | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | +| color-contrast | 16 | 16 | 14 | 14 | 16 | 16 | 16 | 108 | From 0952777c6c385cad2b3c5480036311755803952d Mon Sep 17 00:00:00 2001 From: StephDriver <5330770+StephDriver@users.noreply.github.com> Date: Tue, 24 Mar 2026 14:34:55 +0000 Subject: [PATCH 5/7] a11y: #2 add urls for theme testsing --- a11y/test_inputs/clarity.json | 31 +++++++++++++++++++++++++++++++ a11y/test_inputs/clean.json | 31 +++++++++++++++++++++++++++++++ a11y/test_inputs/hourglass.json | 28 ++++++++++++++++++++++++++++ a11y/test_inputs/material.json | 27 +++++++++++++++++++++++++++ a11y/test_inputs/olh.json | 31 +++++++++++++++++++++++++++++++ 5 files changed, 148 insertions(+) create mode 100644 a11y/test_inputs/clarity.json create mode 100644 a11y/test_inputs/clean.json create mode 100644 a11y/test_inputs/hourglass.json create mode 100644 a11y/test_inputs/material.json create mode 100644 a11y/test_inputs/olh.json diff --git a/a11y/test_inputs/clarity.json b/a11y/test_inputs/clarity.json new file mode 100644 index 0000000..3b048d9 --- /dev/null +++ b/a11y/test_inputs/clarity.json @@ -0,0 +1,31 @@ +[ + "http://localhost:8000/", + "http://localhost:8000/404/", + "http://localhost:8000/journals/", + "http://localhost:8000/contact/", + + "http://localhost:8000/olh/", + "http://localhost:8000/olh/accessibility/", + "http://localhost:8000/olh/contact/ ", + "http://localhost:8000/olh/editorialteam/", + "http://localhost:8000/olh/search/", + "http://localhost:8000/olh/site/about/", + "http://localhost:8000/olh/site/author-guidelines/", + "http://localhost:8000/olh/site/journal-policies/", + "http://localhost:8000/olh/submissions/", + + "http://localhost:8000/olh/issues/", + "http://localhost:8000/olh/issue/402/info/", + "http://localhost:8000/olh/issue/409/info/", + + "http://localhost:8000/olh/collections/", + "http://localhost:8000/olh/collections/846/", + + "http://localhost:8000/olh/news/", + "http://localhost:8000/olh/news/429/", + + "http://localhost:8000/olh/articles/", + "http://localhost:8000/olh/article/id/4403/", + "http://localhost:8000/olh/article/id/4405/" + +] \ No newline at end of file diff --git a/a11y/test_inputs/clean.json b/a11y/test_inputs/clean.json new file mode 100644 index 0000000..624a2d1 --- /dev/null +++ b/a11y/test_inputs/clean.json @@ -0,0 +1,31 @@ +[ + "http://localhost:8000/?theme=clean", + "http://localhost:8000/404/?theme=clean", + "http://localhost:8000/journals/?theme=clean", + "http://localhost:8000/contact/?theme=clean", + + "http://localhost:8000/olh/?theme=clean", + "http://localhost:8000/olh/accessibility/?theme=clean", + "http://localhost:8000/olh/contact/?theme=clean ", + "http://localhost:8000/olh/editorialteam/?theme=clean", + "http://localhost:8000/olh/search/?theme=clean", + "http://localhost:8000/olh/site/about/?theme=clean", + "http://localhost:8000/olh/site/author-guidelines/?theme=clean", + "http://localhost:8000/olh/site/journal-policies/?theme=clean", + "http://localhost:8000/olh/submissions/?theme=clean", + + "http://localhost:8000/olh/issues/?theme=clean", + "http://localhost:8000/olh/issue/402/info/?theme=clean", + "http://localhost:8000/olh/issue/409/info/?theme=clean", + + "http://localhost:8000/olh/collections/?theme=clean", + "http://localhost:8000/olh/collections/846/?theme=clean", + + "http://localhost:8000/olh/news/?theme=clean", + "http://localhost:8000/olh/news/429/?theme=clean", + + "http://localhost:8000/olh/articles/?theme=clean", + "http://localhost:8000/olh/article/id/4403/?theme=clean", + "http://localhost:8000/olh/article/id/4405/?theme=clean" + +] \ No newline at end of file diff --git a/a11y/test_inputs/hourglass.json b/a11y/test_inputs/hourglass.json new file mode 100644 index 0000000..9ebd95e --- /dev/null +++ b/a11y/test_inputs/hourglass.json @@ -0,0 +1,28 @@ +[ + "http://localhost:8000/", + "http://localhost:8000/contact/", + "http://localhost:8000/journals/", + "http://localhost:8000/login/", + "http://localhost:8000/news/702/", + "http://localhost:8000/news/743/", + "http://localhost:8000/register/step/1/", + "http://localhost:8000/site/accessibility/", + "http://localhost:8000/site/announcements-blog/", + "http://localhost:8000/site/copyright/", + "http://localhost:8000/site/for-editors/", + "http://localhost:8000/site/for-librarians-consortia/", + "http://localhost:8000/site/for-readers-authors/", + "http://localhost:8000/site/how-we-work/", + "http://localhost:8000/site/internships/", + "http://localhost:8000/site/janeway/", + "http://localhost:8000/site/newsletter-annual-reports/", + "http://localhost:8000/site/oa-glossary/", + "http://localhost:8000/site/open-access-movement/", + "http://localhost:8000/site/our-team/", + "http://localhost:8000/site/privacy/", + "http://localhost:8000/site/publisher-policies/", + "http://localhost:8000/site/reading-list/", + "http://localhost:8000/site/resources/", + "http://localhost:8000/site/what-we-do/", + "http://localhost:8000/site/who-we-are/" +] \ No newline at end of file diff --git a/a11y/test_inputs/material.json b/a11y/test_inputs/material.json new file mode 100644 index 0000000..4763220 --- /dev/null +++ b/a11y/test_inputs/material.json @@ -0,0 +1,27 @@ +[ + + "http://localhost:8000/olh/?theme=material", + "http://localhost:8000/olh/accessibility/?theme=material", + "http://localhost:8000/olh/contact/?theme=material ", + "http://localhost:8000/olh/editorialteam/?theme=material", + "http://localhost:8000/olh/search/?theme=material", + "http://localhost:8000/olh/site/about/?theme=material", + "http://localhost:8000/olh/site/author-guidelines/?theme=material", + "http://localhost:8000/olh/site/journal-policies/?theme=material", + "http://localhost:8000/olh/submissions/?theme=material", + + "http://localhost:8000/olh/issues/?theme=material", + "http://localhost:8000/olh/issue/402/info/?theme=material", + "http://localhost:8000/olh/issue/409/info/?theme=material", + + "http://localhost:8000/olh/collections/?theme=material", + "http://localhost:8000/olh/collections/846/?theme=material", + + "http://localhost:8000/olh/news/?theme=material", + "http://localhost:8000/olh/news/429/?theme=material", + + "http://localhost:8000/olh/articles/?theme=material", + "http://localhost:8000/olh/article/id/4403/?theme=material", + "http://localhost:8000/olh/article/id/4405/?theme=material" + +] \ No newline at end of file diff --git a/a11y/test_inputs/olh.json b/a11y/test_inputs/olh.json new file mode 100644 index 0000000..ce7159e --- /dev/null +++ b/a11y/test_inputs/olh.json @@ -0,0 +1,31 @@ +[ + "http://localhost:8000/?theme=olh", + "http://localhost:8000/404/?theme=olh", + "http://localhost:8000/journals/?theme=olh", + "http://localhost:8000/contact/?theme=olh", + + "http://localhost:8000/olh/?theme=olh", + "http://localhost:8000/olh/accessibility/?theme=olh", + "http://localhost:8000/olh/contact/?theme=olh ", + "http://localhost:8000/olh/editorialteam/?theme=olh", + "http://localhost:8000/olh/search/?theme=olh", + "http://localhost:8000/olh/site/about/?theme=olh", + "http://localhost:8000/olh/site/author-guidelines/?theme=olh", + "http://localhost:8000/olh/site/journal-policies/?theme=olh", + "http://localhost:8000/olh/submissions/?theme=olh", + + "http://localhost:8000/olh/issues/?theme=olh", + "http://localhost:8000/olh/issue/402/info/?theme=olh", + "http://localhost:8000/olh/issue/409/info/?theme=olh", + + "http://localhost:8000/olh/collections/?theme=olh", + "http://localhost:8000/olh/collections/846/?theme=olh", + + "http://localhost:8000/olh/news/?theme=olh", + "http://localhost:8000/olh/news/429/?theme=olh", + + "http://localhost:8000/olh/articles/?theme=olh", + "http://localhost:8000/olh/article/id/4403/?theme=olh", + "http://localhost:8000/olh/article/id/4405/?theme=olh" + +] \ No newline at end of file From 4c5da94fa5201cf3c73cfdc071ccbcbce2a3257c Mon Sep 17 00:00:00 2001 From: StephDriver <5330770+StephDriver@users.noreply.github.com> Date: Tue, 24 Mar 2026 14:36:14 +0000 Subject: [PATCH 6/7] a11y: #2 document playwright testing --- a11y/docs/a11y_scripts.md | 35 ++++++++++ a11y/docs/axe.md | 135 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 170 insertions(+) create mode 100644 a11y/docs/a11y_scripts.md create mode 100644 a11y/docs/axe.md diff --git a/a11y/docs/a11y_scripts.md b/a11y/docs/a11y_scripts.md new file mode 100644 index 0000000..774c661 --- /dev/null +++ b/a11y/docs/a11y_scripts.md @@ -0,0 +1,35 @@ +# Accessiblity Testing Helper Scripts + +## Management Commands +These are in the same directory as the other managment commands. +1. [a11y_page_titles](docs/a11y_page_titles.md) + + +## Playwright Scripts +These are in the `playwright/` directory. Run from there with `npx playwright test`. + +Results appear in `playwright/test-results/` and this directory is overwritten each time tests are run, so results need to be copyied out of there. For tracking, results are manually copied to `a11y/results/json`. + +1. [axe](docs/axe.md) — `tests/axe-general.test.js` and `tests/axe-detail.test.js` + Runs axe-core against a list of URLs and checks for WCAG 2.2 Level A/AA violations. + + + +## URL input files + +All URL lists live in `playwright/tests/test_inputs/`. Pass a different file to any test with the `URL_LIST` environment variable, or run a single URL with `A11Y_URL`. + +| File | Default for | Description | +|------|------------|-------------| +| `front_of_house.json` | Accessibility test, Target size test | Broad front-of-house URL list covering the three main themes (clean, OLH, material) across a representative set of page types. Used as the default for most automated tests. | +| `page_title_urls.json` | `a11y_page_titles` management command | Multi-journal URL list (OLH, ANE, Glossa) used to verify page titles include the correct journal name. Intentionally spans multiple journals — a single-journal list would not catch errors where the journal name is missing or wrong. | +| `clarity.json` | — | URLs for the Clarity theme. Use with `URL_LIST` when testing Clarity specifically. | +| `clean.json` | — | URLs for the Clean theme. | +| `hourglass.json` | — | URLs for the Hourglass theme. | +| `material.json` | — | URLs for the Material theme. | +| `olh.json` | — | URLs for the OLH theme. | + +## Results +When playwright runs, it deletes the contents of `playwright/test-results` and then puts the new results inside there. Any results we wish to keep and track should be copied to `a11y/results`. + +The JSON is the source of truth, the markdown is a human readable summary. diff --git a/a11y/docs/axe.md b/a11y/docs/axe.md new file mode 100644 index 0000000..c19c5cd --- /dev/null +++ b/a11y/docs/axe.md @@ -0,0 +1,135 @@ +# Axe + +Two test files are provided, both producing the same JSON output format via the shared teardown: + +| | `axe-general.test.js` | `axe-detail.test.js` | +|---|---|---| +| **Scope** | All URLs in the URL list | Single URL (`A11Y_URL`) | +| **Rules** | Full WCAG 2.2 A/AA rule set | Single rule (`A11Y_RULE`) | +| **Purpose** | Overview — breadth across all pages | Investigation — depth on one rule | +| **Node detail** | None — violation counts per URL per browser only | Full axe node data including `any`/`all`/`none` check arrays | +| **Env vars required** | None | `A11Y_URL` and `A11Y_RULE` (errors if either missing) | + +## How to use +:warning: If running against a dev install, then disable the debug toolbar before running tests or you will get errors from the toolbar itself. + +### Overview run (`axe-general.test.js`) +This is for a general list of errors that we store in this repo, track over time and use to generate reports. + +From the playwright directory. Note: use `axe-general.test` + +``` +npx playwright test axe-general.test --project=chromium +``` + +Run against multiple browsers in one pass by adding more `--project` flags, or omit `--project` entirely to run all configured browsers (chromium, firefox, webkit): + +``` +npx playwright test axe-general.test --project=chromium --project=firefox +npx playwright test axe-general.test +``` + +Additional browser configurations (e.g. mobile viewports) can be added to the `projects` array in `playwright.config.js`. + +### Detail run (`axe-detail.test.js`) +This gathers more information about a specific rule and page, and is used when working on fixing errors. This is for information only and we do not store the results in this repo. + +Requires `A11Y_URL` and `A11Y_RULE` to be set: + +``` +A11Y_URL=http://localhost:8000/ A11Y_RULE=color-contrast npx playwright test axe-detail --project=chromium +``` + +Run across all browsers: + +``` +A11Y_URL=http://localhost:8000/ A11Y_RULE=color-contrast npx playwright test axe-detail +``` + +Note: all tests should report as 'passed' in the terminal. Pass/fail during testing is on whether the test runs. If the tests fail, check the server is running! + +## JSON output + +Results are written to `playwright/test-results/results-{timestamp}.json` after each run. The file is a JSON array — one entry per axe rule that was run, sorted alphabetically by rule `id`. + +The `{timestamp}` is minute-precision (`YYYY-MM-DDTHH-MM`) and is taken at the moment the run begins, so it is consistent across all entries in the file and can be used to identify the run. + +All rules use the same structure: a `urls` array where every tested URL appears, each with a `browsers` object recording how many violations that browser found. `violations: 0` means the rule passed on that URL for that browser. + +```json +{ + "id": "aria-allowed-attr", + "help": "Elements must only use supported ARIA attributes", + "tags": ["cat.aria", "wcag2a", "wcag412", "..."], + "urls": [ + { + "url": "http://localhost:8000/", + "browsers": { + "chromium": { "test_date": "2026-03-23T12:56", "violations": 0 }, + "firefox": { "test_date": "2026-03-23T12:56", "violations": 0 } + } + } + ] +} +``` + +A rule with violations looks the same — URLs where the rule passed still appear with `violations: 0`, and URLs with failures show the count: + +```json +{ + "id": "color-contrast", + "help": "Elements must have sufficient color contrast", + "tags": ["cat.color", "wcag2aa", "wcag143", "..."], + "urls": [ + { + "url": "http://localhost:8000/", + "browsers": { + "chromium": { "test_date": "2026-03-23T12:56", "violations": 0 }, + "firefox": { "test_date": "2026-03-23T12:56", "violations": 0 } + } + }, + { + "url": "http://localhost:8000/articles/", + "browsers": { + "chromium": { "test_date": "2026-03-23T12:56", "violations": 3 }, + "firefox": { "test_date": "2026-03-23T12:56", "violations": 1 } + } + } + ] +} +``` + +To investigate which specific elements are failing, use `axe-detail.test.js`. + +**Detail run (`axe-detail.test.js`)** — nodes additionally include the full axe check arrays: + +- **`any`** — checks where at least one must pass; maps to "Fix any of the following" in the failure summary +- **`all`** — checks that must all pass +- **`none`** — conditions that must all be false + +Each check entry contains `id`, `impact`, `message`, and `data` (e.g. exact contrast ratios, specific ARIA attributes). Use the detail run when you need this level of diagnostic information for a specific rule. + +### Field reference + +| Field | Description | +|-------|-------------| +| `id` | Axe rule identifier | +| `help` | Short description of what the rule checks | +| `tags` | WCAG and category tags (e.g. `wcag2a`, `best-practice`) | +| `urls` | All pages the rule was tested on, sorted by URL | +| `urls[].url` | The page URL | +| `urls[].browsers` | Per-browser results for this rule on this page | +| `urls[].browsers[browser].test_date` | Minute-precision timestamp of the run, taken at test start — consistent across the entire run | +| `urls[].browsers[browser].violations` | Number of failing elements found by that browser on that page; `0` if the rule passed | + +### Tracking history over time + +The `test_date` inside each `occurrences` entry records when that failure was observed. When running `axe-general`, the output file should be copied onto the appropriate history file after each run (`a11y/results/json/file.json`) — git will show exactly which nodes were added or removed between runs. + +## Quality Assurance + +These tests should be repeatable when run locally a few minutes apart with no other changes. When running the tests, you should run them twice a few minutes apart and check, for example using: +```bash +git diff | grep '^[+-]' | grep -v 'test_date' +``` +If there are differences between runs, investigate whether any dynamic page content is affecting violation counts. It is important that the data is repeatable before results are relied upon. \ No newline at end of file From 166a74bc5e37173ad0614f7ff7c9b6ab5620ffd7 Mon Sep 17 00:00:00 2001 From: StephDriver <5330770+StephDriver@users.noreply.github.com> Date: Tue, 24 Mar 2026 14:37:34 +0000 Subject: [PATCH 7/7] a11y: #2 add target size report --- a11y/docs/a11y_scripts.md | 3 +- a11y/docs/target_size.md | 86 + a11y/playwright/tests/target-size.test.js | 164 + a11y/results/markdown/target-size-report.md | 5308 +++++++++++++++++++ 4 files changed, 5560 insertions(+), 1 deletion(-) create mode 100644 a11y/docs/target_size.md create mode 100644 a11y/playwright/tests/target-size.test.js create mode 100644 a11y/results/markdown/target-size-report.md diff --git a/a11y/docs/a11y_scripts.md b/a11y/docs/a11y_scripts.md index 774c661..beb4033 100644 --- a/a11y/docs/a11y_scripts.md +++ b/a11y/docs/a11y_scripts.md @@ -12,7 +12,8 @@ Results appear in `playwright/test-results/` and this directory is overwritten e 1. [axe](docs/axe.md) — `tests/axe-general.test.js` and `tests/axe-detail.test.js` Runs axe-core against a list of URLs and checks for WCAG 2.2 Level A/AA violations. - +2. [Target size](docs/target_size.md) — `tests/target_size.test.js` + Records the pixel dimensions of every focusable element against WCAG 2.2 AA (24 px) and AAA (44 px) thresholds. Outputs a markdown table and CSV to `test-results/`. ## URL input files diff --git a/a11y/docs/target_size.md b/a11y/docs/target_size.md new file mode 100644 index 0000000..6e41891 --- /dev/null +++ b/a11y/docs/target_size.md @@ -0,0 +1,86 @@ +# Target size test + +Playwright test that records the pixel dimensions of every focusable element on each tested page and checks them against the WCAG 2.2 target size thresholds. + +## Purpose + +To assist with finding areas of non-compliance with [WCAG 2.5.8 Target Size (Minimum)](https://www.w3.org/WAI/WCAG22/Understanding/target-size-minimum) (Level AA) and [WCAG 2.5.5 Target Size (Enhanced)](https://www.w3.org/WAI/WCAG22/Understanding/target-size-enhanced) (Level AAA): + +| Level | Minimum size | +|-------|-------------| +| AA | 24 × 24 px | +| AAA | 44 × 44 px | + +The test collects data for all focusable elements — it does not fail on small targets. Use the output report to identify elements that fall below the thresholds. + +**Text links** (`<a href>` with no `img` or `svg` child) are flagged separately in the report. WCAG 2.2 provides a height exception for inline text links because their height is determined by the surrounding line height rather than the author. + +## Prerequisites + +Install dependencies and browsers once from the `playwright/` directory: + +```bash +npm install +npx playwright install +``` + +## URL list + +Defaults to `tests/test_inputs/front_of_house.json`. This is the same default as the accessibility test — see [playwright_accessibility_testing.md](playwright_accessibility_testing.md) for details on the URL list format and environment variable overrides. + +| Environment variable | Effect | +|---------------------|--------| +| `URL_LIST=/path/to/urls.json` | Use a different JSON file (array of URL strings) | +| `A11Y_URL=http://localhost:8000/olh/` | Run against a single URL only | + +## How to run + +From the `playwright/` directory: + +```bash +npx playwright test target_size --project=chromium +``` + +### Run against a single URL + +```bash +A11Y_URL=http://localhost:8000/olh/ npx playwright test target_size --project=chromium +``` + +### Use a different URL list + +```bash +URL_LIST=/path/to/my-urls.json npx playwright test target_size --project=chromium +``` + +### Run in headed mode + +```bash +npx playwright test target_size --project=chromium --headed +``` + +## Output + +After the run, two files are written to the test's output directory inside `test-results/`: + +- **`target-size-report.md`** — a markdown table with one row per focusable element, showing URL, tag, accessible name, width, height, whether it is a text link, and whether it meets AA and AAA thresholds. +- **`target-size-report.csv`** — the same data in CSV format for spreadsheet analysis. + +The report header also shows the total number of URLs tested and total focusable elements found. + +## Reading the results + +Each row in the report shows: + +| Column | Description | +|--------|-------------| +| URL | Page the element was found on | +| # | Element index on that page | +| Tag | HTML tag (`a`, `button`, `input`, etc.) | +| Name / Label | Accessible name (aria-label, title, placeholder, or text content) | +| Width / Height (px) | Rendered size | +| Text link | ✓ if this is an inline text `<a href>` with no img/svg | +| ≥24×24 (AA) | ✓ meets WCAG 2.2 Level AA minimum | +| ≥44×44 (AAA) | ✓ meets WCAG 2.2 Level AAA enhanced | + +Elements where **Text link** is ✓ and the AA column is ✗ may still pass WCAG 2.2 due to the height exception — review these manually. diff --git a/a11y/playwright/tests/target-size.test.js b/a11y/playwright/tests/target-size.test.js new file mode 100644 index 0000000..5c0e271 --- /dev/null +++ b/a11y/playwright/tests/target-size.test.js @@ -0,0 +1,164 @@ +// @ts-check +const { test, expect } = require('@playwright/test'); +const fs = require('fs'); +const path = require('path'); + +const MIN_TARGET_AA = 24; // WCAG 2.2 Level AA +const MIN_TARGET_AAA = 44; // WCAG 2.2 Level AAA + +/** Single URL when A11Y_URL is set; otherwise use front_of_house list from JSON */ +const DEFAULT_URL_LIST_PATH = path.join(__dirname, '..', '..', 'test_inputs', 'front_of_house.json'); + +function loadTestUrls() { + const urlListPath = process.env.URL_LIST || DEFAULT_URL_LIST_PATH; + const resolved = path.resolve(urlListPath); + if (!fs.existsSync(resolved)) { + throw new Error(`URL list not found: ${resolved}. Set URL_LIST or A11Y_URL, or add tests/test_inputs/front_of_house.json.`); + } + const raw = fs.readFileSync(resolved, 'utf8'); + const urls = JSON.parse(raw); + if (!Array.isArray(urls) || urls.some((u) => typeof u !== 'string')) { + throw new Error('URL list must be a JSON array of strings.'); + } + return urls; +} + +function getUrls() { + if (process.env.A11Y_URL) { + return [process.env.A11Y_URL]; + } + return loadTestUrls(); +} + +const TEST_URLS = getUrls(); + +test('record focusable elements target size to markdown table', async ({ page }, testInfo) => { + const allRows = []; + let totalFocusable = 0; + + for (const url of TEST_URLS) { + await page.goto(url, { waitUntil: 'load' }); + + const focusableData = await page.evaluate(({ minAA, minAAA }) => { + const focusableSelector = [ + 'a[href]', + 'button:not([disabled])', + 'input:not([disabled])', + 'select:not([disabled])', + 'textarea:not([disabled])', + 'summary', + '[contenteditable="true"]', + '[tabindex]:not([tabindex="-1"])', + ].join(', '); + + const nodes = document.querySelectorAll(focusableSelector); + + return Array.from(nodes) + .filter((el) => { + const style = window.getComputedStyle(el); + const hidden = + style.display === 'none' || + style.visibility === 'hidden' || + style.opacity === '0' || + el.getBoundingClientRect().width === 0 || + el.getBoundingClientRect().height === 0; + return !hidden; + }) + .map((el, index) => { + const rect = el.getBoundingClientRect(); + const width = Math.round(rect.width); + const height = Math.round(rect.height); + const tag = el.tagName.toLowerCase(); + const name = + el.getAttribute('aria-label') || + el.getAttribute('title') || + el.getAttribute('placeholder') || + (el.textContent || '').trim().replace(/\s+/g, ' ').slice(0, 40) || + el.getAttribute('type') || + '(no name)'; + const meetsAA = width >= minAA && height >= minAA; + // Text link = <a> with no img/svg; height is determined by font size (WCAG height exception) + const isTextLink = + tag === 'a' && !el.querySelector('img, svg') && el.textContent?.trim().length > 0; + return { + index: index + 1, + tag, + name: name.slice(0, 50), + width, + height, + meetsAA, + isTextLink, + }; + }); + }, { minAA: MIN_TARGET_AA }); + + for (const row of focusableData) { + allRows.push({ url, ...row }); + } + totalFocusable += focusableData.length; + } + + const headers = [ + 'URL', + '#', + 'Tag', + 'Name / Label', + 'Width (px)', + 'Height (px)', + 'Text link', + `≥${MIN_TARGET_AA}×${MIN_TARGET_AA} (AA)`, + ]; + const separator = headers.map(() => '---'); + const headerRow = '| ' + headers.join(' | ') + ' |'; + const sepRow = '| ' + separator.join(' | ') + ' |'; + + const bodyRows = allRows.map((row) => { + return [ + row.url.replace(/\|/g, '\\|'), + row.index, + row.tag, + row.name.replace(/\|/g, '\\|').replace(/\n/g, ' '), + row.width, + row.height, + row.isTextLink ? ':white_check_mark:' : ':x:', + row.meetsAA ? ':white_check_mark:' : ':x:' + ].join(' | '); + }); + + const table = [ + '# Focusable elements target size', + '', + `Generated: ${new Date().toISOString()}`, + `URLs tested: ${TEST_URLS.length}`, + `Total focusable elements: ${totalFocusable}`, + '', + '**Text link** (✓) = inline text `<a href>` with no img/svg; height is determined by font size (WCAG 2.2 height exception applies).', + '', + headerRow, + sepRow, + ...bodyRows.map((r) => '| ' + r + ' |'), + ].join('\n'); + + const reportPath = testInfo.outputPath('target-size-report.md'); + const csvPath = testInfo.outputPath('target-size-report.csv'); + fs.mkdirSync(path.dirname(reportPath), { recursive: true }); + fs.writeFileSync(reportPath, table, 'utf8'); + + // CSV output: escape fields that contain comma, quote, or newline + const escapeCsv = (val) => { + const s = String(val ?? ''); + if (/[",\r\n]/.test(s)) return `"${s.replace(/"/g, '""')}"`; + return s; + }; + + testInfo.attachments.push({ + name: 'target-size-report', + path: reportPath, + contentType: 'text/markdown', + }); + + // Optional: log path so it's visible in runner output + console.log('Target size report written to:', reportPath); + + expect(totalFocusable).toBeGreaterThanOrEqual(0); +}); diff --git a/a11y/results/markdown/target-size-report.md b/a11y/results/markdown/target-size-report.md new file mode 100644 index 0000000..1806e3d --- /dev/null +++ b/a11y/results/markdown/target-size-report.md @@ -0,0 +1,5308 @@ +# Focusable elements target size + +Generated: 2026-03-19T16:29:31.341Z +URLs tested: 65 +Total focusable elements: 5298 + +**Text link** (✓) = inline text `<a href>` with no img/svg; height is determined by font size (WCAG 2.2 height exception applies). + +| URL | # | Tag | Name / Label | Width (px) | Height (px) | Text link | ≥24×24 (AA) | +| --- | --- | --- | --- | --- | --- | --- | --- | +| http://localhost:8000/?theme=clean | 1 | a | Skip to main content | 174 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 2 | a | Home | 69 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 3 | button | About us | 119 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 4 | button | Info for | 102 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 5 | button | Learn | 89 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 6 | a | Journals | 96 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 7 | button | News | 86 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 8 | a | Journals | 96 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 9 | button | Repositories | 153 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 10 | a | Contact | 87 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 11 | a | Log in | 51 | 74 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 12 | a | Register | 93 | 54 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 13 | a | Zygon: Journal of Religion and Science f | 1075 | 71 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 14 | button | Previous | 165 | 492 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 15 | button | Next | 165 | 492 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 16 | button | Play | 29 | 31 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 17 | button | Pause | 30 | 31 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 18 | a | 19: Interdisciplinary Studies in the Lon | 116 | 202 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 19 | a | ASIANetwork Exchange A Journal for Asian | 116 | 230 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 20 | a | Architectural Histories | 116 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 21 | a | C21 Literature: Journal of 21st-Century | 116 | 173 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 22 | a | Digital Medievalist | 116 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 23 | a | Digital Studies / Le champ numérique | 116 | 115 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 24 | a | Ethnologia Europaea | 116 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 25 | a | Genealogy+Critique | 116 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 26 | a | Glossa: a journal of general linguistics | 116 | 115 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 27 | a | Journal of British and Irish Innovative | 116 | 144 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 28 | a | Journal of Embodied Research | 116 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 29 | a | Marvell Studies | 116 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 30 | a | Open Library of Humanities | 116 | 115 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 31 | a | Open Screens | 116 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 32 | a | Orbit: A Journal of American Literature | 116 | 115 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 33 | a | Pynchon Notes | 116 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 34 | a | Quaker Studies | 116 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 35 | a | The Comics Grid: Journal of Comics Schol | 116 | 202 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 36 | a | The Parish Review: Journal of Flann O'Br | 116 | 173 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 37 | a | Theoretical Roman Archaeology Journal | 116 | 115 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 38 | a | Zeitschrift für Fantastikforschung | 116 | 115 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 39 | a | Programme now live. | 535 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 40 | a | Twitter | 65 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 41 | a | Facebook | 92 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 42 | a | Mailing List | 104 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 43 | a | Privacy Policy | 104 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 44 | a | Sitemap | 64 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 45 | a | Contact | 61 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 46 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=clean | 47 | a | Log in | 50 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 1 | a | Skip to main content | 171 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 2 | a | Home | 67 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 3 | button | About us | 110 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 4 | button | Info for | 97 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 5 | button | Learn | 82 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 6 | a | Journals | 87 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 7 | button | News | 82 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 8 | a | Journals | 87 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 9 | button | Repositories | 140 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 10 | a | Contact | 84 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 11 | a | Log in | 80 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 12 | a | Register | 105 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 13 | a | Twitter | 70 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 14 | a | Facebook | 90 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 15 | a | Mailing List | 105 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 16 | a | Privacy Policy | 102 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 17 | a | Sitemap | 63 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 18 | a | Contact | 62 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 19 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=clean | 20 | a | Log in | 47 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 1 | a | Skip to main content | 171 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 2 | a | Home | 67 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 3 | button | About us | 110 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 4 | button | Info for | 97 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 5 | button | Learn | 82 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 6 | a | Journals | 87 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 7 | button | News | 82 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 8 | a | Journals | 87 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 9 | button | Repositories | 140 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 10 | a | Contact | 84 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 11 | a | Log in | 80 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 12 | a | Register | 105 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 13 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 14 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 15 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 16 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 17 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 18 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 19 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 20 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 21 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 22 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 23 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 24 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 25 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 26 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 27 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 28 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 29 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 30 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 31 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 32 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 33 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 34 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 35 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 36 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 37 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 38 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 39 | a | Submit (external link, opens in new tab) | 90 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 40 | a | View (external link, opens in new tab). | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 41 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 42 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 43 | a | Volumes | 86 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 44 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 45 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 46 | a | Issues | 69 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 47 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 48 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 49 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 50 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 51 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 52 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 53 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 54 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 55 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 56 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 57 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 58 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 59 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 60 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 61 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 62 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 63 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 64 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 65 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 66 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 67 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 68 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 69 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 70 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 71 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 72 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 73 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 74 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 75 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 76 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 77 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 78 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 79 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 80 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 81 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 82 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 83 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 84 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 85 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 86 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 87 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 88 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 89 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 90 | a | Issues | 69 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 91 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 92 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 93 | a | Issues | 69 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 94 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 95 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 96 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 97 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 98 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 99 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 100 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 101 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 102 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 103 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 104 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 105 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 106 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 107 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 108 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 109 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 110 | a | Submit | 76 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 111 | a | View | 62 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 112 | a | Current Issue | 121 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 113 | input | Start typing to filter. | 217 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 114 | a | Twitter | 70 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 115 | a | Facebook | 90 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 116 | a | Mailing List | 105 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 117 | a | Privacy Policy | 102 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 118 | a | Sitemap | 63 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 119 | a | Contact | 62 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 120 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=clean | 121 | a | Log in | 47 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 1 | a | Skip to main content | 171 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 2 | a | Home | 67 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 3 | button | About us | 110 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 4 | button | Info for | 97 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 5 | button | Learn | 82 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 6 | a | Journals | 87 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 7 | button | News | 82 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 8 | a | Journals | 87 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 9 | button | Repositories | 140 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 10 | a | Contact | 84 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 11 | a | Log in | 80 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 12 | a | Register | 105 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 13 | select | Caroline Edwards, Executive DirectorAndy | 595 | 27 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 14 | input | email | 217 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 15 | input | text | 217 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 16 | textarea | (no name) | 422 | 294 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 17 | input | text | 67 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 18 | button | Send Message | 135 | 35 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 19 | a | Twitter | 70 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 20 | a | Facebook | 90 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 21 | a | Mailing List | 105 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 22 | a | Privacy Policy | 102 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 23 | a | Sitemap | 63 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 24 | a | Contact | 62 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 25 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=clean | 26 | a | Log in | 47 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 11 | a | 'Grasp All, Lose All': Raising Awareness | 313 | 80 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 12 | a | 'Unity in Diversity': Centralised Britis | 313 | 80 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 13 | input | Search term | 960 | 50 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 14 | input | submit | 77 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 15 | a | The Public Curatorship of the Medieval P | 760 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 16 | button | Previous | 165 | 492 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 17 | button | Next | 165 | 492 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 18 | button | Play | 29 | 31 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 19 | button | Pause | 30 | 31 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 20 | a | Special Collections | 146 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 21 | a | Special Collections | 146 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 22 | a | how to apply | 100 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 23 | a | random news | 144 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 24 | a | title after previous disappeared | 330 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 25 | a | adsfadfasfdasfdasfdsa | 232 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 26 | a | fadsfdsafdasfdafdas | 210 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 27 | a | dfafdsa | 78 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 28 | a | The Public Curatorship of the Medieval P | 651 | 41 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 29 | a | Volume 10 • Issue 2 • 2024 | 223 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 30 | a | Special Collection: The Public Curatorsh | 482 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 31 | a | Implementing Linked Art in a Multi-Modal | 877 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 32 | a | Volume 10 • Issue 2 • 2024 | 223 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 33 | a | Special Collection: Cultural Heritage Da | 885 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 34 | a | Tim Renkow’s Jerk: Cringe Comedy, Disabi | 792 | 42 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 35 | a | Volume 10 • Issue 2 • 2024 | 223 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 36 | a | Special Collection: Humour as a Human Ri | 355 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 37 | a | Non amabam Litteras Graecas. Note sulla | 313 | 128 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 38 | a | DEV: Evaluation of Fresh and Frozen Beef | 313 | 80 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 39 | a | Might a Sense of Place Approach Help the | 313 | 80 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 40 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 41 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 42 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 43 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=clean | 44 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 11 | button | × Close message | 16 | 24 | :x: | :x: | +| http://localhost:8000/olh/accessibility/?theme=clean | 12 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 13 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 14 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 15 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=clean | 16 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 11 | select | Dr Caroline Edwards, Co-Editor-in-Chief | 723 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 12 | input | Your contact email address | 723 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 13 | input | Subject | 723 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 14 | textarea | Your message | 723 | 254 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 15 | input | Answer this question: | 723 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 16 | button | Send Message | 133 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 17 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 18 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 19 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 20 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=clean | 21 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 11 | a | Person 2537 Family 2537's website | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 12 | a | Person 2537 Family 2537's twitter profile | 76 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 13 | a | Person 2537 Family 2537's linkedin profile | 85 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 14 | a | Caroline Edwards's website | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 15 | a | Caroline Edwards's twitter profile | 76 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 16 | a | Simon Everett's twitter profile | 76 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 17 | a | Person 23281 Family 23281's github profile | 75 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 18 | a | Caroline Edwards's website | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 19 | a | Caroline Edwards's twitter profile | 76 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 20 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 21 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 22 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 23 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=clean | 24 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 11 | input | Search term | 305 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 12 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/search/?theme=clean | 13 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/search/?theme=clean | 14 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/search/?theme=clean | 15 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/search/?theme=clean | 16 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/search/?theme=clean | 17 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/search/?theme=clean | 18 | select | Relevance Titles A-Z Titles Z-A Newest O | 305 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 19 | button | Filter | 62 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 20 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 21 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 22 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 23 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=clean | 24 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 11 | a | Open Library of Humanities | 206 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 12 | a | Special Collections | 146 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 13 | a | how to apply | 100 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 14 | a | CLOCKSS | 80 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 15 | a | Open Library of Humanities Special Colle | 348 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 16 | a | Special Collections | 146 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 17 | a | international library consortium | 233 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 18 | a | publisher's policy | 135 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 19 | a | CiteScore on Scopus | 160 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 20 | a | Focus and Scope | 133 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 21 | a | Publication Frequency | 169 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 22 | a | Publication Fees | 127 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 23 | a | Citation Metrics | 122 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 24 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 25 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 26 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 27 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=clean | 28 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 11 | a | Special Collections | 156 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 12 | a | Submissions | 100 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 13 | a | Language and Text | 145 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 14 | a | Data and Symbols | 140 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 15 | a | Figures and Tables | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 16 | a | References | 90 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 17 | a | ensuring an anonymous review | 232 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 18 | a | . | 12 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 19 | a | How to Declare Competing Interests | 270 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 20 | a | Declaration of Helsinki | 171 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 21 | a | here | 40 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 22 | a | Bureau International des Poids et Mesure | 313 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 23 | a | document | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 24 | a | https://www.theguardian.com/world/2020/s | 793 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 25 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 26 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 27 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 28 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=clean | 29 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 11 | a | Editorial Oversight | 141 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 12 | a | Peer Review Process | 159 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 13 | a | Organisation and Governance | 223 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 14 | a | Business Practices | 145 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 15 | a | Preprint Policy | 113 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 16 | a | Conduct and Expected Behaviour | 250 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 17 | a | OLHJ Special Collections | 191 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 18 | a | Consortium for the Humanities and Arts S | 443 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 19 | a | Committee on Publication Ethics | 243 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 20 | a | ‘Responsibilities of Reviewers’ | 226 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 21 | a | Publication Ethics and Malpractice State | 336 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 22 | a | Janeway | 71 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 23 | a | editorial board | 113 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 24 | a | editorial team | 107 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 25 | a | Library Partnership Subsidy | 208 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 26 | a | About | 52 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 27 | a | Library Partnership Subsidy | 208 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 28 | a | Publication Ethics and Malpractice State | 341 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 29 | a | Contact | 66 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 30 | a | directly with the publisher | 195 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 31 | a | ‘Publication Ethics and Malpractice Stat | 346 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 32 | a | best practice guidelines by COPE | 249 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 33 | a | Ethics Policies | 112 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 34 | a | Special Collections | 146 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 35 | a | Editorial Oversight | 141 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 36 | a | Peer Review Process | 159 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 37 | a | Organisation and Governance | 223 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 38 | a | Business Practices | 145 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 39 | a | Preprint Policy | 113 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 40 | a | Conduct and Expected Behaviour | 250 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 41 | a | OLHJ Special Collections | 190 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 42 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 43 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 44 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 45 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=clean | 46 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 11 | a | Special Collections | 156 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 12 | a | Author Guidelines | 137 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 13 | a | Register | 86 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 14 | a | Log in | 70 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 15 | a | Author Guidelines | 137 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 16 | a | how to declare competing interests | 263 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 17 | a | ensuring an anonymous review | 232 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 18 | a | . | 12 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=clean | 19 | a | Creative Commons Attribution License | 286 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 20 | a | Creative Commons License | 206 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 21 | a | The Effect of Open Access | 201 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 22 | a | Journal Policies | 121 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 23 | a | CC BY 4.0 (external link, opens in new t | 95 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=clean | 24 | a | test html (external link, opens in new t | 88 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=clean | 25 | a | international library consortium | 233 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 26 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 27 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 28 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 29 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=clean | 30 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 11 | a | ( items) | 273 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 12 | a | Volume 10, Issue 2, 2024 (3 items) | 273 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 13 | a | Volume 11, 2024 (11 items) | 208 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 14 | a | Volume 10, Issue 1, 2024 (15 items) | 278 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 15 | a | Volume 9, Issue 2, 2023 (15 items) | 273 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 16 | a | Volume 9, Issue 1, 2023 (10 items) | 271 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 17 | a | Volume 8, Issue 2, 2022 (13 items) | 273 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 18 | a | Volume 8, Issue 1, 2022 (25 items) | 272 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 19 | a | Volume 7, Issue 2, 2021 (15 items) | 269 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 20 | a | Volume 7, Issue 1, 2021 (12 items) | 267 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 21 | a | Volume 6, Issue 2, 2020 (31 items) | 273 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 22 | a | Volume 6, Issue 1, 2020 (25 items) | 273 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 23 | a | Volume 5, Issue 1, 2019 (70 items) | 270 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 24 | a | Volume 4, Issue 2, 2018 (43 items) | 274 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 25 | a | Volume 4, Issue 1, 2018 (37 items) | 270 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 26 | a | Volume 3, Issue 2, 2017 (16 items) | 270 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 27 | a | Volume 3, Issue 1, 2017 (12 items) | 267 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 28 | a | Volume 2, Issue 2, 2016 (4 items) | 264 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 29 | a | Volume 2, Issue 1, 2016 (16 items) | 268 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 30 | a | Volume 1, Issue 1, 2015 (10 items) | 266 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 31 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 32 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 33 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 34 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=clean | 35 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 11 | a | An Intimate Encounter: Negotiating Subti | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 12 | a | Volume 2 • Issue 1 • 2016 • e1 | 243 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 13 | a | The Covent Garden Old Price Riots: Prote | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 14 | a | Volume 2 • Issue 1 • 2016 • e4 | 245 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 15 | a | Inhabiting Heritage: Living with the Pas | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 16 | a | Volume 2 • Issue 1 • 2016 • e8 | 245 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 17 | a | Opening the Black Box of Scholarly Commu | 562 | 127 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 18 | a | Volume 2 • Issue 1 • 2016 • e10 | 252 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 19 | a | The Importance of Numa Pompilius: A Reco | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 20 | a | Volume 2 • Issue 1 • 2016 • e16 | 252 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 21 | a | Toward a Fungible Scrip: Orestes Brownso | 562 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 22 | a | Volume 2 • Issue 1 • 2016 • e2 | 245 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 23 | a | Special Collection: American Literature | 546 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 24 | a | The ‘Illimitable Dominion’ of Charles Di | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 25 | a | Volume 2 • Issue 1 • 2016 • e7 | 244 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 26 | a | Special Collection: American Literature | 546 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 27 | a | Healing Gods, Heroes and Rituals in the | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 28 | a | Volume 2 • Issue 1 • 2016 • e14 | 253 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 29 | a | Special Collection: Healing Gods, Heroes | 570 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 30 | a | Goddesses as Consorts of the Healing God | 562 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 31 | a | Volume 2 • Issue 1 • 2016 • e5 | 245 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 32 | a | Special Collection: Healing Gods, Heroes | 570 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 33 | a | Asclepius’ Myths and Healing Narratives: | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 34 | a | Volume 2 • Issue 1 • 2016 • e6 | 245 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 35 | a | Special Collection: Healing Gods, Heroes | 570 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 36 | a | From Textual Reception to Textual Codifi | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 37 | a | Volume 2 • Issue 1 • 2016 • e9 | 245 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 38 | a | Special Collection: Healing Gods, Heroes | 570 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 39 | a | The Fate of a Healing Goddess: Ocular Pa | 562 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 40 | a | Volume 2 • Issue 1 • 2016 • e13 | 252 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 41 | a | Special Collection: Healing Gods, Heroes | 570 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 42 | a | Metaphors of Collecting in Late Nineteen | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 43 | a | Volume 2 • Issue 1 • 2016 • e15 | 252 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 44 | a | Special Collection: Mnemosyne | 254 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 45 | a | Putting Business at the Heart of Higher | 562 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 46 | a | Volume 2 • Issue 1 • 2016 • e3 | 245 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 47 | a | Special Collection: The Abolition of the | 384 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 48 | a | Dismantling the Curriculum in Higher Edu | 544 | 41 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 49 | a | Volume 2 • Issue 1 • 2016 • e11 | 250 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 50 | a | Special Collection: The Abolition of the | 384 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 51 | a | Correction: Opening the Black Box of Sch | 562 | 127 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 52 | a | Volume 2 • Issue 1 • 2016 • e12 | 252 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 53 | a | 1 | 33 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 54 | a | Volume 10, Issue 2, 2024 | 204 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 55 | a | Volume 11, 2024 | 134 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 56 | a | Volume 10, Issue 1, 2024 | 202 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 57 | a | Volume 9, Issue 2, 2023 | 197 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 58 | a | Volume 9, Issue 1, 2023 | 195 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 59 | a | Volume 8, Issue 2, 2022 | 196 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 60 | a | Volume 8, Issue 1, 2022 | 194 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 61 | a | Volume 7, Issue 2, 2021 | 193 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 62 | a | Volume 7, Issue 1, 2021 | 191 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 63 | a | Volume 6, Issue 2, 2020 | 197 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 64 | a | Volume 6, Issue 1, 2020 | 195 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 65 | a | Volume 5, Issue 1, 2019 | 192 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 66 | a | Volume 4, Issue 2, 2018 | 195 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 67 | a | Volume 4, Issue 1, 2018 | 193 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 68 | a | Volume 3, Issue 2, 2017 | 193 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 69 | a | Volume 3, Issue 1, 2017 | 191 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 70 | a | Volume 2, Issue 2, 2016 | 194 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 71 | a | Volume 2, Issue 1, 2016 | 192 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 72 | a | Volume 1, Issue 1, 2015 | 189 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 73 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 74 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 75 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 76 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=clean | 77 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 11 | a | Equivocationary Horseshit: Post-Correlat | 562 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 12 | a | Volume 6 • Issue 1 • 2020 • 8 | 239 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 13 | a | ‘World Now Thou Seest What Tis to Be a W | 562 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 14 | a | Volume 6 • Issue 1 • 2020 • 20 | 248 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 15 | a | Cartoon Controversies at the European Co | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 16 | a | Volume 6 • Issue 1 • 2020 • 22 | 248 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 17 | a | Umbanda: Africana or Esoteric? | 350 | 41 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 18 | a | Volume 6 • Issue 1 • 2020 • 25 | 248 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 19 | a | Bureaucracy and Desire: Franz Kafka’s Ac | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 20 | a | Volume 6 • Issue 1 • 2020 • 5 | 239 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 21 | a | Special Collection: Literature, Law and | 418 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 22 | a | The Transference and the Case of Sacco a | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 23 | a | Volume 6 • Issue 1 • 2020 • 6 | 239 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 24 | a | Special Collection: Literature, Law and | 418 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 25 | a | The ‘Reasonable Man’ in Colonial Nigeria | 453 | 41 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 26 | a | Volume 6 • Issue 1 • 2020 • 7 | 238 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 27 | a | Special Collection: Literature, Law and | 418 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 28 | a | Where Do I Put It? James Joyce’s Buck Mu | 562 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 29 | a | Volume 6 • Issue 1 • 2020 • 9 | 239 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 30 | a | Special Collection: Literature, Law and | 418 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 31 | a | Justice Denied: Literary, Legal and Psyc | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 32 | a | Volume 6 • Issue 1 • 2020 • 14 | 246 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 33 | a | Special Collection: Literature, Law and | 418 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 34 | a | ‘Between Law and Transgression: Literatu | 562 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 35 | a | Volume 6 • Issue 1 • 2020 • 17 | 245 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 36 | a | Special Collection: Literature, Law and | 418 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 37 | a | ‘What I was told about lesbians really d | 562 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 38 | a | Volume 6 • Issue 1 • 2020 • 4 | 239 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 39 | a | Special Collection: Pride Revisited: Cin | 540 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 40 | a | Performing Pride: Re-enactment, Queer Id | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 41 | a | Volume 6 • Issue 1 • 2020 • 24 | 248 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 42 | a | Special Collection: Pride Revisited: Cin | 540 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 43 | a | VPIP: A Lexical Identification Procedure | 562 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 44 | a | Volume 6 • Issue 1 • 2020 • 18 | 246 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 45 | a | Special Collection: The Language of Pers | 377 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 46 | a | John Rodker on Theatre: Rethinking the M | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 47 | a | Volume 6 • Issue 1 • 2020 • 3 | 239 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 48 | a | Special Collection: The Working-Class Av | 399 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 49 | a | ‘Barbaric Peoples of the Earth’: The Ava | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 50 | a | Volume 6 • Issue 1 • 2020 • 10 | 246 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 51 | a | Special Collection: The Working-Class Av | 399 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 52 | a | Erotic Class Masquerade: Sex and Working | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 53 | a | Volume 6 • Issue 1 • 2020 • 13 | 246 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 54 | a | Special Collection: The Working-Class Av | 399 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 55 | a | Black Country Dionysus —Archie Hill and | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 56 | a | Volume 6 • Issue 1 • 2020 • 23 | 248 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 57 | a | Special Collection: The Working-Class Av | 399 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 58 | a | Les Artistes du Groupe de Calcutta (1943 | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 59 | a | Volume 6 • Issue 1 • 2020 • 1 | 236 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 60 | a | Special Collection: Encounters between A | 570 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 61 | a | Duchamp et la Chine | 231 | 41 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 62 | a | Volume 6 • Issue 1 • 2020 • 11 | 243 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 63 | a | Special Collection: Encounters between A | 570 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 64 | a | Imitation et Réciprocité dans la Créatio | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 65 | a | Volume 6 • Issue 1 • 2020 • 16 | 246 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 66 | a | Special Collection: Encounters between A | 570 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 67 | a | Nationed Silences, Interventions and (Di | 562 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 68 | a | Volume 6 • Issue 1 • 2020 • 12 | 246 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 69 | a | Special Collection: Writers and Intellec | 570 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 70 | a | ‘It aye like London, you know’: The Brex | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 71 | a | Volume 6 • Issue 1 • 2020 • 15 | 246 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 72 | a | Special Collection: Writers and Intellec | 570 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 73 | a | Gibraltarian Hauntologies: Spectres of C | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 74 | a | Volume 6 • Issue 1 • 2020 • 19 | 246 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 75 | a | Special Collection: Writers and Intellec | 570 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 76 | a | Scottish Internationalisms at the 1938 E | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 77 | a | Volume 6 • Issue 1 • 2020 • 21 | 246 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 78 | a | Special Collection: Writers and Intellec | 570 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 79 | a | Introduction to the Authors, Narratives, | 562 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 80 | a | Volume 6 • Issue 1 • 2020 • 2 | 239 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 81 | a | Special Collection: Authors, Narratives, | 570 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 82 | a | 1 | 33 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 83 | a | Volume 10, Issue 2, 2024 | 204 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 84 | a | Volume 11, 2024 | 134 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 85 | a | Volume 10, Issue 1, 2024 | 202 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 86 | a | Volume 9, Issue 2, 2023 | 197 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 87 | a | Volume 9, Issue 1, 2023 | 195 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 88 | a | Volume 8, Issue 2, 2022 | 196 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 89 | a | Volume 8, Issue 1, 2022 | 194 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 90 | a | Volume 7, Issue 2, 2021 | 193 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 91 | a | Volume 7, Issue 1, 2021 | 191 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 92 | a | Volume 6, Issue 2, 2020 | 197 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 93 | a | Volume 6, Issue 1, 2020 | 195 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 94 | a | Volume 5, Issue 1, 2019 | 192 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 95 | a | Volume 4, Issue 2, 2018 | 195 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 96 | a | Volume 4, Issue 1, 2018 | 193 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 97 | a | Volume 3, Issue 2, 2017 | 193 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 98 | a | Volume 3, Issue 1, 2017 | 191 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 99 | a | Volume 2, Issue 2, 2016 | 194 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 100 | a | Volume 2, Issue 1, 2016 | 192 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 101 | a | Volume 1, Issue 1, 2015 | 189 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 102 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 103 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 104 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 105 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=clean | 106 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 11 | button | × Close message | 16 | 24 | :x: | :x: | +| http://localhost:8000/olh/collections/?theme=clean | 12 | button | × Close message | 16 | 24 | :x: | :x: | +| http://localhost:8000/olh/collections/?theme=clean | 13 | button | × Close message | 16 | 24 | :x: | :x: | +| http://localhost:8000/olh/collections/?theme=clean | 14 | a | Humour as a Human Right | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 15 | a | Cultural Heritage Data for Research: Ope | 278 | 173 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 16 | a | Caliban's Mirror: Reflections of James J | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 17 | a | Cultural Representations of Machine Visi | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 18 | a | The Public Curatorship of the Medieval P | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 19 | a | Medieval Minds and Matter | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 20 | a | Representing the Medieval in Popular Cul | 278 | 115 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 21 | a | The Politics and History of Menstruation | 278 | 144 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 22 | a | Production Archives 03: Archival Practic | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 23 | a | Production Archives 02: Production Conte | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 24 | a | Production Archives 01: Puppets for Acti | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 25 | a | Representing Classical Music in the Twen | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 26 | a | The Pathological Body: European Literary | 278 | 144 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 27 | a | Binary Modernisms: Re/Appropriations of | 278 | 115 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 28 | a | Local and Universal in Irish Literature | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 29 | a | Reading in Ruins: Exploring Posthumanist | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 30 | a | The Language of Perspective | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 31 | a | Nancy Astor, Public Women and Gendered P | 278 | 115 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 32 | a | The Working-Class Avant-Garde | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 33 | a | Colonialities in Dispute: Discourses on | 278 | 115 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 34 | a | Powering the Future: Energy Resources in | 278 | 115 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 35 | a | Writers and Intellectuals on Britain and | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 36 | a | Literature, Law and Psychoanalysis | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 37 | a | Muslims in the Media | 278 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 38 | a | Encounters between Asian and Western Art | 278 | 144 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 39 | a | Waste: Disposability, Decay, and Depleti | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 40 | a | Pride Revisited: Cinema, Activism and Re | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 41 | a | New Approaches to Late Medieval Court Re | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 42 | a | Utopian Art and Literature from Modern I | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 43 | a | Right-Wing Populism and Mediated Activis | 278 | 115 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 44 | a | Representing Climate: Local to Global | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 45 | a | Cultivating Spheres: Agriculture, Techni | 278 | 115 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 46 | a | Freedom After Neoliberalism | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 47 | a | The Medieval Brain | 278 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 48 | a | Remaking Collections | 278 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 49 | a | New Approaches to Medieval Water Studies | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 50 | a | Imaginaries of the Future 01: Bodies and | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 51 | a | Imaginaries of the Future 02: Politics, | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 52 | a | Imaginaries of the Future 03: Utopia at | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 53 | a | Postcolonial Perspectives in Game Studie | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 54 | a | Station Eleven and Twenty-First-Century | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 55 | a | #Agreement20 | 278 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 56 | a | What’s Left? Marxism, Literature and Cul | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 57 | a | New Voices in Jewish-American Literature | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 58 | a | Authors, Narratives, and Audiences in Me | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 59 | a | From TV To Film | 278 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 60 | a | American Literature & the Transnational | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 61 | a | Mnemosyne | 278 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 62 | a | Healing Gods, Heroes and Rituals in the | 278 | 86 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 63 | a | The Abolition of the University | 278 | 58 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 64 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 65 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 66 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 67 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=clean | 68 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 11 | a | Borders, Burials, and the Extended Mind | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 12 | a | Volume 9 • Issue 1 • 2023 | 214 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 13 | a | Special Collection: Medieval Minds and M | 361 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 14 | a | Playing with the Mind: Magic Tricks in L | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 15 | a | Volume 9 • Issue 2 • 2023 | 216 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 16 | a | Special Collection: Medieval Minds and M | 361 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 17 | a | (Un)staþolfæstnes and its Problems: Grou | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 18 | a | Volume 9 • Issue 2 • 2023 | 216 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 19 | a | Special Collection: Medieval Minds and M | 361 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 20 | a | Does the Mind Suffer? Living Bodies, Bra | 562 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 21 | a | Volume 9 • Issue 2 • 2023 | 216 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 22 | a | Special Collection: Medieval Minds and M | 361 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 23 | a | Anhyld þinre heortan eare: Mind as Body | 562 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 24 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 25 | a | Special Collection: Medieval Minds and M | 361 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 26 | a | 1 | 33 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 27 | a | Humour as a Human Right | 198 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 28 | a | Cultural Heritage Data for Research: Ope | 315 | 104 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 29 | a | Caliban's Mirror: Reflections of James J | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 30 | a | Cultural Representations of Machine Visi | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 31 | a | The Public Curatorship of the Medieval P | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 32 | a | Medieval Minds and Matter | 204 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 33 | a | Representing the Medieval in Popular Cul | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 34 | a | The Politics and History of Menstruation | 315 | 80 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 35 | a | Production Archives 03: Archival Practic | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 36 | a | Production Archives 02: Production Conte | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 37 | a | Production Archives 01: Puppets for Acti | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 38 | a | Representing Classical Music in the Twen | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 39 | a | The Pathological Body: European Literary | 315 | 80 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 40 | a | Binary Modernisms: Re/Appropriations of | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 41 | a | Local and Universal in Irish Literature | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 42 | a | Reading in Ruins: Exploring Posthumanist | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 43 | a | The Language of Perspective | 220 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 44 | a | Nancy Astor, Public Women and Gendered P | 315 | 80 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 45 | a | The Working-Class Avant-Garde | 242 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 46 | a | Colonialities in Dispute: Discourses on | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 47 | a | Powering the Future: Energy Resources in | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 48 | a | Writers and Intellectuals on Britain and | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 49 | a | Literature, Law and Psychoanalysis | 261 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 50 | a | Muslims in the Media | 161 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 51 | a | Encounters between Asian and Western Art | 315 | 80 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 52 | a | Waste: Disposability, Decay, and Depleti | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 53 | a | Pride Revisited: Cinema, Activism and Re | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 54 | a | New Approaches to Late Medieval Court Re | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 55 | a | Utopian Art and Literature from Modern I | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 56 | a | Right-Wing Populism and Mediated Activis | 315 | 80 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 57 | a | Representing Climate: Local to Global | 279 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 58 | a | Cultivating Spheres: Agriculture, Techni | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 59 | a | Freedom After Neoliberalism | 215 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 60 | a | The Medieval Brain | 146 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 61 | a | Remaking Collections | 164 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 62 | a | New Approaches to Medieval Water Studies | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 63 | a | Imaginaries of the Future 01: Bodies and | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 64 | a | Imaginaries of the Future 02: Politics, | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 65 | a | Imaginaries of the Future 03: Utopia at | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 66 | a | Postcolonial Perspectives in Game Studie | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 67 | a | Station Eleven and Twenty-First-Century | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 68 | a | #Agreement20 | 116 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 69 | a | What’s Left? Marxism, Literature and Cul | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 70 | a | New Voices in Jewish-American Literature | 313 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 71 | a | Authors, Narratives, and Audiences in Me | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 72 | a | From TV To Film | 125 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 73 | a | American Literature & the Transnational | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 74 | a | Mnemosyne | 96 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 75 | a | Healing Gods, Heroes and Rituals in the | 315 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 76 | a | The Abolition of the University | 227 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 77 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 78 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 79 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 80 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=clean | 81 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 11 | a | Read More | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 12 | a | Read More | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 13 | a | Read More | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 14 | a | Read More | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 15 | a | Read More | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 16 | a | Read More | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 17 | a | Read More | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 18 | a | Read More | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 19 | a | Read More | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 20 | a | Read More | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 21 | a | Read More | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 22 | a | Read More | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 23 | a | current page1 | 33 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 24 | a | page2 | 35 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 25 | a | » next page | 36 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 26 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 27 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 28 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 29 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=clean | 30 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 11 | button | × Close message | 16 | 24 | :x: | :x: | +| http://localhost:8000/olh/news/429/?theme=clean | 12 | a | OLH Special Collections | 146 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 13 | a | OLH Special Collections | 182 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 14 | a | Digital Humanities | 139 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 15 | a | Back to News List | 129 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/429/?theme=clean | 16 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 17 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 18 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 19 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=clean | 20 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 11 | select | Newest Oldest Titles A-Z Titles Z-A Auth | 209 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 12 | a | 'Unity in Diversity': Centralised Britis | 563 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 13 | a | Volume 8 • Issue 1 • 2022 | 213 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 14 | a | Special Collection: The Working-Class Av | 399 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 15 | a | Tim Renkow’s Jerk: Cringe Comedy, Disabi | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 16 | a | Volume 10 • Issue 2 • 2024 | 223 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 17 | a | Special Collection: Humour as a Human Ri | 355 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 18 | a | The Public Curatorship of the Medieval P | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 19 | a | Volume 10 • Issue 2 • 2024 | 223 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 20 | a | Special Collection: The Public Curatorsh | 482 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 21 | a | Implementing Linked Art in a Multi-Modal | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 22 | a | Volume 10 • Issue 2 • 2024 | 223 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 23 | a | Special Collection: Cultural Heritage Da | 571 | 80 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 24 | a | Semantic Instability and Philosophical P | 563 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 25 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 26 | a | Special Collection: Caliban's Mirror: Re | 571 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 27 | a | Might a Sense of Place Approach Help the | 563 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 28 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 29 | a | Special Collection: The Public Curatorsh | 482 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 30 | a | Christoph Schlingensief im Spannungsfeld | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 31 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 32 | a | Special Collection: Production Archives | 491 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 33 | a | A Politics of Working-Class Culture and | 563 | 127 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 34 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 35 | a | Special Collection: The Working-Class Av | 399 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 36 | a | As Camp as a Row of Pink Tents: Stephen’ | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 37 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 38 | a | Special Collection: Caliban's Mirror: Re | 571 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 39 | a | Henry Moore: Neo-Working-Classicist | 424 | 41 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 40 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 41 | a | Special Collection: The Working-Class Av | 399 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 42 | a | Mimesis, Diegesis, and Narrative Frames: | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 43 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 44 | a | Special Collection: Local and Universal | 520 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 45 | a | Exile and Exodus: Dante, Wilde, Joyce | 412 | 41 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 46 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 47 | a | Special Collection: Caliban's Mirror: Re | 571 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 48 | a | James Joyce, Oscar Wilde, and Punitive C | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 49 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 50 | a | Special Collection: Caliban's Mirror: Re | 571 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 51 | a | Island Girl, Universal Woman: Peig: A Sc | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 52 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 53 | a | Special Collection: Local and Universal | 520 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 54 | a | The Illusion of Accuracy: Simulating the | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 55 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 56 | a | Special Collection: The Public Curatorsh | 482 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 57 | a | Moments of Being-in-the-Archive | 376 | 41 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 58 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 59 | a | Special Collection: Production Archives | 473 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 60 | a | Gesamtkunstwerk Transcriptions in the Po | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 61 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 62 | a | Special Collection: Production Archives | 491 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 63 | a | Anhyld þinre heortan eare: Mind as Body | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 64 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 65 | a | Special Collection: Medieval Minds and M | 361 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 66 | a | The Symbiosis of Language(s), Literature | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 67 | a | Volume 10 • Issue 1 • 2024 | 221 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 68 | a | Special Collection: The Pathological Bod | 571 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 69 | a | Awesome, but Impractical? Deeper Engagem | 563 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 70 | a | Volume 9 • Issue 2 • 2023 | 216 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 71 | a | Special Collection: The Public Curatorsh | 482 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 72 | a | Does the Mind Suffer? Living Bodies, Bra | 563 | 98 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 73 | a | Volume 9 • Issue 2 • 2023 | 216 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 74 | a | Special Collection: Medieval Minds and M | 361 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 75 | a | Cultural Heritage at Conisbrough Castle: | 563 | 127 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 76 | a | Volume 9 • Issue 2 • 2023 | 216 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 77 | a | Special Collection: The Public Curatorsh | 482 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 78 | a | The Lives Have It: Curating the Medieval | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 79 | a | Volume 9 • Issue 2 • 2023 | 216 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 80 | a | Special Collection: The Public Curatorsh | 482 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 81 | a | Machinic Visibility in Platform Discours | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 82 | a | Volume 9 • Issue 2 • 2023 | 216 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 83 | a | Special Collection: Cultural Representat | 476 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 84 | a | ‘The Substance of Paint’: Class and Mate | 563 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 85 | a | Volume 9 • Issue 2 • 2023 | 216 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 86 | a | Special Collection: The Working-Class Av | 399 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 87 | button | current page 1 | 33 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 88 | button | page 2 | 35 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 89 | button | page 3 | 36 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 90 | button | page 15 | 43 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 91 | button | » next page | 36 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 92 | select | 10 25 50 100 all | 127 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 93 | input | Search term | 305 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 94 | button | Search | 77 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 95 | input | Published after | 305 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 96 | input | Published before | 305 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 97 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 98 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 99 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 100 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 101 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 102 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 103 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 104 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 105 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 106 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 107 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 108 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 109 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 110 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 111 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 112 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 113 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 114 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 115 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 116 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 117 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 118 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 119 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 120 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 121 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 122 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 123 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 124 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 125 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 126 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 127 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 128 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 129 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 130 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 131 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 132 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 133 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 134 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 135 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 136 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 137 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 138 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 139 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 140 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 141 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 142 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 143 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 144 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 145 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 146 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 147 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 148 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 149 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 150 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 151 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 152 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=clean | 153 | button | Apply | 67 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 154 | button | Clear all | 84 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 155 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 156 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 157 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 158 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=clean | 159 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 11 | a | 8346@example.org(compose email, opens in | 175 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 12 | button | decrease text size | 44 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 13 | button | increase text size | 59 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 14 | button | Dyslexia mode | 76 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 15 | a | Saint Augustine-Ancient Greek-Pedagogy- | 637 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 16 | a | D.O.I. for Non amabam Litteras Graecas. Note sulla | 246 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 17 | button | Copy | 112 | 29 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 18 | a | Waquet, 2004: 251–254 | 184 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 19 | a | Canfora and Cardinale, 2012 | 213 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 20 | a | Olivia, 2008: 13 | 121 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 21 | a | Milanese, 2012: 67–82 | 172 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 22 | a | Ricucci, 2012 | 105 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 23 | a | 2014a | 53 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 24 | a | 1975 | 43 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 25 | a | Ricucci, 2013 | 105 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 26 | a | 2014b | 54 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 27 | a | 1 | 14 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 28 | a | 2 | 15 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 29 | a | 3 | 16 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 30 | a | Krashen, 1991 | 110 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 31 | a | Howatt and Smith, 2002 | 184 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 32 | a | Titone, 1987: 5 | 116 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 33 | a | Titone, 1987: 5 | 116 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 34 | a | Howatt, 1984: 284 | 143 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 35 | a | Schulz, 1975 | 100 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 36 | a | Lightbown, 1985 | 129 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 37 | a | Lightbown, 2000 | 131 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 38 | a | Debyser, 1973: 63–68 | 168 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 39 | a | Puren, 1994 | 96 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 40 | a | Serra Borneto, 1998 | 154 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 41 | a | Kumaravadivelu, 1994 | 168 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 42 | a | 2006 | 47 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 43 | a | Celce-murcia, 1980 | 151 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 44 | a | 4 | 16 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 45 | a | Van Patten and Williams, 2005: 25 | 256 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 46 | a | 1994: 45–46 | 102 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 47 | a | 5 | 15 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 48 | a | 6 | 16 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 49 | a | 7 | 15 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 50 | a | Kirwan, 1994: 188 | 138 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 51 | a | 8 | 16 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 52 | a | McLynn, 2005 | 112 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 53 | a | 9 | 16 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 54 | a | 10 | 21 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 55 | a | Bellissima, 1955 | 125 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 56 | a | Collart, 1971 | 97 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 57 | a | Louth, 1989: 151 | 127 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 58 | a | 11 | 19 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 59 | a | 12 | 21 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 60 | a | 13 | 21 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 61 | a | 14 | 21 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 62 | a | 15 | 21 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 63 | a | 16 | 21 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 64 | a | Alfonsi, 1971: 42 | 126 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 65 | a | 17 | 20 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 66 | a | Bonner, 1986: 180–183 | 176 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 67 | a | Neraudau, 1996: 58–59 | 181 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 68 | a | 18 | 21 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 69 | a | 19 | 21 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 70 | a | 20 | 23 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 71 | a | Courcelle, 1943: 142 | 157 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 72 | a | Marrou, 19584: 446 s. | 168 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 73 | a | Solignac, 1962: 667 | 152 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 74 | a | 21 | 21 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 75 | a | 22 | 22 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 76 | a | 23 | 23 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 77 | a | 24 | 23 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 78 | a | 25 | 23 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 79 | a | 26 | 23 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 80 | a | 27 | 22 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 81 | a | 28 | 23 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 82 | a | 29 | 23 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 83 | a | Miraglia 2004: 231–234 | 181 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 84 | a | Green, 1951 | 94 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 85 | a | Adams, 2003: 213–245 | 177 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 86 | a | Adams, 2003: 192–194 | 176 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 87 | a | 2010: 531 | 79 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 88 | a | 30 | 23 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 89 | a | 31 | 21 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 90 | a | 32 | 23 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 91 | a | 33 | 23 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 92 | a | Marrou, 1966: 365–366 | 181 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 93 | a | 34 | 23 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 94 | a | Simone, 1969: 106 | 143 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 95 | a | 35 | 23 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 96 | a | Korhonen, 1996: 107 | 157 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 97 | a | Flammini, 1990: 17 | 142 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 98 | a | Tagliaferro, 2008: 68 | 160 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 99 | a | 36 | 23 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 100 | a | 1985: 4 | 63 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 101 | a | 19872: 66–67 | 107 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 102 | a | Cambiano, 1992: 526 | 163 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 103 | a | Sandys, 19102: 235 | 148 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 104 | a | Gallo, 2003: 94 | 120 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 105 | a | 37 | 22 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 106 | a | Dombart and Kalb (ed.) 1960 | 218 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 107 | a | Weigel 1961 | 95 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 108 | a | Martin 1962 | 95 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 109 | a | Verheijen 1991 | 114 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 110 | a | Doignon 1997 | 108 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 111 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 112 | a | Too, 2001 | 79 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 113 | a | Vössing, 2003 | 112 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 114 | a | Pernot, 2008 | 103 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 115 | a | Bellandi and Ferri, 2008 | 181 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 116 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 117 | a | Laes, 2013 | 87 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 118 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 119 | a | Krashen, 1981 | 110 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 120 | a | Krashen and Terrell, 1983 | 193 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 121 | a | Krashen, 2003 | 115 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 122 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 123 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 124 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 125 | a | Lightbown and Spada, 20113: 38 | 243 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 126 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 127 | a | Ando, 1994 | 91 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 128 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 129 | a | Vössing, 1992 | 110 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 130 | a | Vössing, 1997 | 109 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 131 | a | Moretti, 2009 | 107 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 132 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 133 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 134 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 135 | a | Vecchio, 1994 | 111 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 136 | a | Manetti, 1987: 226–227 | 180 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 137 | a | Preti, 1956 | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 138 | a | Baratin, 1981 | 102 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 139 | a | Toom, 2009 | 96 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 140 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 141 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 142 | a | Markus, 1957 | 105 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 143 | a | Jackson, 1969 | 113 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 144 | a | Ruef, 1981 | 83 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 145 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 146 | a | Kirwan, 2001 | 102 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 147 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 148 | a | Henninger, 1989 | 128 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 149 | a | Paffenroth and Hughes, 2000 | 223 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 150 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 151 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 152 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 153 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 154 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 155 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 156 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 157 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 158 | a | Kaimio, 1979: 195–207 | 172 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 159 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 160 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 161 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 162 | a | Debut, 1983 | 97 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 163 | a | Dickey, 2012 | 100 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 164 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 165 | a | 2004: 226–227 | 121 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 166 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 167 | a | Rochette, 2008: 89–90 | 178 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 168 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 169 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 170 | a | Van Patten and Benati, 2010: 43 | 240 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 171 | a | Gardner, 1985: 10 | 136 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 172 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 173 | a | 19762: 323 | 88 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 174 | a | 1997: 126 | 78 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 175 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 176 | a | Pallotti, 20012: 219–220 | 182 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 177 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 178 | a | Diller, 1978: 72 | 115 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 179 | a | Richards and Rodgers, 20012: 9 | 237 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 180 | a | Titone, 1968: 100–101 | 167 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 181 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 182 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 183 | a | Rivers, 1964: 19–20 | 152 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 184 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 185 | a | Moreschini, 1979: 38 s. | 176 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 186 | a | ⮭ | 24 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 187 | a | 3. Agostino: “linguista”, docente e discente 1, Ad | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 188 | a | 3. Agostino: “linguista”, docente e discente 2, Ad | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 189 | a | 3. Agostino: “linguista”, docente e discente, Alfo | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 190 | a | Notes, Ando, 1994 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 191 | a | Notes, Baratin, 1981 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 192 | a | Notes, Bellandi and Ferri, 2008 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 193 | a | 3. Agostino: “linguista”, docente e discente, Bell | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 194 | a | 3. Agostino: “linguista”, docente e discente, Bonn | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 195 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 196 | a | 1. Premessa, Canfora and Cardinale, 2012 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 197 | a | 2. Second Language Acquisition: la posizione di Kr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 198 | a | 3. Agostino: “linguista”, docente e discente, Coll | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 199 | a | 3. Agostino: “linguista”, docente e discente, Cour | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 200 | a | Notes, Debut, 1983 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 201 | a | 2. Second Language Acquisition: la posizione di Kr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 202 | a | Notes, Dickey, 2012 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 203 | a | Notes, Diller, 1978: 72 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 204 | a | Notes, Doignon 1997 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 205 | a | Notes, Dombart and Kalb (ed.) 1960 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 206 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 207 | a | 5. Conclusioni, Gallo, 2003: 94 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 208 | a | Notes, Gardner, 1985: 10 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 209 | a | 3. Agostino: “linguista”, docente e discente, Gree | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 210 | a | Notes, Henninger, 1989 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 211 | a | 2. Second Language Acquisition: la posizione di Kr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 212 | a | 2. Second Language Acquisition: la posizione di Kr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 213 | a | Notes, Jackson, 1969 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 214 | a | Notes, Kaimio, 1979: 195–207 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 215 | a | Notes, 19762: 323 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 216 | a | 3. Agostino: “linguista”, docente e discente, Kirw | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 217 | a | Notes, Kirwan, 2001 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 218 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 219 | a | Notes, Krashen, 1981 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 220 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 221 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 222 | a | 1. Premessa, Krashen, 1991 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 223 | a | 2. Second Language Acquisition: la posizione di Kr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 224 | a | Notes, Krashen, 2003 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 225 | a | Notes, Krashen and Terrell, 1983 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 226 | a | 2. Second Language Acquisition: la posizione di Kr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 227 | a | 2. Second Language Acquisition: la posizione di Kr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 228 | a | Notes, Laes, 2013 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 229 | a | 2. Second Language Acquisition: la posizione di Kr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 230 | a | 2. Second Language Acquisition: la posizione di Kr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 231 | a | Notes, Lightbown and Spada, 20113: 38 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 232 | a | 3. Agostino: “linguista”, docente e discente, Lout | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 233 | a | Notes, Manetti, 1987: 226–227 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 234 | a | Notes, Markus, 1957 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 235 | a | 3. Agostino: “linguista”, docente e discente, Marr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 236 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 237 | a | Notes, Martin 1962 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 238 | a | 3. Agostino: “linguista”, docente e discente, McLy | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 239 | a | 1. Premessa, Milanese, 2012: 67–82 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 240 | a | 3. Agostino: “linguista”, docente e discente | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 241 | a | Notes | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 242 | a | Notes, Moreschini, 1979: 38 s. | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 243 | a | Notes, Moretti, 2009 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 244 | a | 3. Agostino: “linguista”, docente e discente, 2010 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 245 | a | 3. Agostino: “linguista”, docente e discente, Nera | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 246 | a | http://www.treellle.org/files/lll/QA1.pd | 279 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 247 | a | 1. Premessa, Olivia, 2008: 13 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 248 | a | 1. Premessa, 1975 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 249 | a | Notes, Paffenroth and Hughes, 2000 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 250 | a | Notes, Pallotti, 20012: 219–220 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 251 | a | Notes, Pernot, 2008 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 252 | a | Notes, 1997: 126 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 253 | a | Notes, Preti, 1956 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 254 | a | 2. Second Language Acquisition: la posizione di Kr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 255 | a | Notes, Richards and Rodgers, 20012: 9 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 256 | a | 1. Premessa, Ricucci, 2012 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 257 | a | 1. Premessa, Ricucci, 2013 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 258 | a | 1. Premessa, 2014a | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 259 | a | 1. Premessa, 2014b | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 260 | a | Notes, Rivers, 1964: 19–20 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 261 | a | Notes, Rochette, 2008: 89–90 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 262 | a | Notes, Ruef, 1981 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 263 | a | 5. Conclusioni, Sandys, 19102: 235 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 264 | a | 2. Second Language Acquisition: la posizione di Kr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 265 | a | 2. Second Language Acquisition: la posizione di Kr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 266 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 267 | a | 3. Agostino: “linguista”, docente e discente, Soli | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 268 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 269 | a | Notes, Titone, 1968: 100–101 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 270 | a | 2. Second Language Acquisition: la posizione di Kr | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 271 | a | 2. Second Language Acquisition: la posizione di Kr | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 272 | a | Notes, Too, 2001 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 273 | a | Notes, Toom, 2009 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 274 | a | 2. Second Language Acquisition: la posizione di Kr | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 275 | a | Notes, Van Patten and Benati, 2010: 43 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 276 | a | Notes, Vecchio, 1994 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 277 | a | Notes, Verheijen 1991 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 278 | a | Notes, Vössing, 1992 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 279 | a | Notes, Vössing, 1997 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 280 | a | Notes, Vössing, 2003 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 281 | a | 1. Premessa, Waquet, 2004: 251–254 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 282 | a | Notes, Weigel 1961 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 283 | input | text | 183 | 30 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 284 | button | Copy | 112 | 30 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 285 | a | View PDF (opens in new tab). | 93 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 286 | a | PDF (download.) | 70 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 287 | a | XML (download.) | 73 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 288 | a | reuploaded (download.) | 122 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 289 | a | and again reuploaded (download.) | 197 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 290 | a | from olh, actual article for this data ( | 292 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 291 | a | test html in license text (external link | 191 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 292 | a | Link | 38 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 293 | a | https://doi.org/10.16995/olh.6318 | 248 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 294 | button | Harvard-style Citation (opens in popup). | 226 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 295 | button | Vancouver-style Citation (opens in popup | 226 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 296 | button | APA-style Citation (opens in popup). | 226 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 297 | a | RIS (download.) | 226 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 298 | a | BibTeX (download.) | 226 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 299 | a | 1. Premessa | 95 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 300 | a | 2. Second Language Acquisition: la posiz | 355 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 301 | a | 3. Agostino: “linguista”, docente e disc | 317 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 302 | a | 4. Da Agostino a Krashen: la ricerca del | 355 | 56 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 303 | a | 5. Conclusioni | 110 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 304 | a | Competing Interests | 155 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 305 | a | Notes | 51 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 306 | a | References | 90 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 307 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 308 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 309 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 310 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=clean | 311 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 1 | a | Skip to main content | 149 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 2 | a | (no name) | 160 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 3 | button | Articles | 92 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 4 | button | Publish With Us | 154 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 5 | button | Editorial Policies | 160 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 6 | button | About | 79 | 32 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 7 | a | Start Submission | 149 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 8 | a | Become a Reviewer | 166 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 9 | a | Log in | 62 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 10 | a | Register | 81 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 11 | button | × Close message | 16 | 24 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 12 | button | × Close message | 16 | 24 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 13 | button | × Close message | 16 | 24 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 14 | button | × Close message | 16 | 24 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 15 | button | × Close message | 16 | 24 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 16 | button | × Close message | 16 | 24 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 17 | a | 6504@example.org(compose email, opens in | 175 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 18 | button | decrease text size | 44 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 19 | button | increase text size | 59 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 20 | button | Dyslexia mode | 76 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 21 | a | education, | 84 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 22 | a | political economy, | 138 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 23 | a | secular crisis, | 107 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 24 | a | university | 78 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 25 | a | D.O.I. for DEV: Evaluation of Fresh and Frozen Bee | 243 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 26 | button | Copy | 112 | 29 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 27 | a | Iskandar et al., 2019 | 154 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 28 | a | Buckley et al., 1977 | 148 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 29 | a | Pietrasik and Janz, 2009 | 187 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 30 | a | Pietrasik and Janz, 2009 | 187 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 31 | a | Grayson et al., 2014 | 152 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 32 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 33 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 34 | a | Botinestean et al., 2016 | 178 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 35 | a | Zhang et al., 2023 | 141 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 36 | a | Martino and Zaritzky, 1988 | 202 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 37 | a | Grayson et al., 2014 | 152 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 38 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 39 | a | Wheeler et al., 1990 | 153 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 40 | a | Lagerstedt et al., 2008 | 173 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 41 | a | Hergenreder et al., 2013 | 184 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 42 | a | Grayson et al., 2014 | 152 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 43 | a | Hergenreder et al., 2013 | 184 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 44 | a | Grayson et al., 2014 | 152 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 45 | a | 2014 | 44 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 46 | a | 2016 | 44 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 47 | a | 2013 | 44 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 48 | a | Pietrasik and Janz, 2009 | 187 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 49 | a | Figure 1 | 65 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 50 | a | Drey et al., 2019 | 126 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 51 | a | Olson et al., 2019 | 134 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 52 | a | Prill et al., 2019 | 119 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 53 | a | Rice et al., 2019 | 123 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 54 | a | Beyer et al., 2021 | 133 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 55 | a | Farmer et al., 2022 | 145 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 56 | a | AMSA, 2015 | 97 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 57 | a | 2021 | 44 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 58 | a | Drey et al., 2019 | 126 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 59 | a | Olson et al., 2019 | 134 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 60 | a | Prill et al., 2019 | 119 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 61 | a | Rice et al., 2019 | 123 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 62 | a | Farmer et al., 2022 | 145 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 63 | a | AMSA, 2015 | 97 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 64 | a | 2022 | 46 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 65 | a | 1999 | 45 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 66 | a | King et al., 2023 | 127 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 67 | a | AMSA, 2015 | 97 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 68 | a | 2021 | 44 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 69 | a | King et al., 2023 | 127 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 70 | a | King et al., 2023 | 127 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 71 | a | 1998 | 45 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 72 | a | Dahmer et al., 2022 | 151 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 73 | a | Table 1 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 74 | button | View Larger Table | 155 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 75 | a | 2 | 17 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 76 | button | View Larger Table | 155 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 77 | a | 1 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 78 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 79 | a | ab | 11 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 80 | a | bc | 11 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 81 | a | cd | 11 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 82 | a | cd | 11 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 83 | a | de | 11 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 84 | a | e | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 85 | a | ef | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 86 | a | e | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 87 | a | fg | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 88 | a | g | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 89 | a | g | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 90 | a | gh | 11 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 91 | a | ghi | 14 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 92 | a | hi | 8 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 93 | a | i | 2 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 94 | a | i | 2 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 95 | a | 2 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 96 | a | Table 3 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 97 | a | 1 | 12 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 98 | button | View Larger Table | 155 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 99 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 100 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 101 | a | 2 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 102 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 103 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 104 | a | c | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 105 | a | c | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 106 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 107 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 108 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 109 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 110 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 111 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 112 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 113 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 114 | a | 2 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 115 | a | Table 4 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 116 | a | Table 5 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 117 | button | View Larger Table | 155 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 118 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 119 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 120 | a | 1 | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 121 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 122 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 123 | a | c | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 124 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 125 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 126 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 127 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 128 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 129 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 130 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 131 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 132 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 133 | a | 1 | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 134 | button | View Larger Table | 155 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 135 | a | 1 | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 136 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 137 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 138 | a | c | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 139 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 140 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 141 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 142 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 143 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 144 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 145 | a | 1 | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 146 | a | Table 6 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 147 | a | 1 | 12 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 148 | button | View Larger Table | 155 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 149 | a | 2 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 150 | a | 3 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 151 | a | 3 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 152 | a | 3 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 153 | a | 2 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 154 | a | 3 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 155 | a | 3 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 156 | a | 3 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 157 | a | 4 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 158 | a | Table 7 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 159 | a | 1 | 12 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 160 | button | View Larger Table | 155 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 161 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 162 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 163 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 164 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 165 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 166 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 167 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 168 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 169 | a | 2 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 170 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 171 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 172 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 173 | a | 2 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 174 | a | Tables 8 | 69 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 175 | a | 9 | 18 | 32 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 176 | button | View Larger Table | 155 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 177 | a | 1 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 178 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 179 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 180 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 181 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 182 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 183 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 184 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 185 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 186 | a | 2 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 187 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 188 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 189 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 190 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 191 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 192 | a | ab | 11 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 193 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 194 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 195 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 196 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 197 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 198 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 199 | a | 2 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 200 | button | View Larger Table | 155 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 201 | a | 1 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 202 | a | 2 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 203 | a | 3 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 204 | a | 4 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 205 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 206 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 207 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 208 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 209 | a | 5 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 210 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 211 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 212 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 213 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 214 | a | ab | 11 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 215 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 216 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 217 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 218 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 219 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 220 | a | ab | 11 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 221 | a | b | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 222 | a | 5 | 6 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 223 | a | Lagerstedt et al., 2008 | 173 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 224 | a | Grayson et al., 2014 | 152 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 225 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 226 | a | Rahelić et al., 1985 | 145 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 227 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 228 | a | Lagerstedt et al., 2008 | 173 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 229 | a | Grayson et al., 2014 | 152 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 230 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 231 | a | 2008 | 47 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 232 | a | 2014 | 44 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 233 | a | Koohmaraie, 1990 | 139 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 234 | a | Koohmaraie, 1990 | 139 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 235 | a | Kristensen et al., 2006 | 172 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 236 | a | Grayson et al., 2014 | 152 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 237 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 238 | a | Grayson et al., 2014 | 152 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 239 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 240 | a | Wheeler et al., 1990 | 153 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 241 | a | Lagerstedt et al., 2008 | 173 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 242 | a | Grayson et al., 2014 | 152 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 243 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 244 | a | 2013 | 44 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 245 | a | Grujić et al., 1993 | 135 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 246 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 247 | a | 2013 | 44 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 248 | a | Leygonie et al., 2012 | 157 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 249 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 250 | a | Kim et al., 2018 | 120 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 251 | a | 2016 | 44 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 252 | a | 2016 | 44 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 253 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 254 | a | Leygonie et al., 2012 | 157 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 255 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 256 | a | Kim et al., 2018 | 120 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 257 | a | Sánchez del Pulgar et al., 2012 | 231 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 258 | a | English et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 259 | a | Ramanathan et al., 2020 | 185 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 260 | a | English et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 261 | a | Jeong et al., 2011 | 134 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 262 | a | Bekhit and Faustman, 2005 | 207 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 263 | a | 2014 | 44 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 264 | a | Hergenreder et al., 2013 | 184 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 265 | a | Jeong et al., 2011 | 134 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 266 | a | Nair et al., 2017 | 121 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 267 | a | Rahman et al., 2015 | 151 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 268 | a | Setyabrata and Kim, 2019 | 194 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 269 | a | Al-Dalali et al., 2022 | 155 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 270 | a | Rahman et al., 2015 | 151 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 271 | a | Setyabrata and Kim, 2019 | 194 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 272 | a | Zhang et al., 2023 | 141 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 273 | a | Xia et al., 2009 | 117 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 274 | a | Bao et al., 2021 | 119 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 275 | a | Xia et al., 2009 | 117 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 276 | a | Zhang et al., 2019 | 138 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 277 | a | Leygonie et al., 2012 | 157 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 278 | a | Aroeira et al., 2016 | 144 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 279 | a | Kim et al., 2018 | 120 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 280 | a | Pietrasik and Janz, 2009 | 187 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 281 | a | https://doi.org/10.1016/S0309-1740(97)00 | 354 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 282 | a | Lipid oxidation, 1998 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 283 | a | https://doi.org/10.1016/j.foodchem.2021. | 348 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 284 | a | Discussion, Al-Dalali et al., 2022 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 285 | a | Trained sensory panels | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 286 | a | Consumer sensory panels | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 287 | a | Shear force, cooking characteristics, and internal | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 288 | a | https://doi.org/10.1016/j.meatsci.2016.0 | 333 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 289 | a | Introduction 1, Aroeira et al., 2016 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 290 | a | Introduction 2, Aroeira et al., 2016 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 291 | a | Introduction 3, Aroeira et al., 2016 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 292 | a | Introduction 4, 2016 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 293 | a | Discussion 1, Aroeira et al., 2016 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 294 | a | Discussion 2, Aroeira et al., 2016 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 295 | a | Discussion 3, Aroeira et al., 2016 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 296 | a | Discussion 4, Aroeira et al., 2016 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 297 | a | Discussion 5, Aroeira et al., 2016 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 298 | a | Discussion 6, Aroeira et al., 2016 | 68 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 299 | a | Discussion 7, Aroeira et al., 2016 | 65 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 300 | a | Discussion 8, Aroeira et al., 2016 | 68 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 301 | a | Discussion 9, 2016 | 68 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 302 | a | Discussion 10, 2016 | 68 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 303 | a | Discussion 11, Aroeira et al., 2016 | 68 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 304 | a | Discussion 12, Aroeira et al., 2016 | 68 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 305 | a | Discussion 13, Aroeira et al., 2016 | 67 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 306 | a | https://doi.org/10.1111/1541-4337.12841 | 292 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 307 | a | Discussion, Bao et al., 2021 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 308 | a | https://doi.org/10.1016/j.meatsci.2005.0 | 335 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 309 | a | Discussion, Bekhit and Faustman, 2005 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 310 | a | https://doi.org/10.22175/mmb.12424 | 269 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 311 | a | Trained sensory panels 1, Beyer et al., 2021 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 312 | a | Trained sensory panels 2, 2021 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 313 | a | https://doi.org/10.1016/j.lwt.2016.07.02 | 295 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 314 | a | Introduction, Botinestean et al., 2016 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 315 | a | https://www.jstor.org/stable/25557929 | 287 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 316 | a | https://www.jstor.org/stable/25557929 | 287 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 317 | a | Introduction, Buckley et al., 1977 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 318 | a | https://doi.org/10.1093/tas/txac060 | 262 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 319 | a | Lipid oxidation, Dahmer et al., 2022 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 320 | a | https://doi.org/10.1016/j.meatsci.2021.1 | 337 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 321 | a | Surface hydrophobicity, 2021 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 322 | a | https://doi.org/10.1093/jas/sky435 | 254 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 323 | a | Trained sensory panels | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 324 | a | Consumer sensory panels | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 325 | a | https://doi.org/10.2527/jas.2016-0561 | 280 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 326 | a | Discussion 1, English et al., 2016 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 327 | a | Discussion 2, English et al., 2016 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 328 | a | https://doi.org/10.22175/mmb.15488 | 270 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 329 | a | Trained sensory panels | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 330 | a | Consumer sensory panels 1, Farmer et al., 2022 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 331 | a | Consumer sensory panels 2, 2022 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 332 | a | https://doi.org/10.1016/S0309-1740(03)00 | 358 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 333 | a | https://doi.org/10.2527/jas.2014-7613 | 279 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 334 | a | Introduction 1, Grayson et al., 2014 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 335 | a | Introduction 2, Grayson et al., 2014 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 336 | a | Introduction 3, Grayson et al., 2014 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 337 | a | Introduction 4, Grayson et al., 2014 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 338 | a | Introduction 5, 2014 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 339 | a | Discussion 1, Grayson et al., 2014 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 340 | a | Discussion 2, Grayson et al., 2014 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 341 | a | Discussion 3, 2014 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 342 | a | Discussion 4, Grayson et al., 2014 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 343 | a | Discussion 5, Grayson et al., 2014 | 68 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 344 | a | Discussion 6, Grayson et al., 2014 | 65 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 345 | a | https://doi.org/10.1016/0309-1740(93)900 | 351 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 346 | a | Discussion, Grujić et al., 1993 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 347 | a | https://doi.org/10.2527/jas.2012-5223 | 281 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 348 | a | Introduction 1, Hergenreder et al., 2013 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 349 | a | Introduction 2, Hergenreder et al., 2013 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 350 | a | Introduction 3, 2013 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 351 | a | Discussion 1, 2013 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 352 | a | Discussion 2, 2013 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 353 | a | Discussion 3, Hergenreder et al., 2013 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 354 | a | https://doi.org/10.1088/1755-1315/365/1/ | 355 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 355 | a | Introduction, Iskandar et al., 2019 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 356 | a | https://doi.org/10.1016/j.foodres.2011.0 | 329 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 357 | a | Discussion 1, Jeong et al., 2011 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 358 | a | Discussion 2, Jeong et al., 2011 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 359 | a | https://doi.org/10.1016/j.meatsci.2018.0 | 330 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 360 | a | Discussion 1, Kim et al., 2018 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 361 | a | Discussion 2, Kim et al., 2018 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 362 | a | Discussion 3, Kim et al., 2018 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 363 | a | https://doi.org/10.22175/mmb.12473 | 268 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 364 | a | Shear force, cooking characteristics, and internal | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 365 | a | Metmyoglobin-reducing activity 1, King et al., 202 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 366 | a | Metmyoglobin-reducing activity 2, King et al., 202 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 367 | a | https://doi.org/10.2527/1990.683659x | 282 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 368 | a | Discussion 1, Koohmaraie, 1990 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 369 | a | Discussion 2, Koohmaraie, 1990 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 370 | a | https://doi.org/10.1016/j.meatsci.2005.0 | 333 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 371 | a | Discussion, Kristensen et al., 2006 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 372 | a | https://doi.org/10.1016/j.meatsci.2008.0 | 334 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 373 | a | Introduction | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 374 | a | Discussion 1, Lagerstedt et al., 2008 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 375 | a | Discussion 2, Lagerstedt et al., 2008 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 376 | a | Discussion 3, 2008 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 377 | a | Discussion 4, Lagerstedt et al., 2008 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 378 | a | https://doi.org/10.1016/j.meatsci.2012.0 | 328 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 379 | a | Discussion 1, Leygonie et al., 2012 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 380 | a | Discussion 2, Leygonie et al., 2012 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 381 | a | Discussion 3, Leygonie et al., 2012 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 382 | a | https://doi.org/10.1111/j.1365-2621.1988 | 373 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 383 | a | Introduction, Martino and Zaritzky, 1988 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 384 | a | https://doi.org/10.22175/mmb2017.07.0037 | 315 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 385 | a | Discussion, Nair et al., 2017 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 386 | a | https://doi.org/10.22175/mmb2019.07.0022 | 318 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 387 | a | Trained sensory panels | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 388 | a | Consumer sensory panels | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 389 | a | https://doi.org/10.1016/j.meatsci.2008.1 | 333 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 390 | a | Introduction 1, Pietrasik and Janz, 2009 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 391 | a | Introduction 2, Pietrasik and Janz, 2009 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 392 | a | Introduction 3, Pietrasik and Janz, 2009 | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 393 | a | Discussion | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 394 | a | https://doi.org/10.22175/mmb2019.07.0024 | 318 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 395 | a | Trained sensory panels | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 396 | a | Consumer sensory panels | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 397 | a | https://doi.org/10.1016/0309-1740(85)900 | 351 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 398 | a | Discussion, Rahelić et al., 1985 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 399 | a | https://doi.org/10.5851/kosfa.2015.35.6. | 321 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 400 | a | Discussion 1, Rahman et al., 2015 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 401 | a | Discussion 2, Rahman et al., 2015 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 402 | a | https://doi.org/10.1021/acs.jafc.9b08098 | 300 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 403 | a | Discussion, Ramanathan et al., 2020 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 404 | a | https://doi.org/10.22175/mmb2019.07.0027 | 317 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 405 | a | Trained sensory panels | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 406 | a | Consumer sensory panels | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 407 | a | https://doi.org/10.1016/j.meatsci.2011.1 | 325 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 408 | a | Discussion, Sánchez del Pulgar et al., 2012 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 409 | a | https://doi.org/10.1016/j.meatsci.2019.0 | 329 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 410 | a | Discussion 1, Setyabrata and Kim, 2019 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 411 | a | Discussion 2, Setyabrata and Kim, 2019 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 412 | a | https://doi.org/10.2527/1999.77102693x | 298 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 413 | a | Shear force, cooking characteristics, and internal | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 414 | a | https://doi.org/10.1016/j.meatsci.2014.0 | 333 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 415 | a | Discussion, 2014 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 416 | a | https://doi.org/10.1111/j.1365-2621.1990 | 372 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 417 | a | Introduction | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 418 | a | Discussion | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 419 | a | https://doi.org/10.1016/j.meatsci.2009.0 | 336 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 420 | a | Discussion 1, Xia et al., 2009 | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 421 | a | Discussion 2, Xia et al., 2009 | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 422 | a | https://doi.org/10.1016/j.foodchem.2022. | 354 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 423 | a | Introduction | 58 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 424 | a | Discussion | 60 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 425 | a | https://doi.org/10.1016/j.meatsci.2018.1 | 326 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 426 | a | Discussion, Zhang et al., 2019 | 39 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 427 | input | text | 183 | 30 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 428 | button | Copy | 112 | 30 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 429 | a | View PDF (opens in new tab). | 93 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 430 | a | PDF (download.) | 70 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 431 | a | XML (download.) | 73 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 432 | a | dev test with figures (download.) | 187 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 433 | a | figure 1 (download.) | 93 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 434 | a | Creative Commons Attribution 4.0 (extern | 269 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 435 | button | Harvard-style Citation (opens in popup). | 226 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 436 | button | Vancouver-style Citation (opens in popup | 226 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 437 | button | APA-style Citation (opens in popup). | 226 | 38 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 438 | a | RIS (download.) | 226 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 439 | a | BibTeX (download.) | 226 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 440 | a | Introduction | 96 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 441 | a | Materials and Methods | 173 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 442 | a | Results | 61 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 443 | a | Discussion | 86 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 444 | a | Conclusions | 97 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 445 | a | Acknowledgement | 142 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 446 | a | Reference | 82 | 32 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 447 | a | Open Library of Humanities | 172 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 448 | a | Privacy Policy | 91 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 449 | a | Contact | 55 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 450 | a | Accessibility | 83 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=clean | 451 | a | Log in | 44 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 1 | a | Skip to main content | 154 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 2 | a | Home | 330 | 21 | :x: | :x: | +| http://localhost:8000/?theme=olh | 3 | a | Log in | 52 | 43 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 4 | a | Register | 71 | 43 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 5 | a | Home | 75 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 6 | a | About us | 103 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 7 | a | Info for | 92 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 8 | a | Learn | 79 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 9 | a | Journals | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 10 | a | News | 79 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 11 | a | Journals | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 12 | a | Repositories | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 13 | a | Contact | 90 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 14 | ul | Zygon: Journal of Religion and Science f | 1170 | 16 | :x: | :x: | +| http://localhost:8000/?theme=olh | 15 | a | (no name) | 1170 | 16 | :x: | :x: | +| http://localhost:8000/?theme=olh | 16 | button | Slide 1 of 3 | 24 | 24 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 17 | button | Slide 2 of 3 | 24 | 24 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 18 | button | Slide 3 of 3 | 24 | 24 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 19 | a | (no name) | 170 | 349 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 20 | a | (no name) | 170 | 369 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 21 | a | (no name) | 170 | 305 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 22 | a | (no name) | 170 | 349 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 23 | a | (no name) | 170 | 273 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 24 | a | (no name) | 170 | 294 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 25 | a | (no name) | 170 | 272 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 26 | a | (no name) | 170 | 305 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 27 | a | (no name) | 170 | 278 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 28 | a | (no name) | 170 | 327 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 29 | a | (no name) | 170 | 294 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 30 | a | (no name) | 170 | 305 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 31 | a | (no name) | 170 | 295 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 32 | a | (no name) | 170 | 282 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 33 | a | (no name) | 170 | 327 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 34 | a | (no name) | 170 | 272 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 35 | a | (no name) | 170 | 272 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 36 | a | (no name) | 170 | 314 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 37 | a | (no name) | 170 | 335 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 38 | a | (no name) | 170 | 312 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 39 | a | (no name) | 170 | 327 | :x: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 40 | a | Programme now live. | 570 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 41 | a | Janeway | 165 | 21 | :x: | :x: | +| http://localhost:8000/?theme=olh | 42 | a | Twitter | 92 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 43 | a | Facebook | 110 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 44 | a | Mailing List | 123 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/?theme=olh | 45 | a | Privacy Policy | 119 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/?theme=olh | 46 | a | Sitemap | 67 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/?theme=olh | 47 | a | Contact | 73 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/?theme=olh | 48 | a | Accessibility | 107 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/?theme=olh | 49 | a | Log in | 54 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/404/?theme=olh | 1 | a | Skip to main content | 154 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 2 | a | Home | 330 | 21 | :x: | :x: | +| http://localhost:8000/404/?theme=olh | 3 | a | Log in | 52 | 43 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 4 | a | Register | 71 | 43 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 5 | a | Home | 75 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 6 | a | About us | 103 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 7 | a | Info for | 92 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 8 | a | Learn | 79 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 9 | a | Journals | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 10 | a | News | 79 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 11 | a | Journals | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 12 | a | Repositories | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 13 | a | Contact | 90 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 14 | a | Janeway | 165 | 21 | :x: | :x: | +| http://localhost:8000/404/?theme=olh | 15 | a | Twitter | 92 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 16 | a | Facebook | 110 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 17 | a | Mailing List | 123 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/404/?theme=olh | 18 | a | Privacy Policy | 119 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/404/?theme=olh | 19 | a | Sitemap | 67 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/404/?theme=olh | 20 | a | Contact | 73 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/404/?theme=olh | 21 | a | Accessibility | 107 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/404/?theme=olh | 22 | a | Log in | 54 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/journals/?theme=olh | 1 | a | Skip to main content | 154 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 2 | a | Home | 330 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 3 | a | Log in | 52 | 43 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 4 | a | Register | 71 | 43 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 5 | a | Home | 75 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 6 | a | About us | 103 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 7 | a | Info for | 92 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 8 | a | Learn | 79 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 9 | a | Journals | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 10 | a | News | 79 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 11 | a | Journals | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 12 | a | Repositories | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 13 | a | Contact | 90 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 14 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 15 | a | Galaxy Janeway | 140 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 16 | a | Submit | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 17 | a | View | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 18 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 19 | a | ASIANetwork Exchange A Journal for Asian | 467 | 52 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 20 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 21 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 22 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 23 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 24 | a | Anything | 80 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 25 | a | Submit | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 26 | a | View | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 27 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 28 | a | Architectural Histories | 200 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 29 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 30 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 31 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 32 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 33 | a | Body, Space & Technology | 225 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 34 | a | View | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 35 | a | Current Issue | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 36 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 37 | a | The Comics Grid: Journal of Comics Schol | 414 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 38 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 39 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 40 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 41 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 42 | a | C21 Literature: Journal of 21st-Century | 428 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 43 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 44 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 45 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 46 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 47 | a | Digital Medievalist | 164 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 48 | a | medieval studies | 134 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 49 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 50 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 51 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 52 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 53 | a | Digital Studies / Le champ numérique | 323 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 54 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 55 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 56 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 57 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 58 | a | Ethnologia Europaea | 182 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 59 | a | View | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 60 | a | Current Issue | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 61 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 62 | a | Francosphères (external link, opens in n | 147 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 63 | a | Submit (external link, opens in new tab) | 240 | 68 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 64 | a | View (external link, opens in new tab). | 240 | 68 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 65 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 66 | a | Genealogy+Critique | 177 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 67 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 68 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 69 | a | Volumes | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 70 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 71 | a | Glossa: a journal of general linguistics | 325 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 72 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 73 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 74 | a | Issues | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 75 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 76 | a | International Journal of Welsh Writing i | 423 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 77 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 78 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 79 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 80 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 81 | a | [in]Transition | 116 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 82 | a | digital humanities | 142 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 83 | a | new media | 89 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 84 | a | media studies | 112 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 85 | a | film studies | 94 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 86 | a | screen studies | 116 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 87 | a | video essay | 94 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 88 | a | videographic criticism | 173 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 89 | a | audiovisual essay | 138 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 90 | a | visual essay | 96 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 91 | a | television studies | 139 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 92 | a | communication studies | 182 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 93 | a | cinema studies | 120 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 94 | a | videogame studies | 148 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 95 | a | online video | 100 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 96 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 97 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 98 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 99 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 100 | a | Journal of British and Irish Innovative | 389 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 101 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 102 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 103 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 104 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 105 | a | Journal of Embodied Research | 264 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 106 | a | performance | 106 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 107 | a | education | 83 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 108 | a | anthropology | 110 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 109 | a | embodiment | 104 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 110 | a | artistic research | 130 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 111 | a | training | 67 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 112 | a | embodied research | 153 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 113 | a | martial arts | 95 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 114 | a | practice research | 138 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 115 | a | performing arts | 126 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 116 | a | videographic criticism | 173 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 117 | a | social epistemology | 156 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 118 | a | performance as research | 194 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 119 | a | research-creation | 143 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 120 | a | performance philosophy | 191 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 121 | a | cultural studies | 123 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 122 | a | video methods | 119 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 123 | a | video research | 119 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 124 | a | audiovisuality | 113 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 125 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 126 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 127 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 128 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 129 | a | Journal of Portuguese Linguistics | 288 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 130 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 131 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 132 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 133 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 134 | a | Laboratory Phonology | 195 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 135 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 136 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 137 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 138 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 139 | a | Lifewriting Annual: Biographical and Aut | 470 | 52 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 140 | a | Biography | 85 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 141 | a | Memoir | 68 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 142 | a | Letters | 62 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 143 | a | History | 65 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 144 | a | Autobiography | 121 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 145 | a | Diaries | 62 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 146 | a | Testimonio | 91 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 147 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 148 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 149 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 150 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 151 | a | Marvell Studies | 136 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 152 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 153 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 154 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 155 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 156 | a | 19: Interdisciplinary Studies in the Lon | 447 | 52 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 157 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 158 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 159 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 160 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 161 | a | Open Library of Humanities | 242 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 162 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 163 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 164 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 165 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 166 | a | Open Screens | 121 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 167 | a | screen studies | 116 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 168 | a | film | 36 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 169 | a | television | 81 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 170 | a | media | 54 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 171 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 172 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 173 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 174 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 175 | a | Orbit: A Journal of American Literature | 342 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 176 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 177 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 178 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 179 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 180 | a | The Parish Review: Journal of Flann O'Br | 449 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 181 | a | Modernism | 95 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 182 | a | Literature | 84 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 183 | a | Irish Studies | 101 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 184 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 185 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 186 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 187 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 188 | a | Political Philosophy | 171 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 189 | a | political theory | 122 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 190 | a | political philosophy | 154 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 191 | a | philosophy and public affairs | 222 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 192 | a | social philosophy | 136 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 193 | a | legal philosophy | 129 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 194 | a | legal theory | 97 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 195 | a | social theory | 105 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 196 | a | economic philosophy | 166 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 197 | a | applied philosophy | 149 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 198 | a | social choice | 103 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 199 | a | economic policy | 129 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 200 | a | social policy | 99 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 201 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 202 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 203 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 204 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 205 | a | Pynchon Notes | 133 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 206 | a | View | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 207 | a | Issues | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 208 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 209 | a | Quaker Studies | 134 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 210 | a | Digital Humanities | 149 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 211 | a | Art | 33 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 212 | a | Cultural Studies | 129 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 213 | a | Literature | 84 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 214 | a | History | 65 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 215 | a | Philosophy | 91 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 216 | a | Anthropology | 113 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 217 | a | Sociology | 81 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 218 | a | Theology | 78 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 219 | a | Quaker | 65 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 220 | a | Quaker Studies | 124 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 221 | a | Quakerism | 91 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 222 | a | Nonconformity | 124 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 223 | a | Nonconformist | 122 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 224 | a | Friends | 64 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 225 | a | Peace Studies | 112 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 226 | a | Research Methodology | 183 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 227 | a | Women's Studies | 138 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 228 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 229 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 230 | a | Issues | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 231 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 232 | a | Regeneration: Environment, Art, Culture | 353 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 233 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 234 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 235 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 236 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 237 | a | Review of the History of Economic Though | 413 | 52 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 238 | a | Submit | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 239 | a | View | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 240 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 241 | a | Studies in the Maternal | 202 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 242 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 243 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 244 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 245 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 246 | a | Theoretical Roman Archaeology Journal | 350 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 247 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 248 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 249 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 250 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 251 | a | Theory and Social Inquiry | 221 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 252 | a | Submit | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 253 | a | View | 240 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 254 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 255 | a | Zeitschrift für Fantastikforschung | 295 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 256 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 257 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 258 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 259 | a | (no name) | 226 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 260 | a | Zygon: Journal of Religion and Science | 333 | 24 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 261 | a | Submit | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 262 | a | View | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 263 | a | Current Issue | 160 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 264 | input | Filter | 370 | 39 | :x: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 265 | a | Janeway | 165 | 21 | :x: | :x: | +| http://localhost:8000/journals/?theme=olh | 266 | a | Twitter | 92 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 267 | a | Facebook | 110 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 268 | a | Mailing List | 123 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/journals/?theme=olh | 269 | a | Privacy Policy | 119 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/journals/?theme=olh | 270 | a | Sitemap | 67 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/journals/?theme=olh | 271 | a | Contact | 73 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/journals/?theme=olh | 272 | a | Accessibility | 107 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/journals/?theme=olh | 273 | a | Log in | 54 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/contact/?theme=olh | 1 | a | Skip to main content | 154 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 2 | a | Home | 330 | 21 | :x: | :x: | +| http://localhost:8000/contact/?theme=olh | 3 | a | Log in | 52 | 43 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 4 | a | Register | 71 | 43 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 5 | a | Home | 75 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 6 | a | About us | 103 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 7 | a | Info for | 92 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 8 | a | Learn | 79 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 9 | a | Journals | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 10 | a | News | 79 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 11 | a | Journals | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 12 | a | Repositories | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 13 | a | Contact | 90 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 14 | select | Caroline Edwards, Executive DirectorAndy | 750 | 39 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 15 | input | email | 750 | 39 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 16 | input | text | 750 | 39 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 17 | textarea | (no name) | 750 | 258 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 18 | input | text | 750 | 39 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 19 | button | Send Message | 144 | 49 | :x: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 20 | a | Janeway | 165 | 21 | :x: | :x: | +| http://localhost:8000/contact/?theme=olh | 21 | a | Twitter | 92 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 22 | a | Facebook | 110 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 23 | a | Mailing List | 123 | 49 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/contact/?theme=olh | 24 | a | Privacy Policy | 119 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/contact/?theme=olh | 25 | a | Sitemap | 67 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/contact/?theme=olh | 26 | a | Contact | 73 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/contact/?theme=olh | 27 | a | Accessibility | 107 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/contact/?theme=olh | 28 | a | Log in | 54 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/?theme=olh | 1 | a | Skip to main content | 120 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/?theme=olh | 2 | a | Home | 330 | 17 | :x: | :x: | +| http://localhost:8000/olh/?theme=olh | 3 | a | Log in | 46 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 4 | a | Register | 56 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 6 | a | Articles | 80 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 7 | a | Publish With Us | 128 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 8 | a | Editorial Policies | 133 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 9 | a | About | 71 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 10 | a | Start Submission | 146 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 11 | a | Become a Reviewer | 162 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 12 | a | (no name) | 578 | 324 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 13 | a | (no name) | 578 | 324 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 14 | input | text | 1056 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 15 | input | submit | 63 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 16 | ul | Lynsey McLaughlin (University of Lincoln | 1170 | 360 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 17 | a | (no name) | 1170 | 360 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 18 | button | Slide 1 of 3 | 24 | 24 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 19 | button | Slide 2 of 3 | 24 | 24 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 20 | button | Slide 3 of 3 | 24 | 24 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 21 | a | Special Collections | 120 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 22 | a | Special Collections | 120 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 23 | a | how to apply | 83 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 24 | a | (no name) | 470 | 17 | :x: | :x: | +| http://localhost:8000/olh/?theme=olh | 25 | a | Read More | 86 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 26 | a | (no name) | 470 | 17 | :x: | :x: | +| http://localhost:8000/olh/?theme=olh | 27 | a | Read More | 86 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 28 | a | (no name) | 470 | 17 | :x: | :x: | +| http://localhost:8000/olh/?theme=olh | 29 | a | Read More | 86 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 30 | a | (no name) | 470 | 17 | :x: | :x: | +| http://localhost:8000/olh/?theme=olh | 31 | a | Read More | 86 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 32 | a | (no name) | 470 | 17 | :x: | :x: | +| http://localhost:8000/olh/?theme=olh | 33 | a | Read More | 86 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 34 | a | (no name) | 1170 | 186 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 35 | a | Special Collection: The Public Curatorsh | 378 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 36 | a | (no name) | 1170 | 186 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 37 | a | Special Collection: Cultural Heritage Da | 909 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 38 | a | (no name) | 1170 | 186 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 39 | a | Special Collection: Humour as a Human Ri | 277 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 40 | a | (no name) | 380 | 360 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 41 | a | (no name) | 380 | 360 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 42 | a | (no name) | 380 | 360 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=olh | 43 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/?theme=olh | 44 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/?theme=olh | 45 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/?theme=olh | 46 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/?theme=olh | 47 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/accessibility/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/accessibility/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/accessibility/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=olh | 12 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/accessibility/?theme=olh | 13 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/accessibility/?theme=olh | 14 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/accessibility/?theme=olh | 15 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/accessibility/?theme=olh | 16 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/contact/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/contact/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/contact/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 12 | select | Dr Caroline Edwards, Co-Editor-in-Chief | 750 | 39 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 13 | input | email | 750 | 39 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 14 | input | text | 750 | 39 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 15 | textarea | (no name) | 750 | 258 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 16 | input | text | 750 | 39 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 17 | button | Send Message | 114 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=olh | 18 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/contact/?theme=olh | 19 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/contact/?theme=olh | 20 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/contact/?theme=olh | 21 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/contact/?theme=olh | 22 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/contact/?theme=olh | 23 | button | × | 12 | 20 | :x: | :x: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 12 | a | View Profile | 73 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 13 | a | Person 2537 Family 2537's website | 63 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 14 | a | Person 2537 Family 2537's twitter profile | 62 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 15 | a | Person 2537 Family 2537's linkedin profile | 70 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 16 | a | View Profile | 73 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 17 | a | Caroline Edwards's website | 63 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 18 | a | Caroline Edwards's twitter profile | 62 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 19 | a | View Profile | 73 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 20 | a | Simon Everett's twitter profile | 62 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 21 | a | View Profile | 73 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 22 | a | Person 23281 Family 23281's github profile | 58 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 23 | a | View Profile | 73 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 24 | a | View Profile | 73 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 25 | a | Caroline Edwards's website | 63 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 26 | a | Caroline Edwards's twitter profile | 62 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 27 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 28 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 29 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 30 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/editorialteam/?theme=olh | 31 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/search/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/search/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/search/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=olh | 12 | input | text | 370 | 39 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=olh | 13 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/search/?theme=olh | 14 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/search/?theme=olh | 15 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/search/?theme=olh | 16 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/search/?theme=olh | 17 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/search/?theme=olh | 18 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/search/?theme=olh | 19 | select | Relevance Titles A-Z Titles Z-A Newest O | 370 | 39 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=olh | 20 | button | Search | 69 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=olh | 21 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/search/?theme=olh | 22 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/search/?theme=olh | 23 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/search/?theme=olh | 24 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/search/?theme=olh | 25 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/about/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/about/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/site/about/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 12 | a | Open Library of Humanities | 198 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 13 | a | Special Collections | 136 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 14 | a | how to apply | 95 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 15 | a | CLOCKSS | 73 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 16 | a | Open Library of Humanities Special Colle | 322 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 17 | a | Special Collections | 136 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 18 | a | international library consortium | 229 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 19 | a | publisher's policy | 127 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 20 | a | CiteScore on Scopus | 144 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 21 | a | Focus and Scope | 120 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 22 | a | Publication Frequency | 160 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 23 | a | Publication Fees | 119 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 24 | a | Citation Metrics | 117 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=olh | 25 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/about/?theme=olh | 26 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/about/?theme=olh | 27 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/about/?theme=olh | 28 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/about/?theme=olh | 29 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 12 | a | Special Collections | 145 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 13 | a | Submissions | 94 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 14 | a | Language and Text | 138 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 15 | a | Data and Symbols | 130 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 16 | a | Figures and Tables | 135 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 17 | a | References | 82 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 18 | a | ensuring an anonymous review | 222 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 19 | a | . | 11 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 20 | a | How to Declare Competing Interests | 253 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 21 | a | Declaration of Helsinki | 164 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 22 | a | here | 38 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 23 | a | Bureau International des Poids et Mesure | 292 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 24 | a | document | 78 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 25 | a | https://www.theguardian.com/world/2020/s | 1074 | 47 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 26 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 27 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 28 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 29 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/author-guidelines/?theme=olh | 30 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 12 | a | Editorial Oversight | 136 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 13 | a | Peer Review Process | 146 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 14 | a | Organisation and Governance | 210 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 15 | a | Business Practices | 133 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 16 | a | Preprint Policy | 109 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 17 | a | Conduct and Expected Behaviour | 233 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 18 | a | OLHJ Special Collections | 173 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 19 | a | Consortium for the Humanities and Arts S | 422 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 20 | a | Committee on Publication Ethics | 231 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 21 | a | ‘Responsibilities of Reviewers’ | 213 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 22 | a | Publication Ethics and Malpractice State | 316 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 23 | a | Janeway | 65 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 24 | a | editorial board | 107 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 25 | a | editorial team | 103 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 26 | a | Library Partnership Subsidy | 198 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 27 | a | About | 49 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 28 | a | Library Partnership Subsidy | 198 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 29 | a | Publication Ethics and Malpractice State | 320 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 30 | a | Contact | 60 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 31 | a | directly with the publisher | 188 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 32 | a | ‘Publication Ethics and Malpractice Stat | 324 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 33 | a | best practice guidelines by COPE | 229 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 34 | a | Ethics Policies | 105 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 35 | a | Special Collections | 136 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 36 | a | Editorial Oversight | 136 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 37 | a | Appointment of Editors and Special Colle | 317 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 38 | a | The Remit of OLHJ Editorial Roles | 235 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 39 | a | Editorial Decisions | 136 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 40 | a | Composition of the Editorial Team | 241 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 41 | a | Peer Review Process | 146 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 42 | a | Assessing Articles for Peer Review | 240 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 43 | a | OLHJ’s Peer Review Practice | 196 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 44 | a | Selection of Peer Reviewers | 194 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 45 | a | Guidance for Peer Reviewers | 201 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 46 | a | Publication of Peer Review Reports | 245 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 47 | a | Organisation and Governance | 210 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 48 | a | The Ownership and Structure of OLHJ | 263 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 49 | a | Academic Steering and Advisory Committee | 304 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 50 | a | OLHJ’s Funding Model | 159 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 51 | a | Business Practices | 133 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 52 | a | Advertising | 87 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 53 | a | Direct Marketing | 124 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 54 | a | Other Revenue | 108 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 55 | a | Preprint Policy | 109 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 56 | a | Conduct and Expected Behaviour | 233 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 57 | a | OLHJ Special Collections | 173 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 58 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 59 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 60 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 61 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=olh | 62 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/submissions/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 12 | a | Special Collections | 145 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 13 | a | Author Guidelines | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 14 | a | Register | 78 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 15 | a | Log in | 67 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 16 | a | Author Guidelines | 131 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 17 | a | how to declare competing interests | 704 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 18 | a | ensuring an anonymous review | 222 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 19 | a | . | 11 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=olh | 20 | a | Creative Commons Attribution License | 271 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 21 | a | Creative Commons License | 191 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 22 | a | The Effect of Open Access | 183 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 23 | a | Journal Policies | 113 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 24 | a | CC BY 4.0 (external link, opens in new t | 94 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 25 | a | test html (external link, opens in new t | 90 | 27 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 26 | a | international library consortium | 229 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=olh | 27 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=olh | 28 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=olh | 29 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=olh | 30 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=olh | 31 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/issues/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 12 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 13 | a | (no name) | 270 | 426 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 14 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 15 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 16 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 17 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 18 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 19 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 20 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 21 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 22 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 23 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 24 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 25 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 26 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 27 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 28 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 29 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 30 | a | (no name) | 270 | 94 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=olh | 31 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=olh | 32 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=olh | 33 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=olh | 34 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=olh | 35 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 12 | a | (no name) | 769 | 144 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 13 | a | (no name) | 769 | 144 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 14 | a | (no name) | 769 | 144 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 15 | a | (no name) | 769 | 167 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 16 | a | (no name) | 769 | 144 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 17 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 18 | a | Special Collection: American Literature | 499 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 19 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 20 | a | Special Collection: American Literature | 499 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 21 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 22 | a | Special Collection: Healing Gods, Heroes | 553 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 23 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 24 | a | Special Collection: Healing Gods, Heroes | 553 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 25 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 26 | a | Special Collection: Healing Gods, Heroes | 553 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 27 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 28 | a | Special Collection: Healing Gods, Heroes | 553 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 29 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 30 | a | Special Collection: Healing Gods, Heroes | 553 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 31 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 32 | a | Special Collection: Mnemosyne | 220 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 33 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 34 | a | Special Collection: The Abolition of the | 345 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 35 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 36 | a | Special Collection: The Abolition of the | 345 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 37 | a | (no name) | 769 | 167 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 38 | a | 1 | 26 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 39 | a | Volume 10, Issue 2, 2024 | 183 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 40 | a | Volume 11, 2024 | 121 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 41 | a | Volume 10, Issue 1, 2024 | 181 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 42 | a | Volume 9, Issue 2, 2023 | 177 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 43 | a | Volume 9, Issue 1, 2023 | 174 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 44 | a | Volume 8, Issue 2, 2022 | 177 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 45 | a | Volume 8, Issue 1, 2022 | 175 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 46 | a | Volume 7, Issue 2, 2021 | 174 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 47 | a | Volume 7, Issue 1, 2021 | 172 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 48 | a | Volume 6, Issue 2, 2020 | 178 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 49 | a | Volume 6, Issue 1, 2020 | 176 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 50 | a | Volume 5, Issue 1, 2019 | 172 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 51 | a | Volume 4, Issue 2, 2018 | 175 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 52 | a | Volume 4, Issue 1, 2018 | 172 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 53 | a | Volume 3, Issue 2, 2017 | 173 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 54 | a | Volume 3, Issue 1, 2017 | 171 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 55 | a | Volume 2, Issue 2, 2016 | 175 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 56 | a | Volume 2, Issue 1, 2016 | 173 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 57 | a | Volume 1, Issue 1, 2015 | 170 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 58 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 59 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 60 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 61 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/402/info/?theme=olh | 62 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 12 | a | (no name) | 769 | 167 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 13 | a | (no name) | 769 | 167 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 14 | a | (no name) | 769 | 167 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 15 | a | (no name) | 769 | 144 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 16 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 17 | a | Special Collection: Literature, Law and | 373 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 18 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 19 | a | Special Collection: Literature, Law and | 373 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 20 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 21 | a | Special Collection: Literature, Law and | 373 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 22 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 23 | a | Special Collection: Literature, Law and | 373 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 24 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 25 | a | Special Collection: Literature, Law and | 373 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 26 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 27 | a | Special Collection: Literature, Law and | 373 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 28 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 29 | a | Special Collection: Pride Revisited: Cin | 489 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 30 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 31 | a | Special Collection: Pride Revisited: Cin | 489 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 32 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 33 | a | Special Collection: The Language of Pers | 331 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 34 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 35 | a | Special Collection: The Working-Class Av | 355 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 36 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 37 | a | Special Collection: The Working-Class Av | 355 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 38 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 39 | a | Special Collection: The Working-Class Av | 355 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 40 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 41 | a | Special Collection: The Working-Class Av | 355 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 42 | a | (no name) | 769 | 289 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 43 | a | Special Collection: Encounters between A | 619 | 54 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 44 | a | (no name) | 769 | 266 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 45 | a | Special Collection: Encounters between A | 619 | 54 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 46 | a | (no name) | 769 | 266 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 47 | a | Special Collection: Encounters between A | 619 | 54 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 48 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 49 | a | Special Collection: Writers and Intellec | 527 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 50 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 51 | a | Special Collection: Writers and Intellec | 527 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 52 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 53 | a | Special Collection: Writers and Intellec | 527 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 54 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 55 | a | Special Collection: Writers and Intellec | 527 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 56 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 57 | a | Special Collection: Authors, Narratives, | 544 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 58 | a | 1 | 26 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 59 | a | Volume 10, Issue 2, 2024 | 183 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 60 | a | Volume 11, 2024 | 121 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 61 | a | Volume 10, Issue 1, 2024 | 181 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 62 | a | Volume 9, Issue 2, 2023 | 177 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 63 | a | Volume 9, Issue 1, 2023 | 174 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 64 | a | Volume 8, Issue 2, 2022 | 177 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 65 | a | Volume 8, Issue 1, 2022 | 175 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 66 | a | Volume 7, Issue 2, 2021 | 174 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 67 | a | Volume 7, Issue 1, 2021 | 172 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 68 | a | Volume 6, Issue 2, 2020 | 178 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 69 | a | Volume 6, Issue 1, 2020 | 176 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 70 | a | Volume 5, Issue 1, 2019 | 172 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 71 | a | Volume 4, Issue 2, 2018 | 175 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 72 | a | Volume 4, Issue 1, 2018 | 172 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 73 | a | Volume 3, Issue 2, 2017 | 173 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 74 | a | Volume 3, Issue 1, 2017 | 171 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 75 | a | Volume 2, Issue 2, 2016 | 175 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 76 | a | Volume 2, Issue 1, 2016 | 173 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 77 | a | Volume 1, Issue 1, 2015 | 170 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 78 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 79 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 80 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 81 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/409/info/?theme=olh | 82 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/collections/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 12 | a | (no name) | 380 | 644 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 13 | a | (no name) | 380 | 644 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 14 | a | (no name) | 380 | 644 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 15 | a | (no name) | 380 | 520 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 16 | a | (no name) | 380 | 474 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 17 | a | (no name) | 380 | 464 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 18 | a | (no name) | 380 | 577 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 19 | a | (no name) | 380 | 611 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 20 | a | (no name) | 380 | 590 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 21 | a | (no name) | 380 | 567 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 22 | a | (no name) | 380 | 567 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 23 | a | (no name) | 380 | 520 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 24 | a | (no name) | 380 | 634 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 25 | a | (no name) | 380 | 508 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 26 | a | (no name) | 380 | 520 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 27 | a | (no name) | 380 | 544 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 28 | a | (no name) | 380 | 271 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 29 | a | (no name) | 380 | 361 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 30 | a | (no name) | 380 | 464 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 31 | a | (no name) | 380 | 577 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 32 | a | (no name) | 380 | 600 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 33 | a | (no name) | 380 | 328 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 34 | a | (no name) | 380 | 351 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 35 | a | (no name) | 380 | 294 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 36 | a | (no name) | 380 | 372 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 37 | a | (no name) | 380 | 328 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 38 | a | (no name) | 380 | 328 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 39 | a | (no name) | 380 | 328 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 40 | a | (no name) | 380 | 328 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 41 | a | (no name) | 380 | 418 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 42 | a | (no name) | 380 | 374 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 43 | a | (no name) | 380 | 384 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 44 | a | (no name) | 380 | 271 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 45 | a | (no name) | 380 | 294 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 46 | a | (no name) | 380 | 317 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 47 | a | (no name) | 380 | 374 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 48 | a | (no name) | 380 | 374 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 49 | a | (no name) | 380 | 374 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 50 | a | (no name) | 380 | 351 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 51 | a | (no name) | 380 | 374 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 52 | a | (no name) | 380 | 374 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 53 | a | (no name) | 380 | 340 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 54 | a | (no name) | 380 | 374 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 55 | a | (no name) | 380 | 374 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 56 | a | (no name) | 380 | 361 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 57 | a | (no name) | 380 | 317 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 58 | a | (no name) | 380 | 351 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 59 | a | (no name) | 380 | 294 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 60 | a | (no name) | 380 | 407 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 61 | a | (no name) | 380 | 317 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=olh | 62 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=olh | 63 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=olh | 64 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=olh | 65 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=olh | 66 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=olh | 67 | button | × | 12 | 20 | :x: | :x: | +| http://localhost:8000/olh/collections/?theme=olh | 68 | button | × | 12 | 20 | :x: | :x: | +| http://localhost:8000/olh/collections/?theme=olh | 69 | button | × | 12 | 20 | :x: | :x: | +| http://localhost:8000/olh/collections/846/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/846/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/collections/846/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 12 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 13 | a | Special Collection: Medieval Minds and M | 322 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 14 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 15 | a | Special Collection: Medieval Minds and M | 322 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 16 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 17 | a | Special Collection: Medieval Minds and M | 322 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 18 | a | (no name) | 769 | 243 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 19 | a | Special Collection: Medieval Minds and M | 322 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 20 | a | (no name) | 769 | 220 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 21 | a | Special Collection: Medieval Minds and M | 322 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 22 | a | 1 | 26 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 23 | a | Humour as a Human Right | 189 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 24 | a | Cultural Heritage Data for Research: Ope | 371 | 63 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 25 | a | Caliban's Mirror: Reflections of James J | 367 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 26 | a | Cultural Representations of Machine Visi | 301 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 27 | a | The Public Curatorship of the Medieval P | 304 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 28 | a | Medieval Minds and Matter | 195 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 29 | a | Representing the Medieval in Popular Cul | 316 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 30 | a | The Politics and History of Menstruation | 364 | 63 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 31 | a | Production Archives 03: Archival Practic | 294 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 32 | a | Production Archives 02: Production Conte | 313 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 33 | a | Production Archives 01: Puppets for Acti | 298 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 34 | a | Representing Classical Music in the Twen | 337 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 35 | a | The Pathological Body: European Literary | 373 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 36 | a | Binary Modernisms: Re/Appropriations of | 387 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 37 | a | Local and Universal in Irish Literature | 346 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 38 | a | Reading in Ruins: Exploring Posthumanist | 359 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 39 | a | The Language of Perspective | 203 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 40 | a | Nancy Astor, Public Women and Gendered P | 348 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 41 | a | The Working-Class Avant-Garde | 227 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 42 | a | Colonialities in Dispute: Discourses on | 376 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 43 | a | Powering the Future: Energy Resources in | 342 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 44 | a | Writers and Intellectuals on Britain and | 367 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 45 | a | Literature, Law and Psychoanalysis | 246 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 46 | a | Muslims in the Media | 155 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 47 | a | Encounters between Asian and Western Art | 377 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 48 | a | Waste: Disposability, Decay, and Depleti | 292 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 49 | a | Pride Revisited: Cinema, Activism and Re | 362 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 50 | a | New Approaches to Late Medieval Court Re | 336 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 51 | a | Utopian Art and Literature from Modern I | 320 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 52 | a | Right-Wing Populism and Mediated Activis | 372 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 53 | a | Representing Climate: Local to Global | 262 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 54 | a | Cultivating Spheres: Agriculture, Techni | 293 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 55 | a | Freedom After Neoliberalism | 205 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 56 | a | The Medieval Brain | 141 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 57 | a | Remaking Collections | 157 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 58 | a | New Approaches to Medieval Water Studies | 301 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 59 | a | Imaginaries of the Future 01: Bodies and | 326 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 60 | a | Imaginaries of the Future 02: Politics, | 355 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 61 | a | Imaginaries of the Future 03: Utopia at | 343 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 62 | a | Postcolonial Perspectives in Game Studie | 293 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 63 | a | Station Eleven and Twenty-First-Century | 345 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 64 | a | #Agreement20 | 110 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 65 | a | What’s Left? Marxism, Literature and Cul | 382 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 66 | a | New Voices in Jewish-American Literature | 293 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 67 | a | Authors, Narratives, and Audiences in Me | 374 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 68 | a | From TV To Film | 124 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 69 | a | American Literature & the Transnational | 372 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 70 | a | Mnemosyne | 93 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 71 | a | Healing Gods, Heroes and Rituals in the | 378 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 72 | a | The Abolition of the University | 218 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=olh | 73 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/846/?theme=olh | 74 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/846/?theme=olh | 75 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/846/?theme=olh | 76 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/846/?theme=olh | 77 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 12 | a | (no name) | 470 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 13 | a | Read More | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 14 | a | (no name) | 470 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 15 | a | Read More | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 16 | a | (no name) | 470 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 17 | a | Read More | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 18 | a | (no name) | 470 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 19 | a | Read More | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 20 | a | (no name) | 470 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 21 | a | Read More | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 22 | a | (no name) | 470 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 23 | a | Read More | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 24 | a | (no name) | 470 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 25 | a | Read More | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 26 | a | (no name) | 470 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 27 | a | Read More | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 28 | a | (no name) | 470 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 29 | a | Read More | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 30 | a | (no name) | 470 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 31 | a | Read More | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 32 | a | (no name) | 470 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 33 | a | Read More | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 34 | a | (no name) | 470 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 35 | a | Read More | 93 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 36 | a | 1 | 26 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 37 | a | 2 | 28 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 38 | a | » next page | 29 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=olh | 39 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 40 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 41 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 42 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=olh | 43 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/429/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/429/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/news/429/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=olh | 12 | a | OLH Special Collections | 136 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=olh | 13 | a | OLH Special Collections | 169 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=olh | 14 | a | Digital Humanities | 96 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=olh | 15 | a | Back to News List | 136 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=olh | 16 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/429/?theme=olh | 17 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/429/?theme=olh | 18 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/429/?theme=olh | 19 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/429/?theme=olh | 20 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/429/?theme=olh | 21 | button | × | 12 | 20 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 12 | select | Newest Oldest Titles A-Z Titles Z-A Auth | 170 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 13 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 14 | a | Special Collection: The Working-Class Av | 355 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 15 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 16 | a | Special Collection: Humour as a Human Ri | 317 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 17 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 18 | a | Special Collection: The Public Curatorsh | 431 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 19 | a | (no name) | 769 | 311 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 20 | a | Special Collection: Cultural Heritage Da | 619 | 54 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 21 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 22 | a | Special Collection: Caliban's Mirror: Re | 541 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 23 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 24 | a | Special Collection: The Public Curatorsh | 431 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 25 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 26 | a | Special Collection: Production Archives | 440 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 27 | a | (no name) | 769 | 332 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 28 | a | Special Collection: The Working-Class Av | 355 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 29 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 30 | a | Special Collection: Caliban's Mirror: Re | 541 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 31 | a | (no name) | 769 | 232 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 32 | a | Special Collection: The Working-Class Av | 355 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 33 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 34 | a | Special Collection: Local and Universal | 474 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 35 | a | (no name) | 769 | 232 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 36 | a | Special Collection: Caliban's Mirror: Re | 541 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 37 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 38 | a | Special Collection: Caliban's Mirror: Re | 541 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 39 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 40 | a | Special Collection: Local and Universal | 474 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 41 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 42 | a | Special Collection: The Public Curatorsh | 431 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 43 | a | (no name) | 769 | 232 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 44 | a | Special Collection: Production Archives | 421 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 45 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 46 | a | Special Collection: Production Archives | 440 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 47 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 48 | a | Special Collection: Medieval Minds and M | 322 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 49 | a | (no name) | 769 | 311 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 50 | a | Special Collection: The Pathological Bod | 619 | 54 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 51 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 52 | a | Special Collection: The Public Curatorsh | 431 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 53 | a | (no name) | 769 | 299 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 54 | a | Special Collection: Medieval Minds and M | 322 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 55 | a | (no name) | 769 | 299 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 56 | a | Special Collection: The Public Curatorsh | 431 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 57 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 58 | a | Special Collection: The Public Curatorsh | 431 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 59 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 60 | a | Special Collection: Cultural Representat | 429 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 61 | a | (no name) | 769 | 265 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 62 | a | Special Collection: The Working-Class Av | 355 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 63 | button | 1 | 26 | 20 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 64 | button | 2 | 28 | 20 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 65 | button | 3 | 28 | 20 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 66 | button | 15 | 34 | 20 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 67 | button | » next page | 29 | 20 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 68 | select | 10 25 50 100 all | 103 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 69 | input | date | 370 | 39 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 70 | input | date | 370 | 39 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 71 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 72 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 73 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 74 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 75 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 76 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 77 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 78 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 79 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 80 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 81 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 82 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 83 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 84 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 85 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 86 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 87 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 88 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 89 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 90 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 91 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 92 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 93 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 94 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 95 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 96 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 97 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 98 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 99 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 100 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 101 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 102 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 103 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 104 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 105 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 106 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 107 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 108 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 109 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 110 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 111 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 112 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 113 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 114 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 115 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 116 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 117 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 118 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 119 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 120 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 121 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 122 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 123 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 124 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 125 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 126 | input | checkbox | 13 | 13 | :x: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 127 | button | Apply | 63 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 128 | button | Clear all | 77 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=olh | 129 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 130 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 131 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 132 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/articles/?theme=olh | 133 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 12 | a | 8346@example.org(compose email, opens in | 160 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 13 | a | Printer friendly version | 53 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 14 | button | decrease text size | 46 | 43 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 15 | button | increase text size | 47 | 43 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 16 | button | Dyslexia mode | 87 | 43 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 17 | button | Cite article | 54 | 43 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 18 | a | Saint Augustine-Ancient Greek-Pedagogy- | 641 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 19 | a | D.O.I. for Non amabam Litteras Graecas. Note sulla | 223 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 20 | button | Copy | 101 | 26 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 21 | a | test html in license text (external link | 191 | 69 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 22 | a | Waquet, 2004: 251–254 | 161 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 23 | a | Canfora and Cardinale, 2012 | 196 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 24 | a | Olivia, 2008: 13 | 109 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 25 | a | Milanese, 2012: 67–82 | 155 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 26 | a | Ricucci, 2012 | 95 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 27 | a | 2014a | 47 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 28 | a | 1975 | 38 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 29 | a | Ricucci, 2013 | 95 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 30 | a | 2014b | 47 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 31 | a | 1 | 13 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 32 | a | 2 | 14 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 33 | a | 3 | 14 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 34 | a | Krashen, 1991 | 100 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 35 | a | Howatt and Smith, 2002 | 173 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 36 | a | Titone, 1987: 5 | 104 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 37 | a | Titone, 1987: 5 | 104 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 38 | a | Howatt, 1984: 284 | 127 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 39 | a | Schulz, 1975 | 90 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 40 | a | Lightbown, 1985 | 120 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 41 | a | Lightbown, 2000 | 126 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 42 | a | Debyser, 1973: 63–68 | 149 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 43 | a | Puren, 1994 | 87 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 44 | a | Serra Borneto, 1998 | 140 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 45 | a | Kumaravadivelu, 1994 | 157 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 46 | a | 2006 | 43 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 47 | a | Celce-murcia, 1980 | 136 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 48 | a | 4 | 15 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 49 | a | Van Patten and Williams, 2005: 25 | 237 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 50 | a | 1994: 45–46 | 88 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 51 | a | 5 | 14 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 52 | a | 6 | 14 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 53 | a | 7 | 14 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 54 | a | Kirwan, 1994: 188 | 125 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 55 | a | 8 | 14 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 56 | a | McLynn, 2005 | 106 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 57 | a | 9 | 14 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 58 | a | 10 | 19 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 59 | a | Bellissima, 1955 | 115 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 60 | a | Collart, 1971 | 88 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 61 | a | Louth, 1989: 151 | 113 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 62 | a | 11 | 17 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 63 | a | 12 | 19 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 64 | a | 13 | 19 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 65 | a | 14 | 19 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 66 | a | 15 | 19 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 67 | a | 16 | 19 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 68 | a | Alfonsi, 1971: 42 | 115 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 69 | a | 17 | 18 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 70 | a | Bonner, 1986: 180–183 | 156 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 71 | a | Neraudau, 1996: 58–59 | 161 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 72 | a | 18 | 19 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 73 | a | 19 | 19 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 74 | a | 20 | 21 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 75 | a | Courcelle, 1943: 142 | 135 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 76 | a | Marrou, 19584: 446 s. | 149 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 77 | a | Solignac, 1962: 667 | 134 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 78 | a | 21 | 19 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 79 | a | 22 | 21 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 80 | a | 23 | 20 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 81 | a | 24 | 21 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 82 | a | 25 | 20 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 83 | a | 26 | 21 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 84 | a | 27 | 20 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 85 | a | 28 | 21 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 86 | a | 29 | 21 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 87 | a | Miraglia 2004: 231–234 | 163 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 88 | a | Green, 1951 | 83 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 89 | a | Adams, 2003: 213–245 | 157 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 90 | a | Adams, 2003: 192–194 | 156 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 91 | a | 2010: 531 | 68 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 92 | a | 30 | 21 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 93 | a | 31 | 19 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 94 | a | 32 | 20 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 95 | a | 33 | 20 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 96 | a | Marrou, 1966: 365–366 | 162 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 97 | a | 34 | 21 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 98 | a | Simone, 1969: 106 | 128 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 99 | a | 35 | 20 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 100 | a | Korhonen, 1996: 107 | 143 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 101 | a | Flammini, 1990: 17 | 134 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 102 | a | Tagliaferro, 2008: 68 | 148 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 103 | a | 36 | 21 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 104 | a | 1985: 4 | 53 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 105 | a | 19872: 66–67 | 95 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 106 | a | Cambiano, 1992: 526 | 146 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 107 | a | Sandys, 19102: 235 | 130 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 108 | a | Gallo, 2003: 94 | 107 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 109 | a | 37 | 20 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 110 | a | Dombart and Kalb (ed.) 1960 | 199 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 111 | a | Weigel 1961 | 570 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 112 | a | Martin 1962 | 90 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 113 | a | Verheijen 1991 | 104 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 114 | a | Doignon 1997 | 101 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 115 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 116 | a | Too, 2001 | 73 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 117 | a | Vössing, 2003 | 102 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 118 | a | Pernot, 2008 | 96 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 119 | a | Bellandi and Ferri, 2008 | 171 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 120 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 121 | a | Laes, 2013 | 77 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 122 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 123 | a | Krashen, 1981 | 100 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 124 | a | Krashen and Terrell, 1983 | 179 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 125 | a | Krashen, 2003 | 106 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 126 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 127 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 128 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 129 | a | Lightbown and Spada, 20113: 38 | 222 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 130 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 131 | a | Ando, 1994 | 82 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 132 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 133 | a | Vössing, 1992 | 99 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 134 | a | Vössing, 1997 | 99 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 135 | a | Moretti, 2009 | 101 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 136 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 137 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 138 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 139 | a | Vecchio, 1994 | 98 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 140 | a | Manetti, 1987: 226–227 | 163 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 141 | a | Preti, 1956 | 78 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 142 | a | Baratin, 1981 | 94 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 143 | a | Toom, 2009 | 91 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 144 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 145 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 146 | a | Markus, 1957 | 97 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 147 | a | Jackson, 1969 | 99 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 148 | a | Ruef, 1981 | 74 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 149 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 150 | a | Kirwan, 2001 | 98 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 151 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 152 | a | Henninger, 1989 | 118 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 153 | a | Paffenroth and Hughes, 2000 | 208 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 154 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 155 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 156 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 157 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 158 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 159 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 160 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 161 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 162 | a | Kaimio, 1979: 195–207 | 156 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 163 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 164 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 165 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 166 | a | Debut, 1983 | 86 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 167 | a | Dickey, 2012 | 91 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 168 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 169 | a | 2004: 226–227 | 567 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 170 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 171 | a | Rochette, 2008: 89–90 | 161 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 172 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 173 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 174 | a | Van Patten and Benati, 2010: 43 | 218 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 175 | a | Gardner, 1985: 10 | 581 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 176 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 177 | a | 19762: 323 | 75 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 178 | a | 1997: 126 | 68 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 179 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 180 | a | Pallotti, 20012: 219–220 | 591 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 181 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 182 | a | Diller, 1978: 72 | 104 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 183 | a | Richards and Rodgers, 20012: 9 | 576 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 184 | a | Titone, 1968: 100–101 | 150 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 185 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 186 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 187 | a | Rivers, 1964: 19–20 | 135 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 188 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 189 | a | Moreschini, 1979: 38 s. | 589 | 55 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 190 | a | ⮭ | 18 | 26 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 191 | a | 3. Agostino: “linguista”, docente e discente 1, Ad | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 192 | a | 3. Agostino: “linguista”, docente e discente 2, Ad | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 193 | a | 3. Agostino: “linguista”, docente e discente, Alfo | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 194 | a | Notes, Ando, 1994 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 195 | a | Notes, Baratin, 1981 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 196 | a | Notes, Bellandi and Ferri, 2008 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 197 | a | 3. Agostino: “linguista”, docente e discente, Bell | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 198 | a | 3. Agostino: “linguista”, docente e discente, Bonn | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 199 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 200 | a | 1. Premessa, Canfora and Cardinale, 2012 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 201 | a | 2. Second Language Acquisition: la posizione di Kr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 202 | a | 3. Agostino: “linguista”, docente e discente, Coll | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 203 | a | 3. Agostino: “linguista”, docente e discente, Cour | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 204 | a | Notes, Debut, 1983 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 205 | a | 2. Second Language Acquisition: la posizione di Kr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 206 | a | Notes, Dickey, 2012 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 207 | a | Notes, Diller, 1978: 72 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 208 | a | Notes, Doignon 1997 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 209 | a | Notes, Dombart and Kalb (ed.) 1960 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 210 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 211 | a | 5. Conclusioni, Gallo, 2003: 94 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 212 | a | Notes, Gardner, 1985: 10 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 213 | a | 3. Agostino: “linguista”, docente e discente, Gree | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 214 | a | Notes, Henninger, 1989 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 215 | a | 2. Second Language Acquisition: la posizione di Kr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 216 | a | 2. Second Language Acquisition: la posizione di Kr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 217 | a | Notes, Jackson, 1969 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 218 | a | Notes, Kaimio, 1979: 195–207 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 219 | a | Notes, 19762: 323 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 220 | a | 3. Agostino: “linguista”, docente e discente, Kirw | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 221 | a | Notes, Kirwan, 2001 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 222 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 223 | a | Notes, Krashen, 1981 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 224 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 225 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 226 | a | 1. Premessa, Krashen, 1991 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 227 | a | 2. Second Language Acquisition: la posizione di Kr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 228 | a | Notes, Krashen, 2003 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 229 | a | Notes, Krashen and Terrell, 1983 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 230 | a | 2. Second Language Acquisition: la posizione di Kr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 231 | a | 2. Second Language Acquisition: la posizione di Kr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 232 | a | Notes, Laes, 2013 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 233 | a | 2. Second Language Acquisition: la posizione di Kr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 234 | a | 2. Second Language Acquisition: la posizione di Kr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 235 | a | Notes, Lightbown and Spada, 20113: 38 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 236 | a | 3. Agostino: “linguista”, docente e discente, Lout | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 237 | a | Notes, Manetti, 1987: 226–227 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 238 | a | Notes, Markus, 1957 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 239 | a | 3. Agostino: “linguista”, docente e discente, Marr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 240 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 241 | a | Notes, Martin 1962 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 242 | a | 3. Agostino: “linguista”, docente e discente, McLy | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 243 | a | 1. Premessa, Milanese, 2012: 67–82 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 244 | a | 3. Agostino: “linguista”, docente e discente | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 245 | a | Notes | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 246 | a | Notes, Moreschini, 1979: 38 s. | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 247 | a | Notes, Moretti, 2009 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 248 | a | 3. Agostino: “linguista”, docente e discente, 2010 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 249 | a | 3. Agostino: “linguista”, docente e discente, Nera | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 250 | a | http://www.treellle.org/files/lll/QA1.pd | 270 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 251 | a | 1. Premessa, Olivia, 2008: 13 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 252 | a | 1. Premessa, 1975 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 253 | a | Notes, Paffenroth and Hughes, 2000 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 254 | a | Notes, Pallotti, 20012: 219–220 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 255 | a | Notes, Pernot, 2008 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 256 | a | Notes, 1997: 126 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 257 | a | Notes, Preti, 1956 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 258 | a | 2. Second Language Acquisition: la posizione di Kr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 259 | a | Notes, Richards and Rodgers, 20012: 9 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 260 | a | 1. Premessa, Ricucci, 2012 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 261 | a | 1. Premessa, Ricucci, 2013 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 262 | a | 1. Premessa, 2014a | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 263 | a | 1. Premessa, 2014b | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 264 | a | Notes, Rivers, 1964: 19–20 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 265 | a | Notes, Rochette, 2008: 89–90 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 266 | a | Notes, Ruef, 1981 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 267 | a | 5. Conclusioni, Sandys, 19102: 235 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 268 | a | 2. Second Language Acquisition: la posizione di Kr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 269 | a | 2. Second Language Acquisition: la posizione di Kr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 270 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 271 | a | 3. Agostino: “linguista”, docente e discente, Soli | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 272 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 273 | a | Notes, Titone, 1968: 100–101 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 274 | a | 2. Second Language Acquisition: la posizione di Kr | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 275 | a | 2. Second Language Acquisition: la posizione di Kr | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 276 | a | Notes, Too, 2001 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 277 | a | Notes, Toom, 2009 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 278 | a | 2. Second Language Acquisition: la posizione di Kr | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 279 | a | Notes, Van Patten and Benati, 2010: 43 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 280 | a | Notes, Vecchio, 1994 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 281 | a | Notes, Verheijen 1991 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 282 | a | Notes, Vössing, 1992 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 283 | a | Notes, Vössing, 1997 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 284 | a | Notes, Vössing, 2003 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 285 | a | 1. Premessa, Waquet, 2004: 251–254 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 286 | a | Notes, Weigel 1961 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 287 | input | text | 219 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 288 | button | Copy | 101 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 289 | a | View PDF (opens in new tab). | 86 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 290 | a | PDF (download.) | 64 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 291 | a | XML (download.) | 70 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 292 | a | reuploaded (download.) | 112 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 293 | a | and again reuploaded (download.) | 182 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 294 | a | from olh, actual article for this data ( | 275 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 295 | a | Volume 1 • Issue 1 • 2015 | 170 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 296 | a | D.O.I. for Non amabam Litteras Graecas. Note sulla | 223 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 297 | a | 1. Premessa | 87 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 298 | a | 2. Second Language Acquisition: la posiz | 317 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 299 | a | 3. Agostino: “linguista”, docente e disc | 293 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 300 | a | 4. Da Agostino a Krashen: la ricerca del | 241 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 301 | a | 5. Conclusioni | 103 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 302 | a | Competing Interests | 146 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 303 | a | Notes | 47 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 304 | a | References | 82 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 305 | a | Link | 40 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 306 | a | https://doi.org/10.16995/olh.6318 | 222 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 307 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 308 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 309 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 310 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=olh | 311 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 1 | a | Skip to main content | 142 | 22 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 2 | a | Home | 330 | 18 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 3 | a | Log in | 51 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 4 | a | Register | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 5 | input | Search | 117 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 6 | a | Articles | 87 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 7 | a | Publish With Us | 141 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 8 | a | Editorial Policies | 146 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 9 | a | About | 76 | 34 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 10 | a | Start Submission | 164 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 11 | a | Become a Reviewer | 176 | 35 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 12 | a | 6504@example.org(compose email, opens in | 161 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 13 | a | Printer friendly version | 53 | 29 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 14 | button | decrease text size | 46 | 43 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 15 | button | increase text size | 47 | 43 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 16 | button | Dyslexia mode | 87 | 43 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 17 | button | Cite article | 54 | 43 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 18 | a | education, | 79 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 19 | a | political economy, | 131 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 20 | a | secular crisis, | 100 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 21 | a | university | 77 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 22 | a | D.O.I. for DEV: Evaluation of Fresh and Frozen Bee | 220 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 23 | button | Copy | 101 | 26 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 24 | a | Creative Commons Attribution 4.0 (extern | 191 | 69 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 25 | a | Iskandar et al., 2019 | 141 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 26 | a | Buckley et al., 1977 | 134 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 27 | a | Pietrasik and Janz, 2009 | 172 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 28 | a | Pietrasik and Janz, 2009 | 172 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 29 | a | Grayson et al., 2014 | 137 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 30 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 31 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 32 | a | Botinestean et al., 2016 | 162 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 33 | a | Zhang et al., 2023 | 127 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 34 | a | Martino and Zaritzky, 1988 | 190 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 35 | a | Grayson et al., 2014 | 137 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 36 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 37 | a | Wheeler et al., 1990 | 139 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 38 | a | Lagerstedt et al., 2008 | 157 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 39 | a | Hergenreder et al., 2013 | 166 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 40 | a | Grayson et al., 2014 | 137 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 41 | a | Hergenreder et al., 2013 | 166 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 42 | a | Grayson et al., 2014 | 137 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 43 | a | 2014 | 39 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 44 | a | 2016 | 39 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 45 | a | 2013 | 39 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 46 | a | Pietrasik and Janz, 2009 | 172 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 47 | a | Figure 1 | 61 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 48 | a | Enlarge Figure 1. | 636 | 18 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 49 | a | Drey et al., 2019 | 113 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 50 | a | Olson et al., 2019 | 120 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 51 | a | Prill et al., 2019 | 109 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 52 | a | Rice et al., 2019 | 110 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 53 | a | Beyer et al., 2021 | 120 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 54 | a | Farmer et al., 2022 | 133 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 55 | a | AMSA, 2015 | 89 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 56 | a | 2021 | 39 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 57 | a | Drey et al., 2019 | 113 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 58 | a | Olson et al., 2019 | 120 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 59 | a | Prill et al., 2019 | 109 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 60 | a | Rice et al., 2019 | 110 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 61 | a | Farmer et al., 2022 | 133 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 62 | a | AMSA, 2015 | 89 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 63 | a | 2022 | 42 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 64 | a | 1999 | 40 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 65 | a | King et al., 2023 | 115 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 66 | a | AMSA, 2015 | 89 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 67 | a | 2021 | 39 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 68 | a | King et al., 2023 | 115 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 69 | a | King et al., 2023 | 115 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 70 | a | 1998 | 39 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 71 | a | Dahmer et al., 2022 | 139 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 72 | a | Table 1 | 55 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 73 | button | View Larger Table | 122 | 14 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 74 | a | 2 | 17 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 75 | button | View Larger Table | 122 | 14 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 76 | a | 1 | 4 | 19 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 77 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 78 | a | ab | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 79 | a | bc | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 80 | a | cd | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 81 | a | cd | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 82 | a | de | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 83 | a | e | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 84 | a | ef | 7 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 85 | a | e | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 86 | a | fg | 8 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 87 | a | g | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 88 | a | g | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 89 | a | gh | 10 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 90 | a | ghi | 13 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 91 | a | hi | 8 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 92 | a | i | 3 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 93 | a | i | 3 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 94 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 95 | a | Table 3 | 57 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 96 | a | 1 | 12 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 97 | button | View Larger Table | 122 | 14 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 98 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 99 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 100 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 101 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 102 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 103 | a | c | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 104 | a | c | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 105 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 106 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 107 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 108 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 109 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 110 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 111 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 112 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 113 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 114 | a | Table 4 | 57 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 115 | a | Table 5 | 57 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 116 | button | View Larger Table | 122 | 14 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 117 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 118 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 119 | a | 1 | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 120 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 121 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 122 | a | c | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 123 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 124 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 125 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 126 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 127 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 128 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 129 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 130 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 131 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 132 | a | 1 | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 133 | button | View Larger Table | 122 | 14 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 134 | a | 1 | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 135 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 136 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 137 | a | c | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 138 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 139 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 140 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 141 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 142 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 143 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 144 | a | 1 | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 145 | a | Table 6 | 57 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 146 | a | 1 | 12 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 147 | button | View Larger Table | 122 | 14 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 148 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 149 | a | 3 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 150 | a | 3 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 151 | a | 3 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 152 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 153 | a | 3 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 154 | a | 3 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 155 | a | 3 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 156 | a | 4 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 157 | a | Table 7 | 56 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 158 | a | 1 | 12 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 159 | button | View Larger Table | 122 | 14 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 160 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 161 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 162 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 163 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 164 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 165 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 166 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 167 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 168 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 169 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 170 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 171 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 172 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 173 | a | Tables 8 | 64 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 174 | a | 9 | 17 | 37 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 175 | button | View Larger Table | 122 | 14 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 176 | a | 1 | 4 | 19 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 177 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 178 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 179 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 180 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 181 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 182 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 183 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 184 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 185 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 186 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 187 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 188 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 189 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 190 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 191 | a | ab | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 192 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 193 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 194 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 195 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 196 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 197 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 198 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 199 | button | View Larger Table | 122 | 14 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 200 | a | 1 | 4 | 19 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 201 | a | 2 | 5 | 19 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 202 | a | 3 | 5 | 19 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 203 | a | 4 | 5 | 19 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 204 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 205 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 206 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 207 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 208 | a | 5 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 209 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 210 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 211 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 212 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 213 | a | ab | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 214 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 215 | a | a | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 216 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 217 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 218 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 219 | a | ab | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 220 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 221 | a | 5 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 222 | a | Lagerstedt et al., 2008 | 157 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 223 | a | Grayson et al., 2014 | 137 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 224 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 225 | a | Rahelić et al., 1985 | 130 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 226 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 227 | a | Lagerstedt et al., 2008 | 157 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 228 | a | Grayson et al., 2014 | 137 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 229 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 230 | a | 2008 | 43 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 231 | a | 2014 | 39 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 232 | a | Koohmaraie, 1990 | 130 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 233 | a | Koohmaraie, 1990 | 130 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 234 | a | Kristensen et al., 2006 | 158 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 235 | a | Grayson et al., 2014 | 137 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 236 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 237 | a | Grayson et al., 2014 | 137 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 238 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 239 | a | Wheeler et al., 1990 | 139 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 240 | a | Lagerstedt et al., 2008 | 157 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 241 | a | Grayson et al., 2014 | 137 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 242 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 243 | a | 2013 | 39 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 244 | a | Grujić et al., 1993 | 121 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 245 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 246 | a | 2013 | 39 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 247 | a | Leygonie et al., 2012 | 144 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 248 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 249 | a | Kim et al., 2018 | 110 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 250 | a | 2016 | 39 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 251 | a | 2016 | 39 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 252 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 253 | a | Leygonie et al., 2012 | 144 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 254 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 255 | a | Kim et al., 2018 | 110 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 256 | a | Sánchez del Pulgar et al., 2012 | 210 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 257 | a | English et al., 2016 | 133 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 258 | a | Ramanathan et al., 2020 | 172 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 259 | a | English et al., 2016 | 133 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 260 | a | Jeong et al., 2011 | 117 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 261 | a | Bekhit and Faustman, 2005 | 195 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 262 | a | 2014 | 39 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 263 | a | Hergenreder et al., 2013 | 166 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 264 | a | Jeong et al., 2011 | 117 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 265 | a | Nair et al., 2017 | 109 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 266 | a | Rahman et al., 2015 | 139 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 267 | a | Setyabrata and Kim, 2019 | 179 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 268 | a | Al-Dalali et al., 2022 | 144 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 269 | a | Rahman et al., 2015 | 139 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 270 | a | Setyabrata and Kim, 2019 | 179 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 271 | a | Zhang et al., 2023 | 127 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 272 | a | Xia et al., 2009 | 107 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 273 | a | Bao et al., 2021 | 107 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 274 | a | Xia et al., 2009 | 107 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 275 | a | Zhang et al., 2019 | 125 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 276 | a | Leygonie et al., 2012 | 144 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 277 | a | Aroeira et al., 2016 | 131 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 278 | a | Kim et al., 2018 | 110 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 279 | a | Pietrasik and Janz, 2009 | 172 | 37 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 280 | a | https://doi.org/10.1016/S0309-1740(97)00 | 317 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 281 | a | Lipid oxidation, 1998 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 282 | a | https://doi.org/10.1016/j.foodchem.2021. | 314 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 283 | a | Discussion, Al-Dalali et al., 2022 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 284 | a | Trained sensory panels | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 285 | a | Consumer sensory panels | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 286 | a | Shear force, cooking characteristics, and internal | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 287 | a | https://doi.org/10.1016/j.meatsci.2016.0 | 302 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 288 | a | Introduction 1, Aroeira et al., 2016 | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 289 | a | Introduction 2, Aroeira et al., 2016 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 290 | a | Introduction 3, Aroeira et al., 2016 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 291 | a | Introduction 4, 2016 | 57 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 292 | a | Discussion 1, Aroeira et al., 2016 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 293 | a | Discussion 2, Aroeira et al., 2016 | 57 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 294 | a | Discussion 3, Aroeira et al., 2016 | 59 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 295 | a | Discussion 4, Aroeira et al., 2016 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 296 | a | Discussion 5, Aroeira et al., 2016 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 297 | a | Discussion 6, Aroeira et al., 2016 | 64 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 298 | a | Discussion 7, Aroeira et al., 2016 | 62 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 299 | a | Discussion 8, Aroeira et al., 2016 | 64 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 300 | a | Discussion 9, 2016 | 64 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 301 | a | Discussion 10, 2016 | 64 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 302 | a | Discussion 11, Aroeira et al., 2016 | 64 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 303 | a | Discussion 12, Aroeira et al., 2016 | 64 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 304 | a | Discussion 13, Aroeira et al., 2016 | 64 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 305 | a | https://doi.org/10.1111/1541-4337.12841 | 256 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 306 | a | Discussion, Bao et al., 2021 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 307 | a | https://doi.org/10.1016/j.meatsci.2005.0 | 303 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 308 | a | Discussion, Bekhit and Faustman, 2005 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 309 | a | https://doi.org/10.22175/mmb.12424 | 245 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 310 | a | Trained sensory panels 1, Beyer et al., 2021 | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 311 | a | Trained sensory panels 2, 2021 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 312 | a | https://doi.org/10.1016/j.lwt.2016.07.02 | 268 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 313 | a | Introduction, Botinestean et al., 2016 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 314 | a | https://www.jstor.org/stable/25557929 | 264 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 315 | a | https://www.jstor.org/stable/25557929 | 264 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 316 | a | Introduction, Buckley et al., 1977 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 317 | a | https://doi.org/10.1093/tas/txac060 | 241 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 318 | a | Lipid oxidation, Dahmer et al., 2022 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 319 | a | https://doi.org/10.1016/j.meatsci.2021.1 | 303 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 320 | a | Surface hydrophobicity, 2021 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 321 | a | https://doi.org/10.1093/jas/sky435 | 229 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 322 | a | Trained sensory panels | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 323 | a | Consumer sensory panels | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 324 | a | https://doi.org/10.2527/jas.2016-0561 | 252 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 325 | a | Discussion 1, English et al., 2016 | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 326 | a | Discussion 2, English et al., 2016 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 327 | a | https://doi.org/10.22175/mmb.15488 | 246 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 328 | a | Trained sensory panels | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 329 | a | Consumer sensory panels 1, Farmer et al., 2022 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 330 | a | Consumer sensory panels 2, 2022 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 331 | a | https://doi.org/10.1016/S0309-1740(03)00 | 320 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 332 | a | https://doi.org/10.2527/jas.2014-7613 | 247 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 333 | a | Introduction 1, Grayson et al., 2014 | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 334 | a | Introduction 2, Grayson et al., 2014 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 335 | a | Introduction 3, Grayson et al., 2014 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 336 | a | Introduction 4, Grayson et al., 2014 | 57 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 337 | a | Introduction 5, 2014 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 338 | a | Discussion 1, Grayson et al., 2014 | 57 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 339 | a | Discussion 2, Grayson et al., 2014 | 59 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 340 | a | Discussion 3, 2014 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 341 | a | Discussion 4, Grayson et al., 2014 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 342 | a | Discussion 5, Grayson et al., 2014 | 64 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 343 | a | Discussion 6, Grayson et al., 2014 | 62 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 344 | a | https://doi.org/10.1016/0309-1740(93)900 | 312 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 345 | a | Discussion, Grujić et al., 1993 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 346 | a | https://doi.org/10.2527/jas.2012-5223 | 252 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 347 | a | Introduction 1, Hergenreder et al., 2013 | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 348 | a | Introduction 2, Hergenreder et al., 2013 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 349 | a | Introduction 3, 2013 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 350 | a | Discussion 1, 2013 | 57 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 351 | a | Discussion 2, 2013 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 352 | a | Discussion 3, Hergenreder et al., 2013 | 57 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 353 | a | https://doi.org/10.1088/1755-1315/365/1/ | 316 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 354 | a | Introduction, Iskandar et al., 2019 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 355 | a | https://doi.org/10.1016/j.foodres.2011.0 | 297 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 356 | a | Discussion 1, Jeong et al., 2011 | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 357 | a | Discussion 2, Jeong et al., 2011 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 358 | a | https://doi.org/10.1016/j.meatsci.2018.0 | 298 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 359 | a | Discussion 1, Kim et al., 2018 | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 360 | a | Discussion 2, Kim et al., 2018 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 361 | a | Discussion 3, Kim et al., 2018 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 362 | a | https://doi.org/10.22175/mmb.12473 | 244 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 363 | a | Shear force, cooking characteristics, and internal | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 364 | a | Metmyoglobin-reducing activity 1, King et al., 202 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 365 | a | Metmyoglobin-reducing activity 2, King et al., 202 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 366 | a | https://doi.org/10.2527/1990.683659x | 252 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 367 | a | Discussion 1, Koohmaraie, 1990 | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 368 | a | Discussion 2, Koohmaraie, 1990 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 369 | a | https://doi.org/10.1016/j.meatsci.2005.0 | 302 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 370 | a | Discussion, Kristensen et al., 2006 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 371 | a | https://doi.org/10.1016/j.meatsci.2008.0 | 304 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 372 | a | Introduction | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 373 | a | Discussion 1, Lagerstedt et al., 2008 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 374 | a | Discussion 2, Lagerstedt et al., 2008 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 375 | a | Discussion 3, 2008 | 57 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 376 | a | Discussion 4, Lagerstedt et al., 2008 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 377 | a | https://doi.org/10.1016/j.meatsci.2012.0 | 296 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 378 | a | Discussion 1, Leygonie et al., 2012 | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 379 | a | Discussion 2, Leygonie et al., 2012 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 380 | a | Discussion 3, Leygonie et al., 2012 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 381 | a | https://doi.org/10.1111/j.1365-2621.1988 | 331 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 382 | a | Introduction, Martino and Zaritzky, 1988 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 383 | a | https://doi.org/10.22175/mmb2017.07.0037 | 286 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 384 | a | Discussion, Nair et al., 2017 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 385 | a | https://doi.org/10.22175/mmb2019.07.0022 | 289 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 386 | a | Trained sensory panels | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 387 | a | Consumer sensory panels | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 388 | a | https://doi.org/10.1016/j.meatsci.2008.1 | 303 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 389 | a | Introduction 1, Pietrasik and Janz, 2009 | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 390 | a | Introduction 2, Pietrasik and Janz, 2009 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 391 | a | Introduction 3, Pietrasik and Janz, 2009 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 392 | a | Discussion | 57 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 393 | a | https://doi.org/10.22175/mmb2019.07.0024 | 288 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 394 | a | Trained sensory panels | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 395 | a | Consumer sensory panels | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 396 | a | https://doi.org/10.1016/0309-1740(85)900 | 312 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 397 | a | Discussion, Rahelić et al., 1985 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 398 | a | https://doi.org/10.5851/kosfa.2015.35.6. | 285 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 399 | a | Discussion 1, Rahman et al., 2015 | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 400 | a | Discussion 2, Rahman et al., 2015 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 401 | a | https://doi.org/10.1021/acs.jafc.9b08098 | 270 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 402 | a | Discussion, Ramanathan et al., 2020 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 403 | a | https://doi.org/10.22175/mmb2019.07.0027 | 288 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 404 | a | Trained sensory panels | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 405 | a | Consumer sensory panels | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 406 | a | https://doi.org/10.1016/j.meatsci.2011.1 | 294 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 407 | a | Discussion, Sánchez del Pulgar et al., 2012 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 408 | a | https://doi.org/10.1016/j.meatsci.2019.0 | 298 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 409 | a | Discussion 1, Setyabrata and Kim, 2019 | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 410 | a | Discussion 2, Setyabrata and Kim, 2019 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 411 | a | https://doi.org/10.2527/1999.77102693x | 264 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 412 | a | Shear force, cooking characteristics, and internal | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 413 | a | https://doi.org/10.1016/j.meatsci.2014.0 | 300 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 414 | a | Discussion, 2014 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 415 | a | https://doi.org/10.1111/j.1365-2621.1990 | 330 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 416 | a | Introduction | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 417 | a | Discussion | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 418 | a | https://doi.org/10.1016/j.meatsci.2009.0 | 303 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 419 | a | Discussion 1, Xia et al., 2009 | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 420 | a | Discussion 2, Xia et al., 2009 | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 421 | a | https://doi.org/10.1016/j.foodchem.2022. | 319 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 422 | a | Introduction | 56 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 423 | a | Discussion | 58 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 424 | a | https://doi.org/10.1016/j.meatsci.2018.1 | 293 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 425 | a | Discussion, Zhang et al., 2019 | 41 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 426 | input | text | 219 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 427 | button | Copy | 101 | 40 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 428 | a | View PDF (opens in new tab). | 86 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 429 | a | PDF (download.) | 64 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 430 | a | XML (download.) | 70 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 431 | a | dev test with figures (download.) | 175 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 432 | a | Volume 1 • Issue 1 • 2015 | 170 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 433 | a | D.O.I. for DEV: Evaluation of Fresh and Frozen Bee | 220 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 434 | a | figure 1 (download.) | 87 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 435 | a | Introduction | 94 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 436 | a | Materials and Methods | 164 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 437 | a | Sample collection and fabrication | 235 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 438 | a | Trained sensory panels | 166 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 439 | a | Consumer sensory panels | 183 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 440 | a | Shear force, cooking characteristics, an | 277 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 441 | a | Sample preparation and proximate analysi | 301 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 442 | a | Surface hydrophobicity | 167 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 443 | a | Metmyoglobin-reducing activity | 230 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 444 | a | Lipid oxidation | 111 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 445 | a | Statistical analysis | 134 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 446 | a | Results | 57 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 447 | a | Consumer sensory evaluation | 210 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 448 | a | Trained sensory evaluation | 193 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 449 | a | Warner-Bratzler shear force and cooking | 279 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 450 | a | Internal cooked color, color stability, | 282 | 45 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 451 | a | Discussion | 82 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 452 | a | Conclusions | 90 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 453 | a | Acknowledgement | 136 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 454 | a | Reference | 75 | 26 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 455 | a | Open Library of Humanities | 218 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 456 | a | Privacy Policy | 119 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 457 | a | Contact | 72 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 458 | a | Accessibility | 108 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 459 | a | Log in | 54 | 20 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 460 | button | × | 12 | 20 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 461 | button | × | 12 | 20 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 462 | button | × | 12 | 20 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 463 | button | × | 12 | 20 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=olh | 464 | button | × | 12 | 20 | :x: | :x: | +| http://localhost:8000/olh/?theme=material | 1 | a | Skip to main content | 136 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/?theme=material | 2 | a | (no name) | 352 | 124 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 3 | a | Articles | 103 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 4 | a | Publish With Us | 159 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 6 | a | About | 93 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 7 | a | Become a Reviewer | 182 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 9 | a | Register | 86 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 10 | a | 'Grasp All, Lose All': Raising Awareness | 302 | 124 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 11 | a | 'Unity in Diversity': Centralised Britis | 309 | 124 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 12 | input | text | 1062 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 13 | a | The Public Curatorship of the Medieval P | 1087 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 14 | a | Implementing Linked Art in a Multi-Modal | 1087 | 70 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 15 | a | Semantic Instability and Philosophical P | 1087 | 102 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 16 | a | Special Collections | 135 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 17 | a | Special Collections | 135 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 18 | a | how to apply | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 19 | a | Read More | 91 | 17 | :white_check_mark: | :x: | +| http://localhost:8000/olh/?theme=material | 20 | a | Read More | 91 | 17 | :white_check_mark: | :x: | +| http://localhost:8000/olh/?theme=material | 21 | a | Read More | 91 | 17 | :white_check_mark: | :x: | +| http://localhost:8000/olh/?theme=material | 22 | a | Read More | 91 | 17 | :white_check_mark: | :x: | +| http://localhost:8000/olh/?theme=material | 23 | a | Read More | 91 | 17 | :white_check_mark: | :x: | +| http://localhost:8000/olh/?theme=material | 24 | a | The Public Curatorship of the Medieval P | 733 | 74 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 25 | a | Volume 10 • Issue 2 • 2024 | 188 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 26 | a | Special Collection: The Public Curatorsh | 428 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 27 | a | Implementing Linked Art in a Multi-Modal | 906 | 104 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 28 | a | Volume 10 • Issue 2 • 2024 | 188 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 29 | a | Special Collection: Cultural Heritage Da | 906 | 53 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 30 | a | Tim Renkow’s Jerk: Cringe Comedy, Disabi | 892 | 75 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 31 | a | Volume 10 • Issue 2 • 2024 | 188 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 32 | a | Special Collection: Humour as a Human Ri | 313 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 33 | a | Non amabam Litteras Graecas. Note sulla | 282 | 252 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 34 | a | DEV: Evaluation of Fresh and Frozen Beef | 309 | 124 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 35 | a | Might a Sense of Place Approach Help the | 289 | 124 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 36 | a | Open Library of Humanities | 191 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 37 | a | Privacy Policy | 101 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 38 | a | Accessibility | 90 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/?theme=material | 39 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/accessibility/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=material | 10 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=material | 11 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=material | 12 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/accessibility/?theme=material | 13 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/contact/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 10 | input | text | 579 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 11 | input | email | 579 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 12 | input | text | 579 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 13 | textarea | (no name) | 579 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 14 | input | text | 579 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 15 | button | Send Message | 144 | 36 | :x: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 16 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 17 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 18 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/contact/?theme=material | 19 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/editorialteam/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 10 | a | View Profile | 67 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 11 | a | Person 2537 Family 2537's website | 61 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 12 | a | Person 2537 Family 2537's twitter profile | 55 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 13 | a | Person 2537 Family 2537's linkedin profile | 62 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 14 | a | View Profile | 67 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 15 | a | Caroline Edwards's website | 61 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 16 | a | Caroline Edwards's twitter profile | 55 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 17 | a | View Profile | 67 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 18 | a | Simon Everett's twitter profile | 55 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 19 | a | View Profile | 67 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 20 | a | Person 23281 Family 23281's github profile | 53 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 21 | a | View Profile | 67 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 22 | a | View Profile | 67 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 23 | a | Caroline Edwards's website | 61 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 24 | a | Caroline Edwards's twitter profile | 55 | 25 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 25 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 26 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 27 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/editorialteam/?theme=material | 28 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/search/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 10 | input | text | 314 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 11 | input | text | 314 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 12 | button | Filter | 79 | 36 | :x: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 13 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 14 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 15 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/search/?theme=material | 16 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/about/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 10 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 11 | a | Special Collections | 135 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 12 | a | how to apply | 93 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 13 | a | CLOCKSS | 73 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 14 | a | Open Library of Humanities Special Colle | 320 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 15 | a | Special Collections | 135 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 16 | a | international library consortium | 216 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 17 | a | publisher's policy | 122 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 18 | a | CiteScore on Scopus | 147 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 19 | a | Focus and Scope | 127 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/about/?theme=material | 20 | a | Publication Frequency | 158 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/about/?theme=material | 21 | a | Publication Fees | 123 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/about/?theme=material | 22 | a | Citation Metrics | 119 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/about/?theme=material | 23 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 24 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 25 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/about/?theme=material | 26 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 10 | a | Special Collections | 135 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 11 | a | Submissions | 94 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 12 | a | Language and Text | 134 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 13 | a | Data and Symbols | 129 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 14 | a | Figures and Tables | 133 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 15 | a | References | 83 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 16 | a | ensuring an anonymous review | 214 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 17 | a | . | 12 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 18 | a | How to Declare Competing Interests | 249 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 19 | a | Declaration of Helsinki | 158 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 20 | a | here | 37 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 21 | a | Bureau International des Poids et Mesure | 290 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 22 | a | document | 75 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 23 | a | https://www.theguardian.com/world/2020/s | 722 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 24 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 25 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 26 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/author-guidelines/?theme=material | 27 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 10 | a | Editorial Oversight | 130 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 11 | a | Peer Review Process | 147 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 12 | a | Organisation and Governance | 205 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 13 | a | Business Practices | 135 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 14 | a | Preprint Policy | 105 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 15 | a | Conduct and Expected Behaviour | 228 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 16 | a | OLHJ Special Collections | 176 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 17 | a | Consortium for the Humanities and Arts S | 408 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 18 | a | Committee on Publication Ethics | 226 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 19 | a | ‘Responsibilities of Reviewers’ | 208 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 20 | a | Publication Ethics and Malpractice State | 311 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 21 | a | Janeway | 67 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 22 | a | editorial board | 104 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 23 | a | editorial team | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 24 | a | Library Partnership Subsidy | 191 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 25 | a | About | 48 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 26 | a | Library Partnership Subsidy | 191 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 27 | a | Publication Ethics and Malpractice State | 314 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 28 | a | Contact | 60 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 29 | a | directly with the publisher | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 30 | a | ‘Publication Ethics and Malpractice Stat | 317 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 31 | a | best practice guidelines by COPE | 227 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 32 | a | Ethics Policies | 105 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 33 | a | Special Collections | 135 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 34 | a | Editorial Oversight | 133 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 35 | a | Peer Review Process | 150 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 36 | a | Organisation and Governance | 204 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 37 | a | Business Practices | 138 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 38 | a | Preprint Policy | 110 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 39 | a | Conduct and Expected Behaviour | 223 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 40 | a | OLHJ Special Collections | 177 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 41 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 42 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 43 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/site/journal-policies/?theme=material | 44 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 10 | a | Special Collections | 135 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 11 | a | Author Guidelines | 126 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 12 | a | Register | 99 | 36 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 13 | a | Log in | 79 | 36 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 14 | a | Author Guidelines | 126 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 15 | a | how to declare competing interests | 243 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 16 | a | ensuring an anonymous review | 214 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 17 | a | . | 12 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=material | 18 | a | Creative Commons Attribution License | 265 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 19 | a | Creative Commons License | 191 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 20 | a | The Effect of Open Access | 185 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 21 | a | Journal Policies | 114 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 22 | a | CC BY 4.0 (external link, opens in new t | 89 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 23 | a | test html (external link, opens in new t | 83 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 24 | a | international library consortium | 216 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 25 | a | Submission Checklist | 154 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=material | 26 | a | Copyright Notice | 124 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=material | 27 | a | Peer Review | 96 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=material | 28 | a | Licences | 75 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=material | 29 | a | Publication Fees | 123 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=material | 30 | a | Sections | 74 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/submissions/?theme=material | 31 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 32 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 33 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/submissions/?theme=material | 34 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 10 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 11 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 12 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 13 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 14 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 15 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 16 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 17 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 18 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 19 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 20 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 21 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 22 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 23 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 24 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 25 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 26 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 27 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 28 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 29 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 30 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 31 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 32 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 33 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 34 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 35 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 36 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 37 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 38 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 39 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 40 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 41 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 42 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 43 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 44 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 45 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 46 | a | (no name) | 177 | 260 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 47 | a | View Issue | 79 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issues/?theme=material | 48 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 49 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 50 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issues/?theme=material | 51 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 10 | a | An Intimate Encounter: Negotiating Subti | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 11 | a | Volume 2 • Issue 1 • 2016 • e1 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 12 | a | The Covent Garden Old Price Riots: Prote | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 13 | a | Volume 2 • Issue 1 • 2016 • e4 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 14 | a | Inhabiting Heritage: Living with the Pas | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 15 | a | Volume 2 • Issue 1 • 2016 • e8 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 16 | a | Opening the Black Box of Scholarly Commu | 586 | 187 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 17 | a | Volume 2 • Issue 1 • 2016 • e10 | 215 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 18 | a | The Importance of Numa Pompilius: A Reco | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 19 | a | Volume 2 • Issue 1 • 2016 • e16 | 215 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 20 | a | Toward a Fungible Scrip: Orestes Brownso | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 21 | a | Volume 2 • Issue 1 • 2016 • e2 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 22 | a | Special Collection: American Literature | 484 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 23 | a | The ‘Illimitable Dominion’ of Charles Di | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 24 | a | Volume 2 • Issue 1 • 2016 • e7 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 25 | a | Special Collection: American Literature | 484 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 26 | a | Healing Gods, Heroes and Rituals in the | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 27 | a | Volume 2 • Issue 1 • 2016 • e14 | 215 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 28 | a | Special Collection: Healing Gods, Heroes | 542 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 29 | a | Goddesses as Consorts of the Healing God | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 30 | a | Volume 2 • Issue 1 • 2016 • e5 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 31 | a | Special Collection: Healing Gods, Heroes | 542 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 32 | a | Asclepius’ Myths and Healing Narratives: | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 33 | a | Volume 2 • Issue 1 • 2016 • e6 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 34 | a | Special Collection: Healing Gods, Heroes | 542 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 35 | a | From Textual Reception to Textual Codifi | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 36 | a | Volume 2 • Issue 1 • 2016 • e9 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 37 | a | Special Collection: Healing Gods, Heroes | 542 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 38 | a | The Fate of a Healing Goddess: Ocular Pa | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 39 | a | Volume 2 • Issue 1 • 2016 • e13 | 215 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 40 | a | Special Collection: Healing Gods, Heroes | 542 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 41 | a | Metaphors of Collecting in Late Nineteen | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 42 | a | Volume 2 • Issue 1 • 2016 • e15 | 215 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 43 | a | Special Collection: Mnemosyne | 217 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 44 | a | Putting Business at the Heart of Higher | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 45 | a | Volume 2 • Issue 1 • 2016 • e3 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 46 | a | Special Collection: The Abolition of the | 334 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 47 | a | Dismantling the Curriculum in Higher Edu | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 48 | a | Volume 2 • Issue 1 • 2016 • e11 | 215 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 49 | a | Special Collection: The Abolition of the | 334 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 50 | a | Correction: Opening the Black Box of Sch | 586 | 187 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 51 | a | Volume 2 • Issue 1 • 2016 • e12 | 215 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 52 | a | 1 | 30 | 30 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 53 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 54 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 55 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 56 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 57 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 58 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 59 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 60 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 61 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 62 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 63 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 64 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 65 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 66 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 67 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 68 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 69 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 70 | a | Volume 2, Issue 1, 2016 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 71 | a | Volume 2, Issue 1, 2016 | 264 | 43 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 72 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 73 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 74 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/402/info/?theme=material | 75 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 10 | a | Equivocationary Horseshit: Post-Correlat | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 11 | a | Volume 6 • Issue 1 • 2020 • 8 | 199 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 12 | a | ‘World Now Thou Seest What Tis to Be a W | 586 | 187 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 13 | a | Volume 6 • Issue 1 • 2020 • 20 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 14 | a | Cartoon Controversies at the European Co | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 15 | a | Volume 6 • Issue 1 • 2020 • 22 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 16 | a | Umbanda: Africana or Esoteric? | 429 | 88 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 17 | a | Volume 6 • Issue 1 • 2020 • 25 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 18 | a | Bureaucracy and Desire: Franz Kafka’s Ac | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 19 | a | Volume 6 • Issue 1 • 2020 • 5 | 199 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 20 | a | Special Collection: Literature, Law and | 368 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 21 | a | The Transference and the Case of Sacco a | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 22 | a | Volume 6 • Issue 1 • 2020 • 6 | 199 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 23 | a | Special Collection: Literature, Law and | 368 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 24 | a | The ‘Reasonable Man’ in Colonial Nigeria | 549 | 88 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 25 | a | Volume 6 • Issue 1 • 2020 • 7 | 199 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 26 | a | Special Collection: Literature, Law and | 368 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 27 | a | Where Do I Put It? James Joyce’s Buck Mu | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 28 | a | Volume 6 • Issue 1 • 2020 • 9 | 199 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 29 | a | Special Collection: Literature, Law and | 368 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 30 | a | Justice Denied: Literary, Legal and Psyc | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 31 | a | Volume 6 • Issue 1 • 2020 • 14 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 32 | a | Special Collection: Literature, Law and | 368 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 33 | a | ‘Between Law and Transgression: Literatu | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 34 | a | Volume 6 • Issue 1 • 2020 • 17 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 35 | a | Special Collection: Literature, Law and | 368 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 36 | a | ‘What I was told about lesbians really d | 586 | 187 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 37 | a | Volume 6 • Issue 1 • 2020 • 4 | 199 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 38 | a | Special Collection: Pride Revisited: Cin | 477 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 39 | a | Performing Pride: Re-enactment, Queer Id | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 40 | a | Volume 6 • Issue 1 • 2020 • 24 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 41 | a | Special Collection: Pride Revisited: Cin | 477 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 42 | a | VPIP: A Lexical Identification Procedure | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 43 | a | Volume 6 • Issue 1 • 2020 • 18 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 44 | a | Special Collection: The Language of Pers | 328 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 45 | a | John Rodker on Theatre: Rethinking the M | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 46 | a | Volume 6 • Issue 1 • 2020 • 3 | 199 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 47 | a | Special Collection: The Working-Class Av | 344 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 48 | a | ‘Barbaric Peoples of the Earth’: The Ava | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 49 | a | Volume 6 • Issue 1 • 2020 • 10 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 50 | a | Special Collection: The Working-Class Av | 344 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 51 | a | Erotic Class Masquerade: Sex and Working | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 52 | a | Volume 6 • Issue 1 • 2020 • 13 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 53 | a | Special Collection: The Working-Class Av | 344 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 54 | a | Black Country Dionysus —Archie Hill and | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 55 | a | Volume 6 • Issue 1 • 2020 • 23 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 56 | a | Special Collection: The Working-Class Av | 344 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 57 | a | Les Artistes du Groupe de Calcutta (1943 | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 58 | a | Volume 6 • Issue 1 • 2020 • 1 | 199 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 59 | a | Special Collection: Encounters between A | 586 | 53 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 60 | a | Duchamp et la Chine | 283 | 88 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 61 | a | Volume 6 • Issue 1 • 2020 • 11 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 62 | a | Special Collection: Encounters between A | 586 | 53 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 63 | a | Imitation et Réciprocité dans la Créatio | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 64 | a | Volume 6 • Issue 1 • 2020 • 16 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 65 | a | Special Collection: Encounters between A | 586 | 53 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 66 | a | Nationed Silences, Interventions and (Di | 586 | 187 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 67 | a | Volume 6 • Issue 1 • 2020 • 12 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 68 | a | Special Collection: Writers and Intellec | 526 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 69 | a | ‘It aye like London, you know’: The Brex | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 70 | a | Volume 6 • Issue 1 • 2020 • 15 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 71 | a | Special Collection: Writers and Intellec | 526 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 72 | a | Gibraltarian Hauntologies: Spectres of C | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 73 | a | Volume 6 • Issue 1 • 2020 • 19 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 74 | a | Special Collection: Writers and Intellec | 526 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 75 | a | Scottish Internationalisms at the 1938 E | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 76 | a | Volume 6 • Issue 1 • 2020 • 21 | 207 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 77 | a | Special Collection: Writers and Intellec | 526 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 78 | a | Introduction to the Authors, Narratives, | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 79 | a | Volume 6 • Issue 1 • 2020 • 2 | 199 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 80 | a | Special Collection: Authors, Narratives, | 533 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 81 | a | 1 | 30 | 30 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 82 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 83 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 84 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 85 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 86 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 87 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 88 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 89 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 90 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 91 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 92 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 93 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 94 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 95 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 96 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 97 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 98 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 99 | a | Volume 6, Issue 1, 2020 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 100 | a | Volume 6, Issue 1, 2020 | 264 | 43 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 101 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 102 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 103 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/issue/409/info/?theme=material | 104 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=material | 10 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 11 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 12 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 13 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 14 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 15 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 16 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 17 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 18 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 19 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 20 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 21 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 22 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 23 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 24 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 25 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 26 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 27 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 28 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 29 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 30 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 31 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 32 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 33 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 34 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 35 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 36 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 37 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 38 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 39 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 40 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 41 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 42 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 43 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 44 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 45 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 46 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 47 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 48 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 49 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 50 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 51 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 52 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 53 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 54 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 55 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 56 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 57 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 58 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 59 | a | View Collection | 128 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/?theme=material | 60 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=material | 61 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=material | 62 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/?theme=material | 63 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/collections/846/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 10 | a | Borders, Burials, and the Extended Mind | 586 | 154 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 11 | a | Volume 9 • Issue 1 • 2023 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 12 | a | Special Collection: Medieval Minds and M | 316 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 13 | a | Playing with the Mind: Magic Tricks in L | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 14 | a | Volume 9 • Issue 2 • 2023 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 15 | a | Special Collection: Medieval Minds and M | 316 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 16 | a | (Un)staþolfæstnes and its Problems: Grou | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 17 | a | Volume 9 • Issue 2 • 2023 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 18 | a | Special Collection: Medieval Minds and M | 316 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 19 | a | Does the Mind Suffer? Living Bodies, Bra | 586 | 187 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 20 | a | Volume 9 • Issue 2 • 2023 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 21 | a | Special Collection: Medieval Minds and M | 316 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 22 | a | Anhyld þinre heortan eare: Mind as Body | 586 | 121 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 23 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 24 | a | Special Collection: Medieval Minds and M | 316 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 25 | a | 1 | 30 | 30 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 26 | a | Humour as a Human Right | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 27 | a | Cultural Heritage Data for Research: Ope | 264 | 134 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 28 | a | Caliban's Mirror: Reflections of James J | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 29 | a | Cultural Representations of Machine Visi | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 30 | a | The Public Curatorship of the Medieval P | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 31 | a | Medieval Minds and Matter | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 32 | a | Representing the Medieval in Popular Cul | 264 | 89 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 33 | a | The Politics and History of Menstruation | 264 | 111 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 34 | a | Production Archives 03: Archival Practic | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 35 | a | Production Archives 02: Production Conte | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 36 | a | Production Archives 01: Puppets for Acti | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 37 | a | Representing Classical Music in the Twen | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 38 | a | The Pathological Body: European Literary | 264 | 89 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 39 | a | Binary Modernisms: Re/Appropriations of | 264 | 89 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 40 | a | Local and Universal in Irish Literature | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 41 | a | Reading in Ruins: Exploring Posthumanist | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 42 | a | The Language of Perspective | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 43 | a | Nancy Astor, Public Women and Gendered P | 264 | 89 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 44 | a | The Working-Class Avant-Garde | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 45 | a | Colonialities in Dispute: Discourses on | 264 | 89 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 46 | a | Powering the Future: Energy Resources in | 264 | 89 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 47 | a | Writers and Intellectuals on Britain and | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 48 | a | Literature, Law and Psychoanalysis | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 49 | a | Muslims in the Media | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 50 | a | Encounters between Asian and Western Art | 264 | 111 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 51 | a | Waste: Disposability, Decay, and Depleti | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 52 | a | Pride Revisited: Cinema, Activism and Re | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 53 | a | New Approaches to Late Medieval Court Re | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 54 | a | Utopian Art and Literature from Modern I | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 55 | a | Right-Wing Populism and Mediated Activis | 264 | 111 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 56 | a | Representing Climate: Local to Global | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 57 | a | Cultivating Spheres: Agriculture, Techni | 264 | 89 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 58 | a | Freedom After Neoliberalism | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 59 | a | The Medieval Brain | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 60 | a | Remaking Collections | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 61 | a | New Approaches to Medieval Water Studies | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 62 | a | Imaginaries of the Future 01: Bodies and | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 63 | a | Imaginaries of the Future 02: Politics, | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 64 | a | Imaginaries of the Future 03: Utopia at | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 65 | a | Postcolonial Perspectives in Game Studie | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 66 | a | Station Eleven and Twenty-First-Century | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 67 | a | #Agreement20 | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 68 | a | What’s Left? Marxism, Literature and Cul | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 69 | a | New Voices in Jewish-American Literature | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 70 | a | Authors, Narratives, and Audiences in Me | 264 | 89 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 71 | a | From TV To Film | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 72 | a | American Literature & the Transnational | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 73 | a | Mnemosyne | 264 | 44 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 74 | a | Healing Gods, Heroes and Rituals in the | 264 | 66 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 75 | a | The Abolition of the University | 264 | 43 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 76 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 77 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 78 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/collections/846/?theme=material | 79 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 10 | a | Read More | 82 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=material | 11 | a | Read More | 82 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=material | 12 | a | Read More | 82 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=material | 13 | a | Read More | 82 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=material | 14 | a | Read More | 82 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=material | 15 | a | Read More | 82 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=material | 16 | a | Read More | 82 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=material | 17 | a | Read More | 82 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=material | 18 | a | Read More | 82 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=material | 19 | a | Read More | 82 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=material | 20 | a | Read More | 82 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=material | 21 | a | Read More | 82 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/?theme=material | 22 | a | 1 | 40 | 36 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 23 | a | 2 | 40 | 36 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 24 | a | » next page | 39 | 36 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 25 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 26 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 27 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/?theme=material | 28 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/429/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 10 | a | OLH Special Collections | 135 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 11 | a | OLH Special Collections | 168 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 12 | a | Digital Humanities | 130 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 13 | a | Back to News List | 140 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/news/429/?theme=material | 14 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 15 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 16 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/news/429/?theme=material | 17 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/articles/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 10 | input | text | 298 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 11 | a | 'Unity in Diversity': Centralised Britis | 586 | 174 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 12 | a | Volume 8 • Issue 1 • 2022 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 13 | a | Special Collection: The Working-Class Av | 344 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 14 | a | Tim Renkow’s Jerk: Cringe Comedy, Disabi | 586 | 141 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 15 | a | Volume 10 • Issue 2 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 16 | a | Special Collection: Humour as a Human Ri | 311 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 17 | a | The Public Curatorship of the Medieval P | 586 | 138 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 18 | a | Volume 10 • Issue 2 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 19 | a | Special Collection: The Public Curatorsh | 426 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 20 | a | Implementing Linked Art in a Multi-Modal | 586 | 174 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 21 | a | Volume 10 • Issue 2 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 22 | a | Special Collection: Cultural Heritage Da | 586 | 53 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 23 | a | Semantic Instability and Philosophical P | 586 | 174 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 24 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 25 | a | Special Collection: Caliban's Mirror: Re | 542 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 26 | a | Might a Sense of Place Approach Help the | 586 | 174 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 27 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 28 | a | Special Collection: The Public Curatorsh | 426 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 29 | a | Christoph Schlingensief im Spannungsfeld | 586 | 174 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 30 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 31 | a | Special Collection: Production Archives | 433 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 32 | a | A Politics of Working-Class Culture and | 586 | 246 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 33 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 34 | a | Special Collection: The Working-Class Av | 344 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 35 | a | As Camp as a Row of Pink Tents: Stephen’ | 586 | 138 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 36 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 37 | a | Special Collection: Caliban's Mirror: Re | 542 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 38 | a | Henry Moore: Neo-Working-Classicist | 555 | 101 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 39 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 40 | a | Special Collection: The Working-Class Av | 344 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 41 | a | Mimesis, Diegesis, and Narrative Frames: | 586 | 138 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 42 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 43 | a | Special Collection: Local and Universal | 460 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 44 | a | Exile and Exodus: Dante, Wilde, Joyce | 555 | 101 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 45 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 46 | a | Special Collection: Caliban's Mirror: Re | 542 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 47 | a | James Joyce, Oscar Wilde, and Punitive C | 586 | 174 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 48 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 49 | a | Special Collection: Caliban's Mirror: Re | 542 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 50 | a | Island Girl, Universal Woman: Peig: A Sc | 586 | 174 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 51 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 52 | a | Special Collection: Local and Universal | 460 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 53 | a | The Illusion of Accuracy: Simulating the | 586 | 174 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 54 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 55 | a | Special Collection: The Public Curatorsh | 426 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 56 | a | Moments of Being-in-the-Archive | 487 | 101 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 57 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 58 | a | Special Collection: Production Archives | 416 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 59 | a | Gesamtkunstwerk Transcriptions in the Po | 586 | 138 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 60 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 61 | a | Special Collection: Production Archives | 433 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 62 | a | Anhyld þinre heortan eare: Mind as Body | 586 | 138 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 63 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 64 | a | Special Collection: Medieval Minds and M | 316 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 65 | a | The Symbiosis of Language(s), Literature | 586 | 138 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 66 | a | Volume 10 • Issue 1 • 2024 | 186 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 67 | a | Special Collection: The Pathological Bod | 586 | 53 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 68 | a | Awesome, but Impractical? Deeper Engagem | 586 | 174 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 69 | a | Volume 9 • Issue 2 • 2023 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 70 | a | Special Collection: The Public Curatorsh | 426 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 71 | a | Does the Mind Suffer? Living Bodies, Bra | 586 | 210 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 72 | a | Volume 9 • Issue 2 • 2023 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 73 | a | Special Collection: Medieval Minds and M | 316 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 74 | a | Cultural Heritage at Conisbrough Castle: | 586 | 246 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 75 | a | Volume 9 • Issue 2 • 2023 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 76 | a | Special Collection: The Public Curatorsh | 426 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 77 | a | The Lives Have It: Curating the Medieval | 586 | 174 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 78 | a | Volume 9 • Issue 2 • 2023 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 79 | a | Special Collection: The Public Curatorsh | 426 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 80 | a | Machinic Visibility in Platform Discours | 586 | 174 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 81 | a | Volume 9 • Issue 2 • 2023 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 82 | a | Special Collection: Cultural Representat | 422 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 83 | a | ‘The Substance of Paint’: Class and Mate | 586 | 138 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 84 | a | Volume 9 • Issue 2 • 2023 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 85 | a | Special Collection: The Working-Class Av | 344 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 86 | a | Page. 1 | 30 | 30 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 87 | a | Page. 2 | 30 | 30 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 88 | a | Page. 3 | 30 | 30 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 89 | a | Page. 15 | 40 | 30 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 90 | a | Next page. | 26 | 38 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 91 | input | text | 298 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 92 | input | text | 314 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 93 | button | Search | 90 | 36 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 94 | input | text | 314 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 95 | input | text | 314 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 96 | button | Apply | 77 | 36 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 97 | button | Clear all | 109 | 36 | :x: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 98 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 99 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 100 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/articles/?theme=material | 101 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 10 | a | Saint Augustine-Ancient Greek-Pedagogy- | 621 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 11 | a | D.O.I. for Non amabam Litteras Graecas. Note sulla | 236 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 12 | button | Copy | 105 | 27 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 13 | a | Waquet, 2004: 251–254 | 167 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 14 | a | Canfora and Cardinale, 2012 | 197 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 15 | a | Olivia, 2008: 13 | 109 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 16 | a | Milanese, 2012: 67–82 | 160 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 17 | a | Ricucci, 2012 | 97 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 18 | a | 2014a | 50 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 19 | a | 1975 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 20 | a | Ricucci, 2013 | 97 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 21 | a | 2014b | 50 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 22 | a | 1 | 14 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 23 | a | 2 | 14 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 24 | a | 3 | 14 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 25 | a | Krashen, 1991 | 103 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 26 | a | Howatt and Smith, 2002 | 168 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 27 | a | Titone, 1987: 5 | 106 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 28 | a | Titone, 1987: 5 | 106 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 29 | a | Howatt, 1984: 284 | 130 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 30 | a | Schulz, 1975 | 93 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 31 | a | Lightbown, 1985 | 118 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 32 | a | Lightbown, 2000 | 118 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 33 | a | Debyser, 1973: 63–68 | 152 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 34 | a | Puren, 1994 | 87 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 35 | a | Serra Borneto, 1998 | 140 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 36 | a | Kumaravadivelu, 1994 | 155 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 37 | a | 2006 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 38 | a | Celce-murcia, 1980 | 136 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 39 | a | 4 | 14 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 40 | a | Van Patten and Williams, 2005: 25 | 235 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 41 | a | 1994: 45–46 | 93 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 42 | a | 5 | 14 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 43 | a | 6 | 14 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 44 | a | 7 | 14 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 45 | a | Kirwan, 1994: 188 | 127 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 46 | a | 8 | 14 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 47 | a | McLynn, 2005 | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 48 | a | 9 | 14 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 49 | a | 10 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 50 | a | Bellissima, 1955 | 117 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 51 | a | Collart, 1971 | 93 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 52 | a | Louth, 1989: 151 | 119 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 53 | a | 11 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 54 | a | 12 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 55 | a | 13 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 56 | a | 14 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 57 | a | 15 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 58 | a | 16 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 59 | a | Alfonsi, 1971: 42 | 119 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 60 | a | 17 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 61 | a | Bonner, 1986: 180–183 | 163 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 62 | a | Neraudau, 1996: 58–59 | 164 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 63 | a | 18 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 64 | a | 19 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 65 | a | 20 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 66 | a | Courcelle, 1943: 142 | 144 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 67 | a | Marrou, 19584: 446 s. | 151 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 68 | a | Solignac, 1962: 667 | 139 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 69 | a | 21 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 70 | a | 22 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 71 | a | 23 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 72 | a | 24 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 73 | a | 25 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 74 | a | 26 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 75 | a | 27 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 76 | a | 28 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 77 | a | 29 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 78 | a | Miraglia 2004: 231–234 | 167 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 79 | a | Green, 1951 | 88 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 80 | a | Adams, 2003: 213–245 | 163 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 81 | a | Adams, 2003: 192–194 | 163 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 82 | a | 2010: 531 | 74 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 83 | a | 30 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 84 | a | 31 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 85 | a | 32 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 86 | a | 33 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 87 | a | Marrou, 1966: 365–366 | 164 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 88 | a | 34 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 89 | a | Simone, 1969: 106 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 90 | a | 35 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 91 | a | Korhonen, 1996: 107 | 145 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 92 | a | Flammini, 1990: 17 | 135 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 93 | a | Tagliaferro, 2008: 68 | 144 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 94 | a | 36 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 95 | a | 1985: 4 | 58 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 96 | a | 19872: 66–67 | 99 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 97 | a | Cambiano, 1992: 526 | 149 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 98 | a | Sandys, 19102: 235 | 136 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 99 | a | Gallo, 2003: 94 | 107 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 100 | a | 37 | 21 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 101 | a | Dombart and Kalb (ed.) 1960 | 200 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 102 | a | Weigel 1961 | 90 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 103 | a | Martin 1962 | 89 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 104 | a | Verheijen 1991 | 107 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 105 | a | Doignon 1997 | 101 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 106 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 107 | a | Too, 2001 | 74 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 108 | a | Vössing, 2003 | 102 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 109 | a | Pernot, 2008 | 93 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 110 | a | Bellandi and Ferri, 2008 | 164 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 111 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 112 | a | Laes, 2013 | 80 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 113 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 114 | a | Krashen, 1981 | 103 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 115 | a | Krashen and Terrell, 1983 | 177 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 116 | a | Krashen, 2003 | 103 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 117 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 118 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 119 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 120 | a | Lightbown and Spada, 20113: 38 | 223 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 121 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 122 | a | Ando, 1994 | 83 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 123 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 124 | a | Vössing, 1992 | 102 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 125 | a | Vössing, 1997 | 102 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 126 | a | Moretti, 2009 | 96 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 127 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 128 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 129 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 130 | a | Vecchio, 1994 | 102 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 131 | a | Manetti, 1987: 226–227 | 167 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 132 | a | Preti, 1956 | 79 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 133 | a | Baratin, 1981 | 96 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 134 | a | Toom, 2009 | 87 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 135 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 136 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 137 | a | Markus, 1957 | 98 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 138 | a | Jackson, 1969 | 105 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 139 | a | Ruef, 1981 | 79 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 140 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 141 | a | Kirwan, 2001 | 94 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 142 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 143 | a | Henninger, 1989 | 116 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 144 | a | Paffenroth and Hughes, 2000 | 203 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 145 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 146 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 147 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 148 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 149 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 150 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 151 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 152 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 153 | a | Kaimio, 1979: 195–207 | 163 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 154 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 155 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 156 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 157 | a | Debut, 1983 | 88 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 158 | a | Dickey, 2012 | 91 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 159 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 160 | a | 2004: 226–227 | 110 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 161 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 162 | a | Rochette, 2008: 89–90 | 159 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 163 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 164 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 165 | a | Van Patten and Benati, 2010: 43 | 220 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 166 | a | Gardner, 1985: 10 | 125 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 167 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 168 | a | 19762: 323 | 81 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 169 | a | 1997: 126 | 74 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 170 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 171 | a | Pallotti, 20012: 219–220 | 169 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 172 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 173 | a | Diller, 1978: 72 | 106 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 174 | a | Richards and Rodgers, 20012: 9 | 217 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 175 | a | Titone, 1968: 100–101 | 158 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 176 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 177 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 178 | a | Rivers, 1964: 19–20 | 140 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 179 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 180 | a | Moreschini, 1979: 38 s. | 162 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 181 | a | ⮭ | 18 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 182 | a | 3. Agostino: “linguista”, docente e discente 1, Ad | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 183 | a | 3. Agostino: “linguista”, docente e discente 2, Ad | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 184 | a | 3. Agostino: “linguista”, docente e discente, Alfo | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 185 | a | Notes, Ando, 1994 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 186 | a | Notes, Baratin, 1981 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 187 | a | Notes, Bellandi and Ferri, 2008 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 188 | a | 3. Agostino: “linguista”, docente e discente, Bell | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 189 | a | 3. Agostino: “linguista”, docente e discente, Bonn | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 190 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 191 | a | 1. Premessa, Canfora and Cardinale, 2012 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 192 | a | 2. Second Language Acquisition: la posizione di Kr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 193 | a | 3. Agostino: “linguista”, docente e discente, Coll | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 194 | a | 3. Agostino: “linguista”, docente e discente, Cour | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 195 | a | Notes, Debut, 1983 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 196 | a | 2. Second Language Acquisition: la posizione di Kr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 197 | a | Notes, Dickey, 2012 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 198 | a | Notes, Diller, 1978: 72 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 199 | a | Notes, Doignon 1997 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 200 | a | Notes, Dombart and Kalb (ed.) 1960 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 201 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 202 | a | 5. Conclusioni, Gallo, 2003: 94 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 203 | a | Notes, Gardner, 1985: 10 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 204 | a | 3. Agostino: “linguista”, docente e discente, Gree | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 205 | a | Notes, Henninger, 1989 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 206 | a | 2. Second Language Acquisition: la posizione di Kr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 207 | a | 2. Second Language Acquisition: la posizione di Kr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 208 | a | Notes, Jackson, 1969 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 209 | a | Notes, Kaimio, 1979: 195–207 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 210 | a | Notes, 19762: 323 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 211 | a | 3. Agostino: “linguista”, docente e discente, Kirw | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 212 | a | Notes, Kirwan, 2001 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 213 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 214 | a | Notes, Krashen, 1981 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 215 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 216 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 217 | a | 1. Premessa, Krashen, 1991 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 218 | a | 2. Second Language Acquisition: la posizione di Kr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 219 | a | Notes, Krashen, 2003 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 220 | a | Notes, Krashen and Terrell, 1983 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 221 | a | 2. Second Language Acquisition: la posizione di Kr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 222 | a | 2. Second Language Acquisition: la posizione di Kr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 223 | a | Notes, Laes, 2013 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 224 | a | 2. Second Language Acquisition: la posizione di Kr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 225 | a | 2. Second Language Acquisition: la posizione di Kr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 226 | a | Notes, Lightbown and Spada, 20113: 38 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 227 | a | 3. Agostino: “linguista”, docente e discente, Lout | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 228 | a | Notes, Manetti, 1987: 226–227 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 229 | a | Notes, Markus, 1957 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 230 | a | 3. Agostino: “linguista”, docente e discente, Marr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 231 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 232 | a | Notes, Martin 1962 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 233 | a | 3. Agostino: “linguista”, docente e discente, McLy | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 234 | a | 1. Premessa, Milanese, 2012: 67–82 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 235 | a | 3. Agostino: “linguista”, docente e discente | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 236 | a | Notes | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 237 | a | Notes, Moreschini, 1979: 38 s. | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 238 | a | Notes, Moretti, 2009 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 239 | a | 3. Agostino: “linguista”, docente e discente, 2010 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 240 | a | 3. Agostino: “linguista”, docente e discente, Nera | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 241 | a | http://www.treellle.org/files/lll/QA1.pd | 268 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 242 | a | 1. Premessa, Olivia, 2008: 13 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 243 | a | 1. Premessa, 1975 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 244 | a | Notes, Paffenroth and Hughes, 2000 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 245 | a | Notes, Pallotti, 20012: 219–220 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 246 | a | Notes, Pernot, 2008 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 247 | a | Notes, 1997: 126 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 248 | a | Notes, Preti, 1956 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 249 | a | 2. Second Language Acquisition: la posizione di Kr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 250 | a | Notes, Richards and Rodgers, 20012: 9 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 251 | a | 1. Premessa, Ricucci, 2012 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 252 | a | 1. Premessa, Ricucci, 2013 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 253 | a | 1. Premessa, 2014a | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 254 | a | 1. Premessa, 2014b | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 255 | a | Notes, Rivers, 1964: 19–20 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 256 | a | Notes, Rochette, 2008: 89–90 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 257 | a | Notes, Ruef, 1981 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 258 | a | 5. Conclusioni, Sandys, 19102: 235 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 259 | a | 2. Second Language Acquisition: la posizione di Kr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 260 | a | 2. Second Language Acquisition: la posizione di Kr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 261 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 262 | a | 3. Agostino: “linguista”, docente e discente, Soli | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 263 | a | 4. Da Agostino a Krashen: la ricerca dell’acquisiz | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 264 | a | Notes, Titone, 1968: 100–101 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 265 | a | 2. Second Language Acquisition: la posizione di Kr | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 266 | a | 2. Second Language Acquisition: la posizione di Kr | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 267 | a | Notes, Too, 2001 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 268 | a | Notes, Toom, 2009 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 269 | a | 2. Second Language Acquisition: la posizione di Kr | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 270 | a | Notes, Van Patten and Benati, 2010: 43 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 271 | a | Notes, Vecchio, 1994 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 272 | a | Notes, Verheijen 1991 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 273 | a | Notes, Vössing, 1992 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 274 | a | Notes, Vössing, 1997 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 275 | a | Notes, Vössing, 2003 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 276 | a | 1. Premessa, Waquet, 2004: 251–254 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 277 | a | Notes, Weigel 1961 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 278 | button | decrease text size | 54 | 36 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 279 | button | increase text size | 69 | 36 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 280 | button | Dyslexia mode | 88 | 36 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 281 | input | text | 204 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 282 | button | Copy | 105 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 283 | a | 8346@example.org(compose email, opens in | 160 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 284 | a | View PDF (opens in new tab). | 87 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 285 | a | PDF (download.) | 65 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 286 | a | XML (download.) | 68 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 287 | a | reuploaded (download.) | 112 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 288 | a | and again reuploaded (download.) | 182 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 289 | a | from olh, actual article for this data ( | 271 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 290 | a | Volume 1 • Issue 1 • 2015 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 291 | a | licence test two html tags | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 292 | a | D.O.I. for Non amabam Litteras Graecas. Note sulla | 236 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 293 | a | Link | 36 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 294 | a | https://doi.org/10.16995/olh.6318 | 237 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 295 | a | 1. Premessa | 98 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 296 | a | 2. Second Language Acquisition: la posiz | 319 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 297 | a | 3. Agostino: “linguista”, docente e disc | 284 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 298 | a | 4. Da Agostino a Krashen: la ricerca del | 319 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 299 | a | 5. Conclusioni | 108 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 300 | a | Competing Interests | 146 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 301 | a | Notes | 57 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 302 | a | References | 90 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 303 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 304 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 305 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4403/?theme=material | 306 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 1 | a | Skip to main content | 137 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 2 | a | (no name) | 352 | 125 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 3 | a | Articles | 105 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 4 | a | Publish With Us | 158 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 5 | a | Editorial Policies | 164 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 6 | a | About | 94 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 7 | a | Become a Reviewer | 178 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 8 | a | Log in | 71 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 9 | a | Register | 85 | 90 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 10 | a | education, | 77 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 11 | a | political economy, | 128 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 12 | a | secular crisis, | 99 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 13 | a | university | 72 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 14 | a | D.O.I. for DEV: Evaluation of Fresh and Frozen Bee | 236 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 15 | button | Copy | 105 | 27 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 16 | a | Iskandar et al., 2019 | 142 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 17 | a | Buckley et al., 1977 | 136 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 18 | a | Pietrasik and Janz, 2009 | 171 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 19 | a | Pietrasik and Janz, 2009 | 171 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 20 | a | Grayson et al., 2014 | 139 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 21 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 22 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 23 | a | Botinestean et al., 2016 | 164 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 24 | a | Zhang et al., 2023 | 127 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 25 | a | Martino and Zaritzky, 1988 | 185 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 26 | a | Grayson et al., 2014 | 139 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 27 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 28 | a | Wheeler et al., 1990 | 139 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 29 | a | Lagerstedt et al., 2008 | 156 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 30 | a | Hergenreder et al., 2013 | 167 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 31 | a | Grayson et al., 2014 | 139 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 32 | a | Hergenreder et al., 2013 | 167 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 33 | a | Grayson et al., 2014 | 139 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 34 | a | 2014 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 35 | a | 2016 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 36 | a | 2013 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 37 | a | Pietrasik and Janz, 2009 | 171 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 38 | a | Figure 1 | 62 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 39 | a | Enlarge Figure 1. | 697 | 18 | :x: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 40 | a | Download | 75 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 41 | a | Drey et al., 2019 | 114 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 42 | a | Olson et al., 2019 | 123 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 43 | a | Prill et al., 2019 | 110 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 44 | a | Rice et al., 2019 | 113 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 45 | a | Beyer et al., 2021 | 122 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 46 | a | Farmer et al., 2022 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 47 | a | AMSA, 2015 | 90 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 48 | a | 2021 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 49 | a | Drey et al., 2019 | 114 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 50 | a | Olson et al., 2019 | 123 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 51 | a | Prill et al., 2019 | 110 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 52 | a | Rice et al., 2019 | 113 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 53 | a | Farmer et al., 2022 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 54 | a | AMSA, 2015 | 90 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 55 | a | 2022 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 56 | a | 1999 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 57 | a | King et al., 2023 | 114 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 58 | a | AMSA, 2015 | 90 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 59 | a | 2021 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 60 | a | King et al., 2023 | 114 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 61 | a | King et al., 2023 | 114 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 62 | a | 1998 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 63 | a | Dahmer et al., 2022 | 137 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 64 | a | Table 1 | 56 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 65 | a | Download | 75 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 66 | button | View Larger Table | 144 | 30 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 67 | a | 2 | 16 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 68 | a | Download | 75 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 69 | button | View Larger Table | 144 | 30 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 70 | a | 1 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 71 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 72 | a | ab | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 73 | a | bc | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 74 | a | cd | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 75 | a | cd | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 76 | a | de | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 77 | a | e | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 78 | a | ef | 7 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 79 | a | e | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 80 | a | fg | 8 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 81 | a | g | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 82 | a | g | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 83 | a | gh | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 84 | a | ghi | 11 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 85 | a | hi | 7 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 86 | a | i | 2 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 87 | a | i | 2 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 88 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 89 | a | Table 3 | 56 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 90 | a | Download | 75 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 91 | a | 1 | 13 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 92 | button | View Larger Table | 144 | 30 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 93 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 94 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 95 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 96 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 97 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 98 | a | c | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 99 | a | c | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 100 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 101 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 102 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 103 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 104 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 105 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 106 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 107 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 108 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 109 | a | Table 4 | 56 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 110 | a | Table 5 | 56 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 111 | a | Download | 75 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 112 | button | View Larger Table | 144 | 30 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 113 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 114 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 115 | a | 1 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 116 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 117 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 118 | a | c | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 119 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 120 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 121 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 122 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 123 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 124 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 125 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 126 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 127 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 128 | a | 1 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 129 | a | Download | 75 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 130 | button | View Larger Table | 144 | 30 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 131 | a | 1 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 132 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 133 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 134 | a | c | 4 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 135 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 136 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 137 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 138 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 139 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 140 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 141 | a | 1 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 142 | a | Table 6 | 56 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 143 | a | Download | 75 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 144 | a | 1 | 13 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 145 | button | View Larger Table | 144 | 30 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 146 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 147 | a | 3 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 148 | a | 3 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 149 | a | 3 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 150 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 151 | a | 3 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 152 | a | 3 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 153 | a | 3 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 154 | a | 4 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 155 | a | Table 7 | 56 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 156 | a | Download | 75 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 157 | a | 1 | 13 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 158 | button | View Larger Table | 144 | 30 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 159 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 160 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 161 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 162 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 163 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 164 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 165 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 166 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 167 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 168 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 169 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 170 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 171 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 172 | a | Tables 8 | 64 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 173 | a | 9 | 16 | 31 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 174 | a | Download | 75 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 175 | button | View Larger Table | 144 | 30 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 176 | a | 1 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 177 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 178 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 179 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 180 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 181 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 182 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 183 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 184 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 185 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 186 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 187 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 188 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 189 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 190 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 191 | a | ab | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 192 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 193 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 194 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 195 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 196 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 197 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 198 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 199 | a | Download | 75 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 200 | button | View Larger Table | 144 | 30 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 201 | a | 1 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 202 | a | 2 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 203 | a | 3 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 204 | a | 4 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 205 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 206 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 207 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 208 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 209 | a | 5 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 210 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 211 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 212 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 213 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 214 | a | ab | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 215 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 216 | a | a | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 217 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 218 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 219 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 220 | a | ab | 9 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 221 | a | b | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 222 | a | 5 | 5 | 18 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 223 | a | Lagerstedt et al., 2008 | 156 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 224 | a | Grayson et al., 2014 | 139 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 225 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 226 | a | Rahelić et al., 1985 | 133 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 227 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 228 | a | Lagerstedt et al., 2008 | 156 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 229 | a | Grayson et al., 2014 | 139 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 230 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 231 | a | 2008 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 232 | a | 2014 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 233 | a | Koohmaraie, 1990 | 129 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 234 | a | Koohmaraie, 1990 | 129 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 235 | a | Kristensen et al., 2006 | 155 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 236 | a | Grayson et al., 2014 | 139 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 237 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 238 | a | Grayson et al., 2014 | 139 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 239 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 240 | a | Wheeler et al., 1990 | 139 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 241 | a | Lagerstedt et al., 2008 | 156 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 242 | a | Grayson et al., 2014 | 139 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 243 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 244 | a | 2013 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 245 | a | Grujić et al., 1993 | 123 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 246 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 247 | a | 2013 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 248 | a | Leygonie et al., 2012 | 144 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 249 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 250 | a | Kim et al., 2018 | 111 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 251 | a | 2016 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 252 | a | 2016 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 253 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 254 | a | Leygonie et al., 2012 | 144 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 255 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 256 | a | Kim et al., 2018 | 111 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 257 | a | Sánchez del Pulgar et al., 2012 | 212 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 258 | a | English et al., 2016 | 133 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 259 | a | Ramanathan et al., 2020 | 169 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 260 | a | English et al., 2016 | 133 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 261 | a | Jeong et al., 2011 | 126 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 262 | a | Bekhit and Faustman, 2005 | 189 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 263 | a | 2014 | 42 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 264 | a | Hergenreder et al., 2013 | 167 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 265 | a | Jeong et al., 2011 | 126 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 266 | a | Nair et al., 2017 | 112 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 267 | a | Rahman et al., 2015 | 140 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 268 | a | Setyabrata and Kim, 2019 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 269 | a | Al-Dalali et al., 2022 | 139 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 270 | a | Rahman et al., 2015 | 140 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 271 | a | Setyabrata and Kim, 2019 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 272 | a | Zhang et al., 2023 | 127 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 273 | a | Xia et al., 2009 | 106 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 274 | a | Bao et al., 2021 | 111 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 275 | a | Xia et al., 2009 | 106 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 276 | a | Zhang et al., 2019 | 127 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 277 | a | Leygonie et al., 2012 | 144 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 278 | a | Aroeira et al., 2016 | 132 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 279 | a | Kim et al., 2018 | 111 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 280 | a | Pietrasik and Janz, 2009 | 171 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 281 | a | https://doi.org/10.1016/S0309-1740(97)00 | 333 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 282 | a | Lipid oxidation, 1998 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 283 | a | https://doi.org/10.1016/j.foodchem.2021. | 338 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 284 | a | Discussion, Al-Dalali et al., 2022 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 285 | a | Trained sensory panels | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 286 | a | Consumer sensory panels | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 287 | a | Shear force, cooking characteristics, and internal | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 288 | a | https://doi.org/10.1016/j.meatsci.2016.0 | 319 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 289 | a | Introduction 1, Aroeira et al., 2016 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 290 | a | Introduction 2, Aroeira et al., 2016 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 291 | a | Introduction 3, Aroeira et al., 2016 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 292 | a | Introduction 4, 2016 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 293 | a | Discussion 1, Aroeira et al., 2016 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 294 | a | Discussion 2, Aroeira et al., 2016 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 295 | a | Discussion 3, Aroeira et al., 2016 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 296 | a | Discussion 4, Aroeira et al., 2016 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 297 | a | Discussion 5, Aroeira et al., 2016 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 298 | a | Discussion 6, Aroeira et al., 2016 | 54 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 299 | a | Discussion 7, Aroeira et al., 2016 | 54 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 300 | a | Discussion 8, Aroeira et al., 2016 | 54 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 301 | a | Discussion 9, 2016 | 54 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 302 | a | Discussion 10, 2016 | 54 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 303 | a | Discussion 11, Aroeira et al., 2016 | 54 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 304 | a | Discussion 12, Aroeira et al., 2016 | 54 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 305 | a | Discussion 13, Aroeira et al., 2016 | 54 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 306 | a | https://doi.org/10.1111/1541-4337.12841 | 288 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 307 | a | Discussion, Bao et al., 2021 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 308 | a | https://doi.org/10.1016/j.meatsci.2005.0 | 319 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 309 | a | Discussion, Bekhit and Faustman, 2005 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 310 | a | https://doi.org/10.22175/mmb.12424 | 259 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 311 | a | Trained sensory panels 1, Beyer et al., 2021 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 312 | a | Trained sensory panels 2, 2021 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 313 | a | https://doi.org/10.1016/j.lwt.2016.07.02 | 285 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 314 | a | Introduction, Botinestean et al., 2016 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 315 | a | https://www.jstor.org/stable/25557929 | 269 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 316 | a | https://www.jstor.org/stable/25557929 | 269 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 317 | a | Introduction, Buckley et al., 1977 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 318 | a | https://doi.org/10.1093/tas/txac060 | 251 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 319 | a | Lipid oxidation, Dahmer et al., 2022 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 320 | a | https://doi.org/10.1016/j.meatsci.2021.1 | 323 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 321 | a | Surface hydrophobicity, 2021 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 322 | a | https://doi.org/10.1093/jas/sky435 | 243 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 323 | a | Trained sensory panels | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 324 | a | Consumer sensory panels | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 325 | a | https://doi.org/10.2527/jas.2016-0561 | 265 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 326 | a | Discussion 1, English et al., 2016 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 327 | a | Discussion 2, English et al., 2016 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 328 | a | https://doi.org/10.22175/mmb.15488 | 259 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 329 | a | Trained sensory panels | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 330 | a | Consumer sensory panels 1, Farmer et al., 2022 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 331 | a | Consumer sensory panels 2, 2022 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 332 | a | https://doi.org/10.1016/S0309-1740(03)00 | 333 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 333 | a | https://doi.org/10.2527/jas.2014-7613 | 265 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 334 | a | Introduction 1, Grayson et al., 2014 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 335 | a | Introduction 2, Grayson et al., 2014 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 336 | a | Introduction 3, Grayson et al., 2014 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 337 | a | Introduction 4, Grayson et al., 2014 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 338 | a | Introduction 5, 2014 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 339 | a | Discussion 1, Grayson et al., 2014 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 340 | a | Discussion 2, Grayson et al., 2014 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 341 | a | Discussion 3, 2014 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 342 | a | Discussion 4, Grayson et al., 2014 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 343 | a | Discussion 5, Grayson et al., 2014 | 54 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 344 | a | Discussion 6, Grayson et al., 2014 | 54 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 345 | a | https://doi.org/10.1016/0309-1740(93)900 | 324 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 346 | a | Discussion, Grujić et al., 1993 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 347 | a | https://doi.org/10.2527/jas.2012-5223 | 265 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 348 | a | Introduction 1, Hergenreder et al., 2013 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 349 | a | Introduction 2, Hergenreder et al., 2013 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 350 | a | Introduction 3, 2013 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 351 | a | Discussion 1, 2013 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 352 | a | Discussion 2, 2013 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 353 | a | Discussion 3, Hergenreder et al., 2013 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 354 | a | https://doi.org/10.1088/1755-1315/365/1/ | 345 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 355 | a | Introduction, Iskandar et al., 2019 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 356 | a | https://doi.org/10.1016/j.foodres.2011.0 | 317 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 357 | a | Discussion 1, Jeong et al., 2011 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 358 | a | Discussion 2, Jeong et al., 2011 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 359 | a | https://doi.org/10.1016/j.meatsci.2018.0 | 319 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 360 | a | Discussion 1, Kim et al., 2018 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 361 | a | Discussion 2, Kim et al., 2018 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 362 | a | Discussion 3, Kim et al., 2018 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 363 | a | https://doi.org/10.22175/mmb.12473 | 259 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 364 | a | Shear force, cooking characteristics, and internal | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 365 | a | Metmyoglobin-reducing activity 1, King et al., 202 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 366 | a | Metmyoglobin-reducing activity 2, King et al., 202 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 367 | a | https://doi.org/10.2527/1990.683659x | 266 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 368 | a | Discussion 1, Koohmaraie, 1990 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 369 | a | Discussion 2, Koohmaraie, 1990 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 370 | a | https://doi.org/10.1016/j.meatsci.2005.0 | 319 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 371 | a | Discussion, Kristensen et al., 2006 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 372 | a | https://doi.org/10.1016/j.meatsci.2008.0 | 319 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 373 | a | Introduction | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 374 | a | Discussion 1, Lagerstedt et al., 2008 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 375 | a | Discussion 2, Lagerstedt et al., 2008 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 376 | a | Discussion 3, 2008 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 377 | a | Discussion 4, Lagerstedt et al., 2008 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 378 | a | https://doi.org/10.1016/j.meatsci.2012.0 | 319 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 379 | a | Discussion 1, Leygonie et al., 2012 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 380 | a | Discussion 2, Leygonie et al., 2012 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 381 | a | Discussion 3, Leygonie et al., 2012 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 382 | a | https://doi.org/10.1111/j.1365-2621.1988 | 358 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 383 | a | Introduction, Martino and Zaritzky, 1988 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 384 | a | https://doi.org/10.22175/mmb2017.07.0037 | 305 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 385 | a | Discussion, Nair et al., 2017 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 386 | a | https://doi.org/10.22175/mmb2019.07.0022 | 305 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 387 | a | Trained sensory panels | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 388 | a | Consumer sensory panels | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 389 | a | https://doi.org/10.1016/j.meatsci.2008.1 | 319 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 390 | a | Introduction 1, Pietrasik and Janz, 2009 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 391 | a | Introduction 2, Pietrasik and Janz, 2009 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 392 | a | Introduction 3, Pietrasik and Janz, 2009 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 393 | a | Discussion | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 394 | a | https://doi.org/10.22175/mmb2019.07.0024 | 305 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 395 | a | Trained sensory panels | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 396 | a | Consumer sensory panels | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 397 | a | https://doi.org/10.1016/0309-1740(85)900 | 324 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 398 | a | Discussion, Rahelić et al., 1985 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 399 | a | https://doi.org/10.5851/kosfa.2015.35.6. | 307 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 400 | a | Discussion 1, Rahman et al., 2015 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 401 | a | Discussion 2, Rahman et al., 2015 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 402 | a | https://doi.org/10.1021/acs.jafc.9b08098 | 285 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 403 | a | Discussion, Ramanathan et al., 2020 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 404 | a | https://doi.org/10.22175/mmb2019.07.0027 | 305 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 405 | a | Trained sensory panels | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 406 | a | Consumer sensory panels | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 407 | a | https://doi.org/10.1016/j.meatsci.2011.1 | 319 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 408 | a | Discussion, Sánchez del Pulgar et al., 2012 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 409 | a | https://doi.org/10.1016/j.meatsci.2019.0 | 319 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 410 | a | Discussion 1, Setyabrata and Kim, 2019 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 411 | a | Discussion 2, Setyabrata and Kim, 2019 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 412 | a | https://doi.org/10.2527/1999.77102693x | 283 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 413 | a | Shear force, cooking characteristics, and internal | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 414 | a | https://doi.org/10.1016/j.meatsci.2014.0 | 319 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 415 | a | Discussion, 2014 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 416 | a | https://doi.org/10.1111/j.1365-2621.1990 | 358 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 417 | a | Introduction | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 418 | a | Discussion | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 419 | a | https://doi.org/10.1016/j.meatsci.2009.0 | 319 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 420 | a | Discussion 1, Xia et al., 2009 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 421 | a | Discussion 2, Xia et al., 2009 | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 422 | a | https://doi.org/10.1016/j.foodchem.2022. | 338 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 423 | a | Introduction | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 424 | a | Discussion | 46 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 425 | a | https://doi.org/10.1016/j.meatsci.2018.1 | 319 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 426 | a | Discussion, Zhang et al., 2019 | 27 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 427 | button | decrease text size | 54 | 36 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 428 | button | increase text size | 69 | 36 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 429 | button | Dyslexia mode | 88 | 36 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 430 | input | text | 204 | 46 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 431 | button | Copy | 105 | 37 | :x: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 432 | a | 6504@example.org(compose email, opens in | 160 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 433 | a | View PDF (opens in new tab). | 87 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 434 | a | PDF (download.) | 65 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 435 | a | XML (download.) | 68 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 436 | a | dev test with figures (download.) | 172 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 437 | a | Volume 1 • Issue 1 • 2015 | 178 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 438 | a | figure 1 | 58 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 439 | a | Attribution — You must give appropriate credit, pr | 250 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 440 | a | D.O.I. for DEV: Evaluation of Fresh and Frozen Bee | 236 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 441 | a | Introduction | 95 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 442 | a | Materials and Methods | 163 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 443 | a | Results | 66 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 444 | a | Discussion | 88 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 445 | a | Conclusions | 97 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 446 | a | Acknowledgement | 136 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 447 | a | Reference | 83 | 23 | :white_check_mark: | :x: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 448 | a | Open Library of Humanities | 190 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 449 | a | Privacy Policy | 100 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 450 | a | Accessibility | 92 | 31 | :white_check_mark: | :white_check_mark: | +| http://localhost:8000/olh/article/id/4405/?theme=material | 451 | select | (no name) | 170 | 45 | :x: | :white_check_mark: | \ No newline at end of file