diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9ad50cb0..cf4f78d60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,65 +5,74 @@ on: branches: - main workflow_call: + inputs: + attest-package: + description: "Create GitHub provenance attestation for the package." + default: "false" + type: string + outputs: + artifact-name: + description: "Name of the uploaded artifact; use for artifact retrieval." + value: ${{ jobs.package.outputs.artifact-name }} jobs: - beefore: - name: Pre-test checks - runs-on: ubuntu-latest - strategy: - max-parallel: 4 - matrix: - task: - - 'flake8' - - 'towncrier-check' - - 'docs' - - 'package' - steps: - # Fetch main branch for comparison, then check out current branch. - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - ref: main - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Set up Python - uses: actions/setup-python@v5.3.0 - with: - python-version: 3.X - - name: Install dependencies - run: | - pip install --upgrade pip - pip install --upgrade setuptools - pip install --upgrade tox - - name: Run pre-test check - run: | - tox -e ${{ matrix.task }} + pre-commit: + name: Pre-commit checks + uses: beeware/.github/.github/workflows/pre-commit-run.yml@main + + towncrier: + name: Check towncrier + uses: beeware/.github/.github/workflows/towncrier-run.yml@main - python-versions: + package: + name: Package Colosseum + permissions: + id-token: write + contents: read + attestations: write + uses: beeware/.github/.github/workflows/python-package-create.yml@main + with: + attest: ${{ inputs.attest-package }} + + unit-tests: name: Python compatibility test - needs: beefore + needs: [ pre-commit, towncrier, package ] runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental }} strategy: + fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"] + python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "3.14" ] include: + # Builds must pass by default - experimental: false - - python-version: "3.12-dev" + # Development Python can fail without failing the entire job + - python-version: "3.14" experimental: true - steps: - - uses: actions/checkout@v4 + - name: Checkout + uses: actions/checkout@v4.2.2 + with: + fetch-depth: 0 + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5.3.0 with: python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - python -m pip install --upgrade setuptools - python -m pip install tox + allow-prereleases: true + + - name: Get Packages + uses: actions/download-artifact@v4.1.8 + with: + name: ${{ needs.package.outputs.artifact-name }} + path: dist + + - name: Install Tox + uses: beeware/.github/.github/actions/install-requirement@main + with: + requirements: tox + extra: dev + - name: Test - run: | - tox -e py + run: tox -e py --installpkg dist/colosseum-*.whl diff --git a/.github/workflows/config-file-deps-bump.yml b/.github/workflows/config-file-deps-bump.yml new file mode 100644 index 000000000..5a9040bcc --- /dev/null +++ b/.github/workflows/config-file-deps-bump.yml @@ -0,0 +1,12 @@ +name: Bump Config File Dependencies + +on: + schedule: + - cron: "0 20 * * SUN" # Sunday @ 2000 UTC + workflow_dispatch: + +jobs: + dep-bump-versions: + name: Bump Config File Dependencies + uses: beeware/.github/.github/workflows/dep-version-bump.yml@main + secrets: inherit diff --git a/.github/workflows/pre-commit-update.yml b/.github/workflows/pre-commit-update.yml new file mode 100644 index 000000000..2bc6a36f5 --- /dev/null +++ b/.github/workflows/pre-commit-update.yml @@ -0,0 +1,12 @@ +name: Update pre-commit + +on: + schedule: + - cron: "0 20 * * SUN" # Sunday @ 2000 UTC + workflow_dispatch: + +jobs: + pre-commit-update: + name: Update pre-commit + uses: beeware/.github/.github/workflows/pre-commit-update.yml@main + secrets: inherit diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2b2720931..1733a2bfa 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,25 +5,18 @@ on: types: published jobs: - publish: + deploy: runs-on: ubuntu-latest + permissions: + # This permission is required for trusted publishing. + id-token: write steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5.3.0 - with: - python-version: '3.x' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - python -m pip install --upgrade setuptools - python -m pip install tox - - name: Build release artefacts - run: | - tox -e package - - name: Publish release - env: - TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - run: | - tox -e publish + - uses: dsaltares/fetch-gh-release-asset@1.1.2 + with: + version: tags/${{ github.event.release.tag_name }} + file: ${{ github.event.repository.name }}.* + regex: true + target: dist/ + + - name: Publish release to production PyPI + uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 99f1e3cb8..738928f22 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,22 +3,58 @@ name: Create Release on: push: tags: - - 'v*' + - "v*" jobs: + ci: + name: CI + uses: ./.github/workflows/ci.yml + with: + attest-package: "true" + release: name: Create Release + needs: ci runs-on: ubuntu-latest + permissions: + contents: write + # This permission is required for trusted publishing. + id-token: write steps: - - name: Checkout code - uses: actions/checkout@v4 - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Set build variables + run: | + echo "VERSION=${GITHUB_REF_NAME#v}" | tee -a $GITHUB_ENV + + - name: Set up Python + uses: actions/setup-python@v5.3.0 + with: + python-version: "3.x" + + - name: Get packages + uses: actions/download-artifact@v4.1.8 + with: + name: ${{ needs.ci.outputs.artifact-name }} + path: dist + + - name: Install packages + run: pip install dist/*.whl + + - name: Check version number + # Check that the setuptools_scm-generated version number is still the same when + # installed from a wheel with setuptools_scm not present. + run: | + set -x + test $(python -c "from colosseum import __version__; print(__version__)") = $VERSION + + - name: Create release + uses: ncipollo/release-action@v1.15.0 with: - tag_name: ${{ github.ref }} - release_name: ${{ github.ref }} + name: ${{ env.VERSION }} draft: true - prerelease: false + artifacts: dist/* + artifactErrorsFailBuild: true + + - name: Publish release to Test PyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + repository_url: https://test.pypi.org/legacy/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 000000000..78e0831b3 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,28 @@ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v5.0.0 + hooks: + - id: check-toml + - id: check-yaml + - id: check-case-conflict + - id: check-docstring-first + - id: end-of-file-fixer + - id: trailing-whitespace + - repo: https://github.com/PyCQA/isort + rev: 5.13.2 + hooks: + - id: isort + additional_dependencies: [toml] + - repo: https://github.com/asottile/pyupgrade + rev: v3.19.1 + hooks: + - id: pyupgrade + args: [--py39-plus] + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 24.10.0 + hooks: + - id: black + - repo: https://github.com/PyCQA/flake8 + rev: 7.1.1 + hooks: + - id: flake8 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 09e27813f..7784e4e2f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,8 +1,7 @@ # Contributing -PyBee <3's contributions! +PyBee <3's contributions! -Please be aware, PyBee operates under a Code of Conduct. +Please be aware, PyBee operates under a Code of Conduct. See [CONTRIBUTING to PyBee](http://pybee.org/contributing) for details. - diff --git a/README.rst b/README.rst index 7d690357c..db7cf202b 100644 --- a/README.rst +++ b/README.rst @@ -24,7 +24,7 @@ Colosseum .. image:: https://img.shields.io/discord/836455665257021440?label=Discord%20Chat&logo=discord&style=plastic :target: https://beeware.org/bee/chat/ :alt: Discord server - + An independent implementation of the CSS layout algorithm. This implementation is completely standalone - it isn't dependent on a browser, and can be run over any box-like set of objects that @@ -72,16 +72,16 @@ Contributing If you experience problems with Colosseum, `log them on GitHub`_. If you want to contribute code, please `fork the code`_ and `submit a pull request`_. -.. _hands-on tutorial for beginners: http://colosseum.readthedocs.io/en/latest/tutorial/tutorial-1.html -.. _how-to guides and recipes: http://colosseum.readthedocs.io/en/latest/how-to/index.html -.. _background: http://colosseum.readthedocs.io/en/latest/background/index.html -.. _Technical reference: http://colosseum.readthedocs.io/en/latest/reference/index.html -.. _BeeWare suite: http://beeware.org +.. _hands-on tutorial for beginners: https://colosseum.readthedocs.io/en/latest/tutorial/tutorial-1.html +.. _how-to guides and recipes: https://colosseum.readthedocs.io/en/latest/how-to/index.html +.. _background: https://colosseum.readthedocs.io/en/latest/background/index.html +.. _Technical reference: https://colosseum.readthedocs.io/en/latest/reference/index.html +.. _BeeWare suite: https://beeware.org .. _Read The Docs: https://colosseum.readthedocs.io .. _@beeware@fosstodon.org on Mastodon: https://fosstodon.org/@beeware .. _Discord: https://beeware.org/bee/chat/ .. _Github Discussions forum: https://github.com/beeware/colosseum/discussions -.. _BeeWare Community Code of Conduct: http://beeware.org/community/behavior/ +.. _BeeWare Community Code of Conduct: https://beeware.org/community/behavior/ .. _log them on Github: https://github.com/beeware/colosseum/issues .. _fork the code: https://github.com/beeware/colosseum .. _submit a pull request: https://github.com/beeware/colosseum/pulls diff --git a/changes/102.misc.rst b/changes/102.misc.rst new file mode 100644 index 000000000..06647e471 --- /dev/null +++ b/changes/102.misc.rst @@ -0,0 +1 @@ +Updated actions/setup-python from 5.3.0 to 5.4.0. diff --git a/changes/75.misc.rst b/changes/75.misc.rst index a363f3d29..19b46415c 100644 --- a/changes/75.misc.rst +++ b/changes/75.misc.rst @@ -1 +1 @@ -Added a negative percentage check in the validator, and added less than dunder to Percentage class. \ No newline at end of file +Added a negative percentage check in the validator, and added less than dunder to Percentage class. diff --git a/changes/79.misc.rst b/changes/79.misc.rst index f79608149..f8ead8aa8 100644 --- a/changes/79.misc.rst +++ b/changes/79.misc.rst @@ -1 +1 @@ -Added CI checks for code style, MANIFEST.in, and news snippets. \ No newline at end of file +Added CI checks for code style, MANIFEST.in, and news snippets. diff --git a/changes/90.misc.rst b/changes/90.misc.rst index 7d9685f46..657939f08 100644 --- a/changes/90.misc.rst +++ b/changes/90.misc.rst @@ -2,4 +2,4 @@ Update discussion and social media links. * Remove links to Twitter and Gitter. * Remove unused target definitions for Google discussion groups. -* Add links to Discord, Mastodon, and the Discussions forum. \ No newline at end of file +* Add links to Discord, Mastodon, and the Discussions forum. diff --git a/docs/conf.py b/docs/conf.py index 0ffcaffd4..cba3e387f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # # Colosseum documentation build configuration file, created by # sphinx-quickstart on Sat Jul 27 14:58:42 2013. @@ -19,112 +18,115 @@ import io import os import re + # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. import sys -sys.path.insert(0, os.path.abspath('../src/core/')) +sys.path.insert(0, os.path.abspath("../src/core/")) # -- General configuration ----------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. -#needs_sphinx = '1.0' +# needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.autodoc'] +extensions = ["sphinx.ext.autodoc"] # Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] +templates_path = ["_templates"] # The suffix of source filenames. -source_suffix = '.rst' +source_suffix = ".rst" # The encoding of source files. -#source_encoding = 'utf-8-sig' +# source_encoding = 'utf-8-sig' # The master toctree document. -master_doc = 'index' +master_doc = "index" # General information about the project. -project = u'Colosseum' -copyright = u'2013, Russell Keith-Magee' +project = "Colosseum" +copyright = "2013, Russell Keith-Magee" -with io.open('../src/colosseum/__init__.py', encoding='utf8') as version_file: - version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file.read(), re.M) +with open("../src/colosseum/__init__.py", encoding="utf8") as version_file: + version_match = re.search( + r"^__version__ = ['\"]([^'\"]*)['\"]", version_file.read(), re.M + ) if version_match: release = version_match.group(1) else: raise RuntimeError("Unable to find version string.") # The short X.Y version. -version = '.'.join(release.split('.')[:2]) +version = ".".join(release.split(".")[:2]) -autoclass_content = 'both' +autoclass_content = "both" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -#language = None +# language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: -#today = '' +# today = '' # Else, today_fmt is used as the format for a strftime call. -#today_fmt = '%B %d, %Y' +# today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. -exclude_patterns = ['_build'] +exclude_patterns = ["_build"] # The reST default role (used for this markup: `text`) to use for all documents. -#default_role = None +# default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. -#add_function_parentheses = True +# add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). -#add_module_names = True +# add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. -#show_authors = False +# show_authors = False # The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' +pygments_style = "sphinx" # A list of ignored prefixes for module index sorting. -#modindex_common_prefix = [] +# modindex_common_prefix = [] # -- Options for HTML output --------------------------------------------------- # on_rtd: whether we are on readthedocs.org -on_rtd = os.environ.get('READTHEDOCS', None) == 'True' +on_rtd = os.environ.get("READTHEDOCS", None) == "True" if not on_rtd: # only import and set the theme if we're building docs locally try: import sphinx_rtd_theme except ModuleNotFoundError: - html_theme = 'default' + html_theme = "default" else: - html_theme = 'sphinx_rtd_theme' + html_theme = "sphinx_rtd_theme" # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. -#html_theme_options = {} +# html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] +# html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -#html_title = None +# html_title = None # A shorter title for the navigation bar. Default is the same as html_title. -#html_short_title = None +# html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. @@ -133,59 +135,60 @@ # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. -#html_favicon = None +# html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = ["_static"] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. -#html_last_updated_fmt = '%b %d, %Y' +# html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. -#html_use_smartypants = True +# html_use_smartypants = True # Custom sidebar templates, maps document names to template names. -#html_sidebars = {} +# html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. -#html_additional_pages = {} +# html_additional_pages = {} # If false, no module index is generated. -#html_domain_indices = True +# html_domain_indices = True # If false, no index is generated. -#html_use_index = True +# html_use_index = True # If true, the index is split into individual pages for each letter. -#html_split_index = False +# html_split_index = False # If true, links to the reST sources are added to the pages. -#html_show_sourcelink = True +# html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -#html_show_sphinx = True +# html_show_sphinx = True # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -#html_show_copyright = True +# html_show_copyright = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. -#html_use_opensearch = '' +# html_use_opensearch = '' # This is the file name suffix for HTML files (e.g. ".xhtml"). -#html_file_suffix = None +# html_file_suffix = None # Output file base name for HTML help builder. -htmlhelp_basename = 'colosseumdoc' +htmlhelp_basename = "colosseumdoc" try: import sphinx_rtd_theme + html_theme = "sphinx_rtd_theme" except ImportError: # The sphinx-rtd-theme package is not installed, so to the default @@ -194,42 +197,45 @@ # -- Options for LaTeX output -------------------------------------------------- latex_elements = { -# The paper size ('letterpaper' or 'a4paper'). -#'papersize': 'letterpaper', - -# The font size ('10pt', '11pt' or '12pt'). -#'pointsize': '10pt', - -# Additional stuff for the LaTeX preamble. -#'preamble': '', + # The paper size ('letterpaper' or 'a4paper'). + #'papersize': 'letterpaper', + # The font size ('10pt', '11pt' or '12pt'). + #'pointsize': '10pt', + # Additional stuff for the LaTeX preamble. + #'preamble': '', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('index', 'colosseum.tex', u'Colosseum Documentation', - u'Russell Keith-Magee', 'manual'), + ( + "index", + "colosseum.tex", + "Colosseum Documentation", + "Russell Keith-Magee", + "manual", + ), ] # The name of an image file (relative to this directory) to place at the top of # the title page. -#latex_logo = None +# latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. -#latex_use_parts = False +# latex_use_parts = False # If true, show page references after internal links. -#latex_show_pagerefs = False +# latex_show_pagerefs = False # If true, show URL addresses after external links. -#latex_show_urls = False +# latex_show_urls = False # Documents to append as an appendix to all manuals. -#latex_appendices = [] +# latex_appendices = [] # If false, no module index is generated. -#latex_domain_indices = True +# latex_domain_indices = True # -- Options for manual page output -------------------------------------------- @@ -237,12 +243,11 @@ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - ('index', 'colosseum', u'Colosseum Documentation', - [u'Russell Keith-Magee'], 1) + ("index", "colosseum", "Colosseum Documentation", ["Russell Keith-Magee"], 1) ] # If true, show URL addresses after external links. -#man_show_urls = False +# man_show_urls = False # -- Options for Texinfo output ------------------------------------------------ @@ -251,31 +256,37 @@ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - ('index', 'colosseum', u'Colosseum Documentation', - u'Russell Keith-Magee', 'Colosseum', 'A bridge between an Objective-C runtime environment and Python.', - 'Miscellaneous'), + ( + "index", + "colosseum", + "Colosseum Documentation", + "Russell Keith-Magee", + "Colosseum", + "A bridge between an Objective-C runtime environment and Python.", + "Miscellaneous", + ), ] # Documents to append as an appendix to all manuals. -#texinfo_appendices = [] +# texinfo_appendices = [] # If false, no module index is generated. -#texinfo_domain_indices = True +# texinfo_domain_indices = True # How to display URL addresses: 'footnote', 'no', or 'inline'. -#texinfo_show_urls = 'footnote' +# texinfo_show_urls = 'footnote' # -- Options for spelling ------------------------------------------- # Spelling check needs an additional module that is not installed by default. # Add it only if spelling check is requested so docs can be generated without it. -if 'spelling' in sys.argv: +if "spelling" in sys.argv: extensions.append("sphinxcontrib.spelling") # Spelling language. -spelling_lang = 'en_US' +spelling_lang = "en_US" # Location of word list. -spelling_word_list_filename = 'spelling_wordlist' +spelling_word_list_filename = "spelling_wordlist" spelling_ignore_pypi_package_names = True diff --git a/docs/how-to/contribute.rst b/docs/how-to/contribute.rst index f061752a8..4fb16f47e 100644 --- a/docs/how-to/contribute.rst +++ b/docs/how-to/contribute.rst @@ -98,19 +98,19 @@ some CSS3 tests (especially in the flexbox and grid modules) may be incorrect. Picking a test -------------- -All the tests are located under the tests directory. Each test directory contains -a ``not_implemented`` file. This is a list of tests that are currently known to -fail - because the logic necessary to make the test pass isn't implemented. +All the tests are located under the tests directory. Each test directory contains +a ``not_implemented`` file. This is a list of tests that are currently known to +fail - because the logic necessary to make the test pass isn't implemented. Pick one of these tests, and delete it from the ``not_implemented`` file. For the purposes of this example, we're going to pick the -``block-formatting-contexts-006`` test in ``web_platform/CSS2/normal_flow/test_block_formatting_contexts`` (this test is no longer available, as it has already been fixed). +``block-formatting-contexts-006`` test in ``web_platform/CSS2/normal_flow/test_block_formatting_contexts`` (this test is no longer available, as it has already been fixed). The first test run ------------------ Each test file contains a single test class. In order to run the test, you must specify -the path to this class, separated by dots. For our example, you can run the single test +the path to this class, separated by dots. For our example, you can run the single test out of the test suite:: $ python setup.py test -s tests.web_platform.CSS2.normal_flow.test_block_formatting_contexts.TestBlockFormattingContexts.test_block_formatting_contexts_006 @@ -376,7 +376,7 @@ documented with references to the `CSS specification include equally verbose documentation, and cross references to any paragraphs in the specification. -The test suite uses a ``TestNode`` as the basis for it's document model. A +The test suite uses a ``ExampleNode`` as the basis for it's document model. A test node has three attributes of particular interest: * ``style``, storing the CSS style declaration that applies to the node. @@ -385,7 +385,7 @@ test node has three attributes of particular interest: attribute match those of the CSS specification (e.g., ``width``, ``margin_top``, ``z_index``, and so on). - * ``layout``, storing the computed values for the layout of the TestNode. + * ``layout``, storing the computed values for the layout of the ExampleNode. These values are *always* in integer pixels. The layout describes the position of a content box (defined by ``content_top``, ``content_right``, ``content_bottom`` and ``content_left``), relative to the content box of @@ -394,7 +394,7 @@ test node has three attributes of particular interest: surrounded by a margin box. These are also given in pixels, relative to the content box of the parent element. - * ``children``, a list of TestNodes that are descendents of this node. A + * ``children``, a list of ExampleNodes that are descendents of this node. A leaf node in the DOM tree is a node with an empty children list. The layout algorithm roughly consists of: diff --git a/docs/make.bat b/docs/make.bat index 785768626..11247e197 100644 --- a/docs/make.bat +++ b/docs/make.bat @@ -187,4 +187,4 @@ results in %BUILDDIR%/doctest/output.txt. goto end ) -:end \ No newline at end of file +:end diff --git a/docs/spelling_wordlist b/docs/spelling_wordlist index dfa124100..a5f7db0e6 100644 --- a/docs/spelling_wordlist +++ b/docs/spelling_wordlist @@ -18,4 +18,4 @@ jeamland Longhanks ojii stsievert -uranusjr \ No newline at end of file +uranusjr diff --git a/pyproject.toml b/pyproject.toml index 26e7875e8..e6c4f9e1f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,15 +1,80 @@ [build-system] requires = [ - "setuptools >= 43.0.0", - "wheel >= 0.32.0", + "setuptools==75.8.0", + "setuptools_scm==8.1.0", ] build-backend = "setuptools.build_meta" +[project] +dynamic = ["version"] +name = "colosseum" +description = "An independent implementation of the CSS layout algorithm" +readme = "README.rst" +requires-python = ">= 3.9" +license.text = "New BSD" +authors = [ + {name="Russell Keith-Magee", email="russell@keith-magee.com"} +] +maintainers = [ + {name="BeeWare Team", email="team@beeware.org"} +] +keywords = [ + "CSS", +] +classifiers=[ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", + "Programming Language :: Python :: 3 :: Only", + "Topic :: Software Development", + "Topic :: Software Development :: User Interfaces", +] + +[project.optional-dependencies] +# Extras used by developers *of* colosseum are pinned to specific versions to +# ensure environment consistency. +dev = [ + "pre-commit == 4.1.0", + "pytest == 8.3.4", + "setuptools_scm == 8.1.0", + "tox == 4.24.1", +] + +[project.urls] +Homepage = "https://github.com/beeware/colosseum" +Funding = "https://beeware.org/contributing/membership/" +Tracker = "https://github.com/beeware/colosseum/issues" +Source = "https://github.com/beeware/colosseum" + +[tool.isort] +profile = "black" +split_on_trailing_comma = true +combine_as_imports = true + +[tool.setuptools_scm] +# To enable SCM versioning, we need an empty tool configuration for setuptools_scm + [tool.towncrier] directory = "changes" package = "colosseum" +package_dir = "src" filename = "docs/background/releases.rst" title_format = "{version} ({project_date})" issue_format = "`#{issue} `_" template = "changes/template.rst" underlines = ["-", "^", "\""] +type = [ + { directory = "feature", name = "Features", showcontent = true }, + { directory = "bugfix", name = "Bugfixes", showcontent = true }, + { directory = "removal", name = "Backward Incompatible Changes", showcontent = true }, + { directory = "doc", name = "Documentation", showcontent = true }, + { directory = "misc", name = "Misc", showcontent = false }, +] diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 1841a55c4..000000000 --- a/setup.cfg +++ /dev/null @@ -1,71 +0,0 @@ -[metadata] -name = colosseum -version = attr: colosseum.__version__ -project_urls = - Funding = https://beeware.org/contributing/membership/ - Tracker = https://github.com/beeware/colosseum/issues - Source = https://github.com/beeware/colosseum -author = Russell Keith-Magee -author_email = russell@keith-magee.com -classifiers= - Development Status :: 4 - Beta - Intended Audience :: Developers - License :: OSI Approved :: BSD License - Operating System :: OS Independent - Programming Language :: Python :: 3 - Programming Language :: Python :: 3.7 - Programming Language :: Python :: 3.8 - Programming Language :: Python :: 3.9 - Programming Language :: Python :: 3.10 - Programming Language :: Python :: 3.11 - Programming Language :: Python :: 3.12 - Programming Language :: Python :: 3 :: Only - Topic :: Software Development - Topic :: Software Development :: User Interfaces -license = New BSD -license_files = - LICENSE -description = Colosseum is an independent implementation of the CSS layout algorithm -long_description = file: README.rst -long_description_content_type = text/x-rst - -[options] -python_requires = >= 3.7 -packages = find: -package_dir = - = src - -[options.packages.find] -where = src - -[flake8] -# https://flake8.readthedocs.org/en/latest/ -exclude=\ - venv/*,\ - local/*,\ - docs/*,\ - build/*,\ - settings.py,\ - */migrations/*,\ - tests/w3c/*,\ - .eggs/*,\ - .tox/* -max-complexity = 25 -max-line-length = 119 -# The following issues are ignored because they do not match our code style: -# E133: closing bracket missing indentation -# E226: missing whitespace around arithmetic operator -# W503: line break occurred before a binary operator -ignore = E133,E226,W503 - -[isort] -combine_as_imports = true -include_trailing_comma = true -line_length = 79 -multi_line_output = 3 -not_skip = __init__.py -skip = - .tox - docs/conf.py - venv - local diff --git a/src/colosseum/__init__.py b/src/colosseum/__init__.py index ba63c52c3..7691c4692 100644 --- a/src/colosseum/__init__.py +++ b/src/colosseum/__init__.py @@ -1,16 +1,5 @@ from .declaration import CSS __all__ = [ - '__version__', - 'CSS', + "CSS", ] - -# Examples of valid version strings -# __version__ = '1.2.3.dev1' # Development release 1 -# __version__ = '1.2.3a1' # Alpha Release 1 -# __version__ = '1.2.3b1' # Beta Release 1 -# __version__ = '1.2.3rc1' # RC Release 1 -# __version__ = '1.2.3' # Final Release -# __version__ = '1.2.3.post1' # Post Release 1 - -__version__ = '0.2.0' diff --git a/src/colosseum/colors.py b/src/colosseum/colors.py index b73215987..37a1ec8cb 100644 --- a/src/colosseum/colors.py +++ b/src/colosseum/colors.py @@ -1,10 +1,10 @@ - class Color: pass class rgb(Color): "A representation of an RGBA color" + def __init__(self, r, g, b, a=1.0): self.r = r self.g = g @@ -12,7 +12,7 @@ def __init__(self, r, g, b, a=1.0): self.a = a def __repr__(self): - return "rgba({}, {}, {}, {})".format(self.r, self.g, self.b, self.a) + return f"rgba({self.r}, {self.g}, {self.b}, {self.a})" @property def rgb(self): @@ -21,6 +21,7 @@ def rgb(self): class hsl(Color): "A representation of an HSLA color" + def __init__(self, h, s, l, a=1.0): # noqa: E741 self.h = h self.s = s @@ -28,7 +29,7 @@ def __init__(self, h, s, l, a=1.0): # noqa: E741 self.a = a def __repr__(self): - return "hsla({}, {}, {}, {})".format(self.h, self.s, self.l, self.a) + return f"hsla({self.h}, {self.s}, {self.l}, {self.a})" @property def rgb(self): @@ -50,162 +51,157 @@ def rgb(self): else: r, g, b = c + m, m, x + m - return rgb( - round(r * 0xff), - round(g * 0xff), - round(b * 0xff), - self.a - ) + return rgb(round(r * 0xFF), round(g * 0xFF), round(b * 0xFF), self.a) -ALICEBLUE = 'aliceblue' -ANTIQUEWHITE = 'antiquewhite' -AQUA = 'aqua' -AQUAMARINE = 'aquamarine' -AZURE = 'azure' -BEIGE = 'beige' -BISQUE = 'bisque' -BLACK = 'black' -BLANCHEDALMOND = 'blanchedalmond' -BLUE = 'blue' -BLUEVIOLET = 'blueviolet' -BROWN = 'brown' -BURLYWOOD = 'burlywood' -CADETBLUE = 'cadetblue' -CHARTREUSE = 'chartreuse' -CHOCOLATE = 'chocolate' -CORAL = 'coral' -CORNFLOWERBLUE = 'cornflowerblue' -CORNSILK = 'cornsilk' -CRIMSON = 'crimson' -CYAN = 'cyan' -DARKBLUE = 'darkblue' -DARKCYAN = 'darkcyan' -DARKGOLDENROD = 'darkgoldenrod' -DARKGRAY = 'darkgray' -DARKGREY = 'darkgrey' -DARKGREEN = 'darkgreen' -DARKKHAKI = 'darkkhaki' -DARKMAGENTA = 'darkmagenta' -DARKOLIVEGREEN = 'darkolivegreen' -DARKORANGE = 'darkorange' -DARKORCHID = 'darkorchid' -DARKRED = 'darkred' -DARKSALMON = 'darksalmon' -DARKSEAGREEN = 'darkseagreen' -DARKSLATEBLUE = 'darkslateblue' -DARKSLATEGRAY = 'darkslategray' -DARKSLATEGREY = 'darkslategrey' -DARKTURQUOISE = 'darkturquoise' -DARKVIOLET = 'darkviolet' -DEEPPINK = 'deeppink' -DEEPSKYBLUE = 'deepskyblue' -DIMGRAY = 'dimgray' -DIMGREY = 'dimgrey' -DODGERBLUE = 'dodgerblue' -FIREBRICK = 'firebrick' -FLORALWHITE = 'floralwhite' -FORESTGREEN = 'forestgreen' -FUCHSIA = 'fuchsia' -GAINSBORO = 'gainsboro' -GHOSTWHITE = 'ghostwhite' -GOLD = 'gold' -GOLDENROD = 'goldenrod' -GRAY = 'gray' -GREY = 'grey' -GREEN = 'green' -GREENYELLOW = 'greenyellow' -HONEYDEW = 'honeydew' -HOTPINK = 'hotpink' -INDIANRED = 'indianred' -INDIGO = 'indigo' -IVORY = 'ivory' -KHAKI = 'khaki' -LAVENDER = 'lavender' -LAVENDERBLUSH = 'lavenderblush' -LAWNGREEN = 'lawngreen' -LEMONCHIFFON = 'lemonchiffon' -LIGHTBLUE = 'lightblue' -LIGHTCORAL = 'lightcoral' -LIGHTCYAN = 'lightcyan' -LIGHTGOLDENRODYELLOW = 'lightgoldenrodyellow' -LIGHTGRAY = 'lightgray' -LIGHTGREY = 'lightgrey' -LIGHTGREEN = 'lightgreen' -LIGHTPINK = 'lightpink' -LIGHTSALMON = 'lightsalmon' -LIGHTSEAGREEN = 'lightseagreen' -LIGHTSKYBLUE = 'lightskyblue' -LIGHTSLATEGRAY = 'lightslategray' -LIGHTSLATEGREY = 'lightslategrey' -LIGHTSTEELBLUE = 'lightsteelblue' -LIGHTYELLOW = 'lightyellow' -LIME = 'lime' -LIMEGREEN = 'limegreen' -LINEN = 'linen' -MAGENTA = 'magenta' -MAROON = 'maroon' -MEDIUMAQUAMARINE = 'mediumaquamarine' -MEDIUMBLUE = 'mediumblue' -MEDIUMORCHID = 'mediumorchid' -MEDIUMPURPLE = 'mediumpurple' -MEDIUMSEAGREEN = 'mediumseagreen' -MEDIUMSLATEBLUE = 'mediumslateblue' -MEDIUMSPRINGGREEN = 'mediumspringgreen' -MEDIUMTURQUOISE = 'mediumturquoise' -MEDIUMVIOLETRED = 'mediumvioletred' -MIDNIGHTBLUE = 'midnightblue' -MINTCREAM = 'mintcream' -MISTYROSE = 'mistyrose' -MOCCASIN = 'moccasin' -NAVAJOWHITE = 'navajowhite' -NAVY = 'navy' -OLDLACE = 'oldlace' -OLIVE = 'olive' -OLIVEDRAB = 'olivedrab' -ORANGE = 'orange' -ORANGERED = 'orangered' -ORCHID = 'orchid' -PALEGOLDENROD = 'palegoldenrod' -PALEGREEN = 'palegreen' -PALETURQUOISE = 'paleturquoise' -PALEVIOLETRED = 'palevioletred' -PAPAYAWHIP = 'papayawhip' -PEACHPUFF = 'peachpuff' -PERU = 'peru' -PINK = 'pink' -PLUM = 'plum' -POWDERBLUE = 'powderblue' -PURPLE = 'purple' -REBECCAPURPLE = 'rebeccapurple' -RED = 'red' -ROSYBROWN = 'rosybrown' -ROYALBLUE = 'royalblue' -SADDLEBROWN = 'saddlebrown' -SALMON = 'salmon' -SANDYBROWN = 'sandybrown' -SEAGREEN = 'seagreen' -SEASHELL = 'seashell' -SIENNA = 'sienna' -SILVER = 'silver' -SKYBLUE = 'skyblue' -SLATEBLUE = 'slateblue' -SLATEGRAY = 'slategray' -SLATEGREY = 'slategrey' -SNOW = 'snow' -SPRINGGREEN = 'springgreen' -STEELBLUE = 'steelblue' -TAN = 'tan' -TEAL = 'teal' -THISTLE = 'thistle' -TOMATO = 'tomato' -TURQUOISE = 'turquoise' -VIOLET = 'violet' -WHEAT = 'wheat' -WHITE = 'white' -WHITESMOKE = 'whitesmoke' -YELLOW = 'yellow' -YELLOWGREEN = 'yellowgreen' +ALICEBLUE = "aliceblue" +ANTIQUEWHITE = "antiquewhite" +AQUA = "aqua" +AQUAMARINE = "aquamarine" +AZURE = "azure" +BEIGE = "beige" +BISQUE = "bisque" +BLACK = "black" +BLANCHEDALMOND = "blanchedalmond" +BLUE = "blue" +BLUEVIOLET = "blueviolet" +BROWN = "brown" +BURLYWOOD = "burlywood" +CADETBLUE = "cadetblue" +CHARTREUSE = "chartreuse" +CHOCOLATE = "chocolate" +CORAL = "coral" +CORNFLOWERBLUE = "cornflowerblue" +CORNSILK = "cornsilk" +CRIMSON = "crimson" +CYAN = "cyan" +DARKBLUE = "darkblue" +DARKCYAN = "darkcyan" +DARKGOLDENROD = "darkgoldenrod" +DARKGRAY = "darkgray" +DARKGREY = "darkgrey" +DARKGREEN = "darkgreen" +DARKKHAKI = "darkkhaki" +DARKMAGENTA = "darkmagenta" +DARKOLIVEGREEN = "darkolivegreen" +DARKORANGE = "darkorange" +DARKORCHID = "darkorchid" +DARKRED = "darkred" +DARKSALMON = "darksalmon" +DARKSEAGREEN = "darkseagreen" +DARKSLATEBLUE = "darkslateblue" +DARKSLATEGRAY = "darkslategray" +DARKSLATEGREY = "darkslategrey" +DARKTURQUOISE = "darkturquoise" +DARKVIOLET = "darkviolet" +DEEPPINK = "deeppink" +DEEPSKYBLUE = "deepskyblue" +DIMGRAY = "dimgray" +DIMGREY = "dimgrey" +DODGERBLUE = "dodgerblue" +FIREBRICK = "firebrick" +FLORALWHITE = "floralwhite" +FORESTGREEN = "forestgreen" +FUCHSIA = "fuchsia" +GAINSBORO = "gainsboro" +GHOSTWHITE = "ghostwhite" +GOLD = "gold" +GOLDENROD = "goldenrod" +GRAY = "gray" +GREY = "grey" +GREEN = "green" +GREENYELLOW = "greenyellow" +HONEYDEW = "honeydew" +HOTPINK = "hotpink" +INDIANRED = "indianred" +INDIGO = "indigo" +IVORY = "ivory" +KHAKI = "khaki" +LAVENDER = "lavender" +LAVENDERBLUSH = "lavenderblush" +LAWNGREEN = "lawngreen" +LEMONCHIFFON = "lemonchiffon" +LIGHTBLUE = "lightblue" +LIGHTCORAL = "lightcoral" +LIGHTCYAN = "lightcyan" +LIGHTGOLDENRODYELLOW = "lightgoldenrodyellow" +LIGHTGRAY = "lightgray" +LIGHTGREY = "lightgrey" +LIGHTGREEN = "lightgreen" +LIGHTPINK = "lightpink" +LIGHTSALMON = "lightsalmon" +LIGHTSEAGREEN = "lightseagreen" +LIGHTSKYBLUE = "lightskyblue" +LIGHTSLATEGRAY = "lightslategray" +LIGHTSLATEGREY = "lightslategrey" +LIGHTSTEELBLUE = "lightsteelblue" +LIGHTYELLOW = "lightyellow" +LIME = "lime" +LIMEGREEN = "limegreen" +LINEN = "linen" +MAGENTA = "magenta" +MAROON = "maroon" +MEDIUMAQUAMARINE = "mediumaquamarine" +MEDIUMBLUE = "mediumblue" +MEDIUMORCHID = "mediumorchid" +MEDIUMPURPLE = "mediumpurple" +MEDIUMSEAGREEN = "mediumseagreen" +MEDIUMSLATEBLUE = "mediumslateblue" +MEDIUMSPRINGGREEN = "mediumspringgreen" +MEDIUMTURQUOISE = "mediumturquoise" +MEDIUMVIOLETRED = "mediumvioletred" +MIDNIGHTBLUE = "midnightblue" +MINTCREAM = "mintcream" +MISTYROSE = "mistyrose" +MOCCASIN = "moccasin" +NAVAJOWHITE = "navajowhite" +NAVY = "navy" +OLDLACE = "oldlace" +OLIVE = "olive" +OLIVEDRAB = "olivedrab" +ORANGE = "orange" +ORANGERED = "orangered" +ORCHID = "orchid" +PALEGOLDENROD = "palegoldenrod" +PALEGREEN = "palegreen" +PALETURQUOISE = "paleturquoise" +PALEVIOLETRED = "palevioletred" +PAPAYAWHIP = "papayawhip" +PEACHPUFF = "peachpuff" +PERU = "peru" +PINK = "pink" +PLUM = "plum" +POWDERBLUE = "powderblue" +PURPLE = "purple" +REBECCAPURPLE = "rebeccapurple" +RED = "red" +ROSYBROWN = "rosybrown" +ROYALBLUE = "royalblue" +SADDLEBROWN = "saddlebrown" +SALMON = "salmon" +SANDYBROWN = "sandybrown" +SEAGREEN = "seagreen" +SEASHELL = "seashell" +SIENNA = "sienna" +SILVER = "silver" +SKYBLUE = "skyblue" +SLATEBLUE = "slateblue" +SLATEGRAY = "slategray" +SLATEGREY = "slategrey" +SNOW = "snow" +SPRINGGREEN = "springgreen" +STEELBLUE = "steelblue" +TAN = "tan" +TEAL = "teal" +THISTLE = "thistle" +TOMATO = "tomato" +TURQUOISE = "turquoise" +VIOLET = "violet" +WHEAT = "wheat" +WHITE = "white" +WHITESMOKE = "whitesmoke" +YELLOW = "yellow" +YELLOWGREEN = "yellowgreen" NAMED_COLOR = { diff --git a/src/colosseum/constants.py b/src/colosseum/constants.py index dfa542dcb..1eec9a303 100644 --- a/src/colosseum/constants.py +++ b/src/colosseum/constants.py @@ -15,8 +15,7 @@ class Choices: "A class to define allowable data types for a property." - def __init__(self, *constants, validators=None, - explicit_defaulting_constants=None): + def __init__(self, *constants, validators=None, explicit_defaulting_constants=None): self.constants = set(constants) self.explicit_defaulting_constants = explicit_defaulting_constants or [] self.validators = validators or [] @@ -29,7 +28,7 @@ def validate(self, value): except ValidationError: pass - if value == 'none': + if value == "none": value = None for const in self.constants: @@ -43,7 +42,7 @@ def validate(self, value): raise ValueError() def __str__(self): - choices = set([str(c).lower().replace('_', '-') for c in self.constants]) + choices = {str(c).lower().replace("_", "-") for c in self.constants} for validator in self.validators: choices.add(validator.description) @@ -64,7 +63,7 @@ def __str__(self): return repr(self) def __repr__(self): - return '{class_name}("{name}")'.format(class_name=self.__class__.__name__, name=self._name) + return f'{self.__class__.__name__}("{self._name}")' def value(self, context): try: @@ -76,27 +75,27 @@ def value(self, context): ###################################################################### # Versions of the HTML standard ###################################################################### -HTML4 = 'html4' -HTML5 = 'html5' +HTML4 = "html4" +HTML5 = "html5" ###################################################################### # Common constants ###################################################################### -AUTO = 'auto' -COLUMN = 'column' -ROW = 'row' -TRANSPARENT = 'transparent' +AUTO = "auto" +COLUMN = "column" +ROW = "row" +TRANSPARENT = "transparent" default = object() ###################################################################### # Explicit defaulting constants ###################################################################### -INITIAL = 'initial' -INHERIT = 'inherit' -UNSET = 'unset' -REVERT = 'revert' +INITIAL = "initial" +INHERIT = "inherit" +UNSET = "unset" +REVERT = "revert" ###################################################################### # Margins @@ -116,21 +115,21 @@ def value(self, context): # 8.5 Border properties ###################################################################### -THIN = 'thin' -MEDIUM = 'medium' -THICK = 'thick' +THIN = "thin" +MEDIUM = "medium" +THICK = "thick" BORDER_WIDTH_CHOICES = Choices(THIN, MEDIUM, THICK, validators=[is_length]) -HIDDEN = 'hidden' -DOTTED = 'dotted' -DASHED = 'dashed' -SOLID = 'solid' -DOUBLE = 'double' -GROOVE = 'groove' -RIDGE = 'ridge' -INSET = 'inset' -OUTSET = 'outset' +HIDDEN = "hidden" +DOTTED = "dotted" +DASHED = "dashed" +SOLID = "solid" +DOUBLE = "double" +GROOVE = "groove" +RIDGE = "ridge" +INSET = "inset" +OUTSET = "outset" BORDER_STYLE_CHOICES = Choices( None, @@ -155,28 +154,28 @@ def value(self, context): # 9.2.4 The display property ###################################################################### -INLINE = 'inline' -BLOCK = 'block' -LIST_ITEM = 'list-item' -INLINE_BLOCK = 'inline-block' -TABLE = 'table' -INLINE_TABLE = 'inline-table' -TABLE_ROW_GROUP = 'table-row-group' -TABLE_HEADER_GROUP = 'table-header-group' -TABLE_FOOTER_GROUP = 'table-footer-group' -TABLE_ROW = 'table-row' -TABLE_COLUMN_GROUP = 'table-column-group' -TABLE_COLUMN = 'table-column' -TABLE_CELL = 'table-cell' -TABLE_CAPTION = 'table-caption' +INLINE = "inline" +BLOCK = "block" +LIST_ITEM = "list-item" +INLINE_BLOCK = "inline-block" +TABLE = "table" +INLINE_TABLE = "inline-table" +TABLE_ROW_GROUP = "table-row-group" +TABLE_HEADER_GROUP = "table-header-group" +TABLE_FOOTER_GROUP = "table-footer-group" +TABLE_ROW = "table-row" +TABLE_COLUMN_GROUP = "table-column-group" +TABLE_COLUMN = "table-column" +TABLE_CELL = "table-cell" +TABLE_CAPTION = "table-caption" # CSS Flexbox -FLEX = 'flex' -INLINE_FLEX = 'inline-flex' +FLEX = "flex" +INLINE_FLEX = "inline-flex" # CSS Grid -GRID = 'grid' -INLINE_GRID = 'inline-grid' +GRID = "grid" +INLINE_GRID = "inline-grid" DISPLAY_CHOICES = Choices( None, @@ -194,10 +193,8 @@ def value(self, context): TABLE_COLUMN, TABLE_CELL, TABLE_CAPTION, - FLEX, INLINE_FLEX, - GRID, INLINE_GRID, ) @@ -207,23 +204,25 @@ def value(self, context): # 9.3.2 Box offsets ###################################################################### -STATIC = 'static' -RELATIVE = 'relative' -ABSOLUTE = 'absolute' -FIXED = 'fixed' +STATIC = "static" +RELATIVE = "relative" +ABSOLUTE = "absolute" +FIXED = "fixed" POSITION_CHOICES = Choices(STATIC, RELATIVE, ABSOLUTE, FIXED) -BOX_OFFSET_CHOICES = Choices(AUTO, validators=[is_length, is_percentage], explicit_defaulting_constants=[INHERIT]) +BOX_OFFSET_CHOICES = Choices( + AUTO, validators=[is_length, is_percentage], explicit_defaulting_constants=[INHERIT] +) ###################################################################### # 9.5.1 Positioning the float # 9.5.2 Controlling flow next to floats ###################################################################### -LEFT = 'left' -RIGHT = 'right' -BOTH = 'both' +LEFT = "left" +RIGHT = "right" +BOTH = "both" FLOAT_CHOICES = Choices(LEFT, RIGHT, None) CLEAR_CHOICES = Choices(None, LEFT, RIGHT, BOTH) @@ -238,14 +237,14 @@ def value(self, context): # 9.10 Text Direction ###################################################################### -RTL = 'rtl' -LTR = 'ltr' +RTL = "rtl" +LTR = "ltr" DIRECTION_CHOICES = Choices(RTL, LTR) -NORMAL = 'normal' -EMBED = 'embed' -BIDI_OVERRIDE = 'bidi-override' +NORMAL = "normal" +EMBED = "embed" +BIDI_OVERRIDE = "bidi-override" UNICODE_BIDI_CHOICES = Choices(NORMAL, EMBED, BIDI_OVERRIDE) @@ -270,25 +269,29 @@ def value(self, context): ###################################################################### # overflow -SCROLL = 'scroll' -VISIBLE = 'visible' +SCROLL = "scroll" +VISIBLE = "visible" -OVERFLOW_CHOICES = Choices(VISIBLE, HIDDEN, SCROLL, AUTO, explicit_defaulting_constants=[INHERIT]) +OVERFLOW_CHOICES = Choices( + VISIBLE, HIDDEN, SCROLL, AUTO, explicit_defaulting_constants=[INHERIT] +) ###################################################################### # 11.1.2 Clip ###################################################################### # clip -CLIP_CHOICES = Choices(AUTO, validators=[is_rect], explicit_defaulting_constants=[INHERIT]) +CLIP_CHOICES = Choices( + AUTO, validators=[is_rect], explicit_defaulting_constants=[INHERIT] +) ###################################################################### # 11.2 Visibility ###################################################################### -VISIBLE = 'visible' -HIDDEN = 'hidden' -COLLAPSE = 'collapse' +VISIBLE = "visible" +HIDDEN = "hidden" +COLLAPSE = "collapse" VISIBILITY_CHOICES = Choices(VISIBLE, HIDDEN, COLLAPSE) @@ -302,7 +305,9 @@ def value(self, context): ###################################################################### # quotes -QUOTES_CHOICES = Choices(None, INITIAL, validators=[is_quote], explicit_defaulting_constants=[INHERIT]) +QUOTES_CHOICES = Choices( + None, INITIAL, validators=[is_quote], explicit_defaulting_constants=[INHERIT] +) ###################################################################### # 12.4 Automatic counters and numbering @@ -323,30 +328,40 @@ def value(self, context): # 13.3.1 Page break properties ###################################################################### -AUTO = 'auto' -ALWAYS = 'always' -AVOID = 'avoid' -LEFT = 'left' -RIGHT = 'right' +AUTO = "auto" +ALWAYS = "always" +AVOID = "avoid" +LEFT = "left" +RIGHT = "right" # page_break_before -PAGE_BREAK_BEFORE_CHOICES = Choices(AUTO, ALWAYS, AVOID, LEFT, RIGHT, explicit_defaulting_constants=[INHERIT]) +PAGE_BREAK_BEFORE_CHOICES = Choices( + AUTO, ALWAYS, AVOID, LEFT, RIGHT, explicit_defaulting_constants=[INHERIT] +) # page_break_after -PAGE_BREAK_AFTER_CHOICES = Choices(AUTO, ALWAYS, AVOID, LEFT, RIGHT, explicit_defaulting_constants=[INHERIT]) +PAGE_BREAK_AFTER_CHOICES = Choices( + AUTO, ALWAYS, AVOID, LEFT, RIGHT, explicit_defaulting_constants=[INHERIT] +) # page_break_inside -PAGE_BREAK_INSIDE_CHOICES = Choices(AUTO, AVOID, explicit_defaulting_constants=[INHERIT]) +PAGE_BREAK_INSIDE_CHOICES = Choices( + AUTO, AVOID, explicit_defaulting_constants=[INHERIT] +) ###################################################################### # 13.3.2 Breaks inside elements ###################################################################### # orphans -ORPHANS_CHOICES = Choices(validators=[is_integer], explicit_defaulting_constants=[INHERIT]) +ORPHANS_CHOICES = Choices( + validators=[is_integer], explicit_defaulting_constants=[INHERIT] +) # widows -WIDOWS_CHOICES = Choices(validators=[is_integer], explicit_defaulting_constants=[INHERIT]) +WIDOWS_CHOICES = Choices( + validators=[is_integer], explicit_defaulting_constants=[INHERIT] +) ###################################################################### # 14.1 Foreground color @@ -397,33 +412,37 @@ def value(self, context): ###################################################################### # text_indent -TEXT_INDENT_CHOICES = Choices(validators=[is_length, is_percentage], explicit_defaulting_constants=[INHERIT]) +TEXT_INDENT_CHOICES = Choices( + validators=[is_length, is_percentage], explicit_defaulting_constants=[INHERIT] +) ###################################################################### # 16.2 Alignment ###################################################################### # text_align -LEFT = 'left' -RIGHT = 'right' -CENTER = 'center' -JUSTIFY = 'justify' +LEFT = "left" +RIGHT = "right" +CENTER = "center" +JUSTIFY = "justify" -TEXT_ALIGN_CHOICES = Choices(LEFT, RIGHT, CENTER, JUSTIFY, explicit_defaulting_constants=[INHERIT]) +TEXT_ALIGN_CHOICES = Choices( + LEFT, RIGHT, CENTER, JUSTIFY, explicit_defaulting_constants=[INHERIT] +) class TextAlignInitialValue: def value(self, context): """Return the initial alignment value based on direction.""" - direction = getattr(context, 'direction') + direction = getattr(context, "direction") if direction is LTR: return LEFT if direction is RTL: return RIGHT - raise ValueError('Undefined value "{value}" for direction property!'.format(value=direction)) + raise ValueError(f'Undefined value "{direction}" for direction property!') ###################################################################### @@ -431,34 +450,46 @@ def value(self, context): ###################################################################### # text_decoration -UNDERLINE = 'underline' -OVERLINE = 'overline' -LINE_THROUGH = 'line-through' -BLINK = 'blink' +UNDERLINE = "underline" +OVERLINE = "overline" +LINE_THROUGH = "line-through" +BLINK = "blink" -TEXT_DECORATION_CHOICES = Choices(None, UNDERLINE, OVERLINE, LINE_THROUGH, BLINK, - explicit_defaulting_constants=[INHERIT]) +TEXT_DECORATION_CHOICES = Choices( + None, + UNDERLINE, + OVERLINE, + LINE_THROUGH, + BLINK, + explicit_defaulting_constants=[INHERIT], +) ###################################################################### # 16.4 Letter and word spacing ###################################################################### # letter_spacing -LETTER_SPACING_CHOICES = Choices(NORMAL, validators=[is_length], explicit_defaulting_constants=[INHERIT]) +LETTER_SPACING_CHOICES = Choices( + NORMAL, validators=[is_length], explicit_defaulting_constants=[INHERIT] +) # word_spacing -WORD_SPACING_CHOICES = Choices(NORMAL, validators=[is_length], explicit_defaulting_constants=[INHERIT]) +WORD_SPACING_CHOICES = Choices( + NORMAL, validators=[is_length], explicit_defaulting_constants=[INHERIT] +) ###################################################################### # 16.5 Capitalization ###################################################################### # text_transform -CAPITALIZE = 'capitalize' -UPPERCASE = 'uppercase' -LOWERCASE = 'lowercase' +CAPITALIZE = "capitalize" +UPPERCASE = "uppercase" +LOWERCASE = "lowercase" -TEXT_TRANSFORM_CHOICES = Choices(CAPITALIZE, UPPERCASE, LOWERCASE, None, explicit_defaulting_constants=[INHERIT]) +TEXT_TRANSFORM_CHOICES = Choices( + CAPITALIZE, UPPERCASE, LOWERCASE, None, explicit_defaulting_constants=[INHERIT] +) ###################################################################### # 16.6 White space @@ -466,12 +497,14 @@ def value(self, context): # white_space # NORMAL = 'normal' -PRE = 'pre' -NOWRAP = 'nowrap' -PRE_WRAP = 'pre-wrap' -PRE_LINE = 'pre-line' +PRE = "pre" +NOWRAP = "nowrap" +PRE_WRAP = "pre-wrap" +PRE_LINE = "pre-line" -WHITE_SPACE_CHOICES = Choices(NORMAL, PRE, NOWRAP, PRE_WRAP, PRE_LINE, explicit_defaulting_constants=[INHERIT]) +WHITE_SPACE_CHOICES = Choices( + NORMAL, PRE, NOWRAP, PRE_WRAP, PRE_LINE, explicit_defaulting_constants=[INHERIT] +) ###################################################################### # 17. Tables @@ -479,8 +512,8 @@ def value(self, context): # 17.4.1 Caption position and alignment ###################################################################### -TOP = 'top' -BOTTOM = 'bottom' +TOP = "top" +BOTTOM = "bottom" # caption_side CAPTION_SIDE_CHOICES = Choices(TOP, BOTTOM, explicit_defaulting_constants=[INHERIT]) @@ -498,17 +531,21 @@ def value(self, context): # border_collapse -COLLAPSE = 'collapse' -SEPARATE = 'separate' +COLLAPSE = "collapse" +SEPARATE = "separate" -BORDER_COLLAPSE_CHOICES = Choices(COLLAPSE, SEPARATE, explicit_defaulting_constants=[INHERIT]) +BORDER_COLLAPSE_CHOICES = Choices( + COLLAPSE, SEPARATE, explicit_defaulting_constants=[INHERIT] +) # border_spacing -BORDER_SPACING_CHOICES = Choices(validators=[is_border_spacing], explicit_defaulting_constants=[INHERIT]) +BORDER_SPACING_CHOICES = Choices( + validators=[is_border_spacing], explicit_defaulting_constants=[INHERIT] +) # empty_cells -SHOW = 'show' -HIDE = 'hide' +SHOW = "show" +HIDE = "hide" EMPTY_CELLS_CHOICES = Choices(SHOW, HIDE, explicit_defaulting_constants=[INHERIT]) @@ -518,29 +555,48 @@ def value(self, context): # 18.1 Cursors # cursor -AUTO = 'auto' -CROSSHAIR = 'crosshair' -DEFAULT = 'default' -POINTER = 'pointer' -MOVE = 'move' -E_RESIZE = 'e-resize' -NE_RESIZE = 'ne-resize' -NW_RESIZE = 'nw-resize' -N_RESIZE = 'n-resize' -SE_RESIZE = 'se-resize' -SW_RESIZE = 'sw-resize' -S_RESIZE = 's-resize' -W_RESIZE = 'w-resize' -TEXT = 'text' -WAIT = 'wait' -PROGRESS = 'progress' -HELP = 'help' - -CURSOR_OPTIONS = [AUTO, CROSSHAIR, DEFAULT, POINTER, MOVE, E_RESIZE, NE_RESIZE, NW_RESIZE, N_RESIZE, SE_RESIZE, - SW_RESIZE, S_RESIZE, W_RESIZE, TEXT, WAIT, PROGRESS, HELP] +AUTO = "auto" +CROSSHAIR = "crosshair" +DEFAULT = "default" +POINTER = "pointer" +MOVE = "move" +E_RESIZE = "e-resize" +NE_RESIZE = "ne-resize" +NW_RESIZE = "nw-resize" +N_RESIZE = "n-resize" +SE_RESIZE = "se-resize" +SW_RESIZE = "sw-resize" +S_RESIZE = "s-resize" +W_RESIZE = "w-resize" +TEXT = "text" +WAIT = "wait" +PROGRESS = "progress" +HELP = "help" + +CURSOR_OPTIONS = [ + AUTO, + CROSSHAIR, + DEFAULT, + POINTER, + MOVE, + E_RESIZE, + NE_RESIZE, + NW_RESIZE, + N_RESIZE, + SE_RESIZE, + SW_RESIZE, + S_RESIZE, + W_RESIZE, + TEXT, + WAIT, + PROGRESS, + HELP, +] # Since the order is important, the cursor options are used in the is_cursor validator -CURSOR_CHOICES = Choices(validators=[is_cursor], explicit_defaulting_constants=[INHERIT]) +CURSOR_CHOICES = Choices( + validators=[is_cursor], explicit_defaulting_constants=[INHERIT] +) ###################################################################### # 18.4 Dynamic outlines @@ -571,7 +627,7 @@ def value(self, context): ) # outline_color -INVERT = 'invert' +INVERT = "invert" OUTLINE_COLOR_CHOICES = Choices( INVERT, @@ -585,14 +641,14 @@ def value(self, context): # Flex flow (CSS-flexbox-1, Section 5) ###################################################################### -ROW_REVERSE = 'row-reverse' -COLUMN_REVERSE = 'column-reverse' +ROW_REVERSE = "row-reverse" +COLUMN_REVERSE = "column-reverse" FLEX_DIRECTION_CHOICES = Choices(ROW, ROW_REVERSE, COLUMN, COLUMN_REVERSE) -NOWRAP = 'no-wrap' -WRAP = 'wrap' -WRAP_REVERSE = 'wrap-reverse' +NOWRAP = "no-wrap" +WRAP = "wrap" +WRAP_REVERSE = "wrap-reverse" FLEX_WRAP_CHOICES = Choices(NOWRAP, WRAP, WRAP_REVERSE) @@ -605,7 +661,7 @@ def value(self, context): FLEX_GROW_CHOICES = Choices(validators=[is_number]) FLEX_SHRINK_CHOICES = Choices(validators=[is_number]) -CONTENT = 'content' +CONTENT = "content" FLEX_BASIS_CHOICES = Choices(CONTENT, AUTO, validators=[is_length, is_percentage]) @@ -613,21 +669,25 @@ def value(self, context): # Flex Alignment (CSS-flexbox-1, Section 8) ###################################################################### -FLEX_START = 'flex-start' -FLEX_END = 'flex-end' -CENTER = 'center' -SPACE_BETWEEN = 'space-between' -SPACE_AROUND = 'space-around' +FLEX_START = "flex-start" +FLEX_END = "flex-end" +CENTER = "center" +SPACE_BETWEEN = "space-between" +SPACE_AROUND = "space-around" -JUSTIFY_CONTENT_CHOICES = Choices(FLEX_START, FLEX_END, CENTER, SPACE_BETWEEN, SPACE_AROUND) +JUSTIFY_CONTENT_CHOICES = Choices( + FLEX_START, FLEX_END, CENTER, SPACE_BETWEEN, SPACE_AROUND +) -BASELINE = 'baseline' -STRETCH = 'stretch' +BASELINE = "baseline" +STRETCH = "stretch" ALIGN_SELF_CHOICES = Choices(AUTO, FLEX_START, FLEX_END, CENTER, BASELINE, STRETCH) ALIGN_ITEMS_CHOICES = Choices(AUTO, FLEX_START, FLEX_END, CENTER, BASELINE, STRETCH) -ALIGN_CONTENT_CHOICES = Choices(FLEX_START, FLEX_END, CENTER, SPACE_BETWEEN, SPACE_AROUND, STRETCH) +ALIGN_CONTENT_CHOICES = Choices( + FLEX_START, FLEX_END, CENTER, SPACE_BETWEEN, SPACE_AROUND, STRETCH +) ###################################################################### @@ -640,7 +700,7 @@ def value(self, context): GRID_AUTO_CHOICES = Choices(AUTO) # track_sizes=True) -DENSE = 'dense' +DENSE = "dense" GRID_AUTO_FLOW_CHOICES = Choices(ROW, COLUMN, DENSE) diff --git a/src/colosseum/declaration.py b/src/colosseum/declaration.py index 1cee3b715..0c564c3ad 100644 --- a/src/colosseum/declaration.py +++ b/src/colosseum/declaration.py @@ -100,19 +100,19 @@ def getter(self): properties = {} for property_name in wrapper.VALID_KEYS: try: - properties[property_name] = getattr(self, '_%s' % property_name) + properties[property_name] = getattr(self, "_%s" % property_name) except AttributeError: pass # This is the only place we use the wrapper as a convenience for the user - return wrapper(**properties) if properties else '' + return wrapper(**properties) if properties else "" def setter(self, value): try: # A shorthand parser must return a dictionary shorthand_dict = parser(value) except ValidationError: - raise ValueError("Invalid value '%s' for CSS property '%s'!" % (value, name)) + raise ValueError(f"Invalid value '{value}' for CSS property '{name}'!") # Reset non declared properties to initial values used_properties = shorthand_dict.keys() @@ -144,16 +144,16 @@ def unvalidated_property(name, choices, initial): initial = choices.validate(initial) def getter(self): - return getattr(self, '_%s' % name, initial) + return getattr(self, "_%s" % name, initial) def setter(self, value): - if value != getattr(self, '_%s' % name, initial): - setattr(self, '_%s' % name, value) + if value != getattr(self, "_%s" % name, initial): + setattr(self, "_%s" % name, value) self.dirty = True def deleter(self): try: - delattr(self, '_%s' % name) + delattr(self, "_%s" % name) self.dirty = True except AttributeError: # Attribute doesn't exist @@ -171,14 +171,18 @@ def validated_property(name, choices, initial): # The initial value might be a OtherProperty or Custom class with a value method try: # Check it has a value attribute - value_attr = getattr(initial, 'value') + value_attr = getattr(initial, "value") # Check the value attribute is a callable if not callable(value_attr): - raise ValueError('Initial value "%s" `value` attribute is not callable!' % initial) + raise ValueError( + 'Initial value "%s" `value` attribute is not callable!' % initial + ) except AttributeError: - raise ValueError('Initial value "%s" does not have a value attribute!' % initial) + raise ValueError( + 'Initial value "%s" does not have a value attribute!' % initial + ) def getter(self): try: @@ -187,23 +191,25 @@ def getter(self): except AttributeError: initial_value = initial - return getattr(self, '_%s' % name, initial_value) + return getattr(self, "_%s" % name, initial_value) def setter(self, value): try: value = choices.validate(value) except ValueError: - raise ValueError("Invalid value '%s' for CSS property '%s'; Valid values are: %s" % ( - value, name, choices - )) - - if value != getattr(self, '_%s' % name, initial): - setattr(self, '_%s' % name, value) + raise ValueError( + "Invalid value '{}' for CSS property '{}'; Valid values are: {}".format( + value, name, choices + ) + ) + + if value != getattr(self, "_%s" % name, initial): + setattr(self, "_%s" % name, value) self.dirty = True def deleter(self): try: - delattr(self, '_%s' % name) + delattr(self, "_%s" % name) self.dirty = True except AttributeError: # Attribute doesn't exist @@ -215,55 +221,59 @@ def deleter(self): def directional_property(name, initial): "Define a property attribute that proxies for top/right/bottom/left alternatives." + def getter(self): return ( - getattr(self, name % '_top', initial), - getattr(self, name % '_right', initial), - getattr(self, name % '_bottom', initial), - getattr(self, name % '_left', initial), + getattr(self, name % "_top", initial), + getattr(self, name % "_right", initial), + getattr(self, name % "_bottom", initial), + getattr(self, name % "_left", initial), ) def setter(self, value): if isinstance(value, tuple): if len(value) == 4: - setattr(self, name % '_top', value[0]) - setattr(self, name % '_right', value[1]) - setattr(self, name % '_bottom', value[2]) - setattr(self, name % '_left', value[3]) + setattr(self, name % "_top", value[0]) + setattr(self, name % "_right", value[1]) + setattr(self, name % "_bottom", value[2]) + setattr(self, name % "_left", value[3]) elif len(value) == 3: - setattr(self, name % '_top', value[0]) - setattr(self, name % '_right', value[1]) - setattr(self, name % '_bottom', value[2]) - setattr(self, name % '_left', value[1]) + setattr(self, name % "_top", value[0]) + setattr(self, name % "_right", value[1]) + setattr(self, name % "_bottom", value[2]) + setattr(self, name % "_left", value[1]) elif len(value) == 2: - setattr(self, name % '_top', value[0]) - setattr(self, name % '_right', value[1]) - setattr(self, name % '_bottom', value[0]) - setattr(self, name % '_left', value[1]) + setattr(self, name % "_top", value[0]) + setattr(self, name % "_right", value[1]) + setattr(self, name % "_bottom", value[0]) + setattr(self, name % "_left", value[1]) elif len(value) == 1: - setattr(self, name % '_top', value[0]) - setattr(self, name % '_right', value[0]) - setattr(self, name % '_bottom', value[0]) - setattr(self, name % '_left', value[0]) + setattr(self, name % "_top", value[0]) + setattr(self, name % "_right", value[0]) + setattr(self, name % "_bottom", value[0]) + setattr(self, name % "_left", value[0]) else: - raise ValueError("Invalid value for '%s'; value must be an number, or a 1-4 tuple." % (name % '')) + raise ValueError( + "Invalid value for '%s'; value must be an number, or a 1-4 tuple." + % (name % "") + ) else: - setattr(self, name % '_top', value) - setattr(self, name % '_right', value) - setattr(self, name % '_bottom', value) - setattr(self, name % '_left', value) + setattr(self, name % "_top", value) + setattr(self, name % "_right", value) + setattr(self, name % "_bottom", value) + setattr(self, name % "_left", value) def deleter(self): - delattr(self, name % '_top') - delattr(self, name % '_right') - delattr(self, name % '_bottom') - delattr(self, name % '_left') - - _CSS_PROPERTIES.add(name % '') - _CSS_PROPERTIES.add(name % '_top') - _CSS_PROPERTIES.add(name % '_right') - _CSS_PROPERTIES.add(name % '_bottom') - _CSS_PROPERTIES.add(name % '_left') + delattr(self, name % "_top") + delattr(self, name % "_right") + delattr(self, name % "_bottom") + delattr(self, name % "_left") + + _CSS_PROPERTIES.add(name % "") + _CSS_PROPERTIES.add(name % "_top") + _CSS_PROPERTIES.add(name % "_right") + _CSS_PROPERTIES.add(name % "_bottom") + _CSS_PROPERTIES.add(name % "_left") return property(getter, setter, deleter) @@ -278,94 +288,144 @@ def __init__(self, **style): # 8. Box model ####################################################### # 8.3 Margin properties - margin_top = validated_property('margin_top', choices=MARGIN_CHOICES, initial=0) - margin_right = validated_property('margin_right', choices=MARGIN_CHOICES, initial=0) - margin_bottom = validated_property('margin_bottom', choices=MARGIN_CHOICES, initial=0) - margin_left = validated_property('margin_left', choices=MARGIN_CHOICES, initial=0) - margin = directional_property('margin%s', initial=0) + margin_top = validated_property("margin_top", choices=MARGIN_CHOICES, initial=0) + margin_right = validated_property("margin_right", choices=MARGIN_CHOICES, initial=0) + margin_bottom = validated_property( + "margin_bottom", choices=MARGIN_CHOICES, initial=0 + ) + margin_left = validated_property("margin_left", choices=MARGIN_CHOICES, initial=0) + margin = directional_property("margin%s", initial=0) # 8.4 Padding properties - padding_top = validated_property('padding_top', choices=PADDING_CHOICES, initial=0) - padding_right = validated_property('padding_right', choices=PADDING_CHOICES, initial=0) - padding_bottom = validated_property('padding_bottom', choices=PADDING_CHOICES, initial=0) - padding_left = validated_property('padding_left', choices=PADDING_CHOICES, initial=0) - padding = directional_property('padding%s', initial=0) + padding_top = validated_property("padding_top", choices=PADDING_CHOICES, initial=0) + padding_right = validated_property( + "padding_right", choices=PADDING_CHOICES, initial=0 + ) + padding_bottom = validated_property( + "padding_bottom", choices=PADDING_CHOICES, initial=0 + ) + padding_left = validated_property( + "padding_left", choices=PADDING_CHOICES, initial=0 + ) + padding = directional_property("padding%s", initial=0) # 8.5 Border properties # 8.5.1 Border width - border_top_width = validated_property('border_top_width', choices=BORDER_WIDTH_CHOICES, initial=0) - border_right_width = validated_property('border_right_width', choices=BORDER_WIDTH_CHOICES, initial=0) - border_bottom_width = validated_property('border_bottom_width', choices=BORDER_WIDTH_CHOICES, initial=0) - border_left_width = validated_property('border_left_width', choices=BORDER_WIDTH_CHOICES, initial=0) - border_width = directional_property('border%s_width', initial=0) + border_top_width = validated_property( + "border_top_width", choices=BORDER_WIDTH_CHOICES, initial=0 + ) + border_right_width = validated_property( + "border_right_width", choices=BORDER_WIDTH_CHOICES, initial=0 + ) + border_bottom_width = validated_property( + "border_bottom_width", choices=BORDER_WIDTH_CHOICES, initial=0 + ) + border_left_width = validated_property( + "border_left_width", choices=BORDER_WIDTH_CHOICES, initial=0 + ) + border_width = directional_property("border%s_width", initial=0) # 8.5.2 Border color - border_top_color = validated_property('border_top_color', choices=BORDER_COLOR_CHOICES, - initial=OtherProperty('color')) - border_right_color = validated_property('border_right_color', choices=BORDER_COLOR_CHOICES, - initial=OtherProperty('color')) - border_bottom_color = validated_property('border_bottom_color', choices=BORDER_COLOR_CHOICES, - initial=OtherProperty('color')) - border_left_color = validated_property('border_left_color', choices=BORDER_COLOR_CHOICES, - initial=OtherProperty('color')) - border_color = directional_property('border%s_color', initial=0) + border_top_color = validated_property( + "border_top_color", choices=BORDER_COLOR_CHOICES, initial=OtherProperty("color") + ) + border_right_color = validated_property( + "border_right_color", + choices=BORDER_COLOR_CHOICES, + initial=OtherProperty("color"), + ) + border_bottom_color = validated_property( + "border_bottom_color", + choices=BORDER_COLOR_CHOICES, + initial=OtherProperty("color"), + ) + border_left_color = validated_property( + "border_left_color", + choices=BORDER_COLOR_CHOICES, + initial=OtherProperty("color"), + ) + border_color = directional_property("border%s_color", initial=0) # 8.5.3 Border style - border_top_style = validated_property('border_top_style', choices=BORDER_STYLE_CHOICES, initial=None) - border_right_style = validated_property('border_right_style', choices=BORDER_STYLE_CHOICES, initial=None) - border_bottom_style = validated_property('border_bottom_style', choices=BORDER_STYLE_CHOICES, initial=None) - border_left_style = validated_property('border_left_style', choices=BORDER_STYLE_CHOICES, initial=None) - border_style = directional_property('border%s_style', initial=None) + border_top_style = validated_property( + "border_top_style", choices=BORDER_STYLE_CHOICES, initial=None + ) + border_right_style = validated_property( + "border_right_style", choices=BORDER_STYLE_CHOICES, initial=None + ) + border_bottom_style = validated_property( + "border_bottom_style", choices=BORDER_STYLE_CHOICES, initial=None + ) + border_left_style = validated_property( + "border_left_style", choices=BORDER_STYLE_CHOICES, initial=None + ) + border_style = directional_property("border%s_style", initial=None) # 8.5.4 Border shorthand properties - border_top = validated_shorthand_property('border_top', parser=parser.border_top, wrapper=BorderTop) - border_right = validated_shorthand_property('border_right', parser=parser.border_right, wrapper=BorderRight) - border_bottom = validated_shorthand_property('border_bottom', parser=parser.border_bottom, wrapper=BorderBottom) - border_left = validated_shorthand_property('border_left', parser=parser.border_left, wrapper=BorderLeft) - border = validated_shorthand_property('border', parser=parser.border, wrapper=Border) + border_top = validated_shorthand_property( + "border_top", parser=parser.border_top, wrapper=BorderTop + ) + border_right = validated_shorthand_property( + "border_right", parser=parser.border_right, wrapper=BorderRight + ) + border_bottom = validated_shorthand_property( + "border_bottom", parser=parser.border_bottom, wrapper=BorderBottom + ) + border_left = validated_shorthand_property( + "border_left", parser=parser.border_left, wrapper=BorderLeft + ) + border = validated_shorthand_property( + "border", parser=parser.border, wrapper=Border + ) # 9. Visual formatting model ######################################### # 9.2.4 The display property - display = validated_property('display', choices=DISPLAY_CHOICES, initial=INLINE) + display = validated_property("display", choices=DISPLAY_CHOICES, initial=INLINE) # 9.3 Positioning schemes - position = validated_property('position', choices=POSITION_CHOICES, initial=STATIC) + position = validated_property("position", choices=POSITION_CHOICES, initial=STATIC) # 9.3.2 Box offsets - top = validated_property('top', choices=BOX_OFFSET_CHOICES, initial=AUTO) - bottom = validated_property('bottom', choices=BOX_OFFSET_CHOICES, initial=AUTO) - left = validated_property('left', choices=BOX_OFFSET_CHOICES, initial=AUTO) - right = validated_property('right', choices=BOX_OFFSET_CHOICES, initial=AUTO) + top = validated_property("top", choices=BOX_OFFSET_CHOICES, initial=AUTO) + bottom = validated_property("bottom", choices=BOX_OFFSET_CHOICES, initial=AUTO) + left = validated_property("left", choices=BOX_OFFSET_CHOICES, initial=AUTO) + right = validated_property("right", choices=BOX_OFFSET_CHOICES, initial=AUTO) # 9.5.1 Positioning the float - float = validated_property('float', choices=FLOAT_CHOICES, initial=None) + float = validated_property("float", choices=FLOAT_CHOICES, initial=None) # 9.5.2 Controlling flow next to floats - clear = validated_property('clear', choices=CLEAR_CHOICES, initial=None) + clear = validated_property("clear", choices=CLEAR_CHOICES, initial=None) # 9.9 Layered Presentation - z_index = validated_property('z_index', choices=Z_INDEX_CHOICES, initial=AUTO) + z_index = validated_property("z_index", choices=Z_INDEX_CHOICES, initial=AUTO) # 9.10 Text Direction - direction = validated_property('direction', choices=DIRECTION_CHOICES, initial=LTR) - unicode_bidi = validated_property('unicode_bidi', choices=UNICODE_BIDI_CHOICES, initial=NORMAL) + direction = validated_property("direction", choices=DIRECTION_CHOICES, initial=LTR) + unicode_bidi = validated_property( + "unicode_bidi", choices=UNICODE_BIDI_CHOICES, initial=NORMAL + ) # 10. Visual formatting model details ################################ # 10.2 Content width - width = validated_property('width', choices=SIZE_CHOICES, initial=AUTO) + width = validated_property("width", choices=SIZE_CHOICES, initial=AUTO) # 10.4 Minimum and maximum width # Initial value updated by Flexbox 4.5 - min_width = validated_property('min_width', choices=MIN_SIZE_CHOICES, initial=AUTO) - max_width = validated_property('max_width', choices=MAX_SIZE_CHOICES, initial=None) + min_width = validated_property("min_width", choices=MIN_SIZE_CHOICES, initial=AUTO) + max_width = validated_property("max_width", choices=MAX_SIZE_CHOICES, initial=None) # 10.5 Content height - height = validated_property('height', choices=SIZE_CHOICES, initial=AUTO) + height = validated_property("height", choices=SIZE_CHOICES, initial=AUTO) # 10.7 Minimum and maximum heights # Initial value updated by Flexbox 4.5 - min_height = validated_property('min_height', choices=MIN_SIZE_CHOICES, initial=AUTO) - max_height = validated_property('max_height', choices=MAX_SIZE_CHOICES, initial=None) + min_height = validated_property( + "min_height", choices=MIN_SIZE_CHOICES, initial=AUTO + ) + max_height = validated_property( + "max_height", choices=MAX_SIZE_CHOICES, initial=None + ) # 10.8 Leading and half-leading # line_height @@ -373,20 +433,24 @@ def __init__(self, **style): # 11. Visual effects ################################################# # 11.1.1 Overflow - overflow = validated_property('overflow', choices=OVERFLOW_CHOICES, initial=VISIBLE) + overflow = validated_property("overflow", choices=OVERFLOW_CHOICES, initial=VISIBLE) # 11.1.2 Clip - clip = validated_property('clip', choices=CLIP_CHOICES, initial=AUTO) + clip = validated_property("clip", choices=CLIP_CHOICES, initial=AUTO) # 11.2 Visibility - visibility = validated_property('visibility', choices=VISIBILITY_CHOICES, initial=VISIBLE) + visibility = validated_property( + "visibility", choices=VISIBILITY_CHOICES, initial=VISIBLE + ) # 12. Visual effects ################################################# # 12.2 The content property # content # 12.3 Quotation marks - quotes = validated_property('quotes', choices=QUOTES_CHOICES, initial=INITIAL) # TODO: Depends on user agent + quotes = validated_property( + "quotes", choices=QUOTES_CHOICES, initial=INITIAL + ) # TODO: Depends on user agent # 12.4 Automatic counters and numbering # counter-reset @@ -400,20 +464,28 @@ def __init__(self, **style): # 13. Paged media #################################################### # 13.3.1 Page break properties - page_break_before = validated_property('page_break_before', choices=PAGE_BREAK_BEFORE_CHOICES, initial=AUTO) - page_break_after = validated_property('page_break_after', choices=PAGE_BREAK_AFTER_CHOICES, initial=AUTO) - page_break_inside = validated_property('page_break_inside', choices=PAGE_BREAK_INSIDE_CHOICES, initial=AUTO) + page_break_before = validated_property( + "page_break_before", choices=PAGE_BREAK_BEFORE_CHOICES, initial=AUTO + ) + page_break_after = validated_property( + "page_break_after", choices=PAGE_BREAK_AFTER_CHOICES, initial=AUTO + ) + page_break_inside = validated_property( + "page_break_inside", choices=PAGE_BREAK_INSIDE_CHOICES, initial=AUTO + ) # 13.3.2 Breaks inside elements - orphans = validated_property('orphans', choices=ORPHANS_CHOICES, initial=2) - widows = validated_property('widows', choices=WIDOWS_CHOICES, initial=2) + orphans = validated_property("orphans", choices=ORPHANS_CHOICES, initial=2) + widows = validated_property("widows", choices=WIDOWS_CHOICES, initial=2) # 14. Colors and backgrounds ######################################### # 14.1 Foreground color - color = validated_property('color', choices=COLOR_CHOICES, initial=default) + color = validated_property("color", choices=COLOR_CHOICES, initial=default) # 14.2.1 Background properties - background_color = validated_property('background_color', choices=BACKGROUND_COLOR_CHOICES, initial=default) + background_color = validated_property( + "background_color", choices=BACKGROUND_COLOR_CHOICES, initial=default + ) # background_image # background_repeat # background_attachment @@ -441,46 +513,77 @@ def __init__(self, **style): # 16. Text ########################################################### # 16.1 Indentation - text_indent = validated_property('text_indent', choices=TEXT_INDENT_CHOICES, initial=0) + text_indent = validated_property( + "text_indent", choices=TEXT_INDENT_CHOICES, initial=0 + ) # 16.2 Alignment - text_align = validated_property('text_align', choices=TEXT_ALIGN_CHOICES, - initial=TextAlignInitialValue()) + text_align = validated_property( + "text_align", choices=TEXT_ALIGN_CHOICES, initial=TextAlignInitialValue() + ) # 16.3 Decoration - text_decoration = validated_property('text_decoration', choices=TEXT_DECORATION_CHOICES, initial=None) + text_decoration = validated_property( + "text_decoration", choices=TEXT_DECORATION_CHOICES, initial=None + ) # 16.4 Letter and word spacing - letter_spacing = validated_property('letter_spacing', choices=LETTER_SPACING_CHOICES, initial=NORMAL) - word_spacing = validated_property('word_spacing', choices=WORD_SPACING_CHOICES, initial=NORMAL) + letter_spacing = validated_property( + "letter_spacing", choices=LETTER_SPACING_CHOICES, initial=NORMAL + ) + word_spacing = validated_property( + "word_spacing", choices=WORD_SPACING_CHOICES, initial=NORMAL + ) # 16.5 Capitalization - text_transform = validated_property('text_transform', choices=TEXT_TRANSFORM_CHOICES, initial=None) + text_transform = validated_property( + "text_transform", choices=TEXT_TRANSFORM_CHOICES, initial=None + ) # 16.6 White space - white_space = validated_property('white_space', choices=WHITE_SPACE_CHOICES, initial=NORMAL) + white_space = validated_property( + "white_space", choices=WHITE_SPACE_CHOICES, initial=NORMAL + ) # 17. Tables ######################################################### # 17.4.1 Caption position and alignment - caption_side = validated_property('caption_side', choices=CAPTION_SIDE_CHOICES, initial=TOP) + caption_side = validated_property( + "caption_side", choices=CAPTION_SIDE_CHOICES, initial=TOP + ) # 17.5.2 Table width algorithms - table_layout = validated_property('table_layout', choices=TABLE_LAYOUT_CHOICES, initial=AUTO) + table_layout = validated_property( + "table_layout", choices=TABLE_LAYOUT_CHOICES, initial=AUTO + ) # 17.6 Borders - border_collapse = validated_property('border_collapse', choices=BORDER_COLLAPSE_CHOICES, initial=SEPARATE) - border_spacing = validated_property('border_spacing', choices=BORDER_SPACING_CHOICES, initial=0) - empty_cells = validated_property('empty_cells', choices=EMPTY_CELLS_CHOICES, initial=SHOW) + border_collapse = validated_property( + "border_collapse", choices=BORDER_COLLAPSE_CHOICES, initial=SEPARATE + ) + border_spacing = validated_property( + "border_spacing", choices=BORDER_SPACING_CHOICES, initial=0 + ) + empty_cells = validated_property( + "empty_cells", choices=EMPTY_CELLS_CHOICES, initial=SHOW + ) # 18. User interface ################################################# # 18.1 Cursors - cursor = validated_property('cursor', CURSOR_CHOICES, initial=AUTO) + cursor = validated_property("cursor", CURSOR_CHOICES, initial=AUTO) # 18.4 Dynamic outlines - outline_width = validated_property('outline_width', choices=OUTLINE_WIDTH_CHOICES, initial=MEDIUM) - outline_style = validated_property('outline_style', choices=OUTLINE_STYLE_CHOICES, initial=None) - outline_color = validated_property('outline_color', choices=OUTLINE_COLOR_CHOICES, initial=INVERT) - outline = validated_shorthand_property('outline', parser=parser.outline, wrapper=Outline) + outline_width = validated_property( + "outline_width", choices=OUTLINE_WIDTH_CHOICES, initial=MEDIUM + ) + outline_style = validated_property( + "outline_style", choices=OUTLINE_STYLE_CHOICES, initial=None + ) + outline_color = validated_property( + "outline_color", choices=OUTLINE_COLOR_CHOICES, initial=INVERT + ) + outline = validated_shorthand_property( + "outline", parser=parser.outline, wrapper=Outline + ) ###################################################################### # Flexbox properties @@ -586,7 +689,7 @@ def engine(self): def update(self, **styles): "Set multiple styles on the CSS definition." for name, value in styles.items(): - name = name.replace('-', '_') + name = name.replace("-", "_") if name not in _CSS_PROPERTIES: raise NameError("Unknown CSS style '%s'" % name) @@ -601,26 +704,26 @@ def copy(self, node=None): dup._node = node for style in _CSS_PROPERTIES: try: - setattr(dup, style, getattr(self, '_%s' % style)) + setattr(dup, style, getattr(self, "_%s" % style)) except AttributeError: pass return dup def __getitem__(self, name): - name = name.replace('-', '_') + name = name.replace("-", "_") if name in _CSS_PROPERTIES: return getattr(self, name) raise KeyError(name) def __setitem__(self, name, value): - name = name.replace('-', '_') + name = name.replace("-", "_") if name in _CSS_PROPERTIES: setattr(self, name, value) else: raise KeyError(name) def __delitem__(self, name): - name = name.replace('-', '_') + name = name.replace("-", "_") if name in _CSS_PROPERTIES: try: delattr(self, name) @@ -633,7 +736,7 @@ def items(self): result = [] for name in _CSS_PROPERTIES: try: - result.append((name, getattr(self, '_%s' % name))) + result.append((name, getattr(self, "_%s" % name))) except AttributeError: pass return result @@ -641,7 +744,7 @@ def items(self): def keys(self): result = set() for name in _CSS_PROPERTIES: - if hasattr(self, '_%s' % name): + if hasattr(self, "_%s" % name): result.add(name) return result @@ -652,14 +755,10 @@ def __str__(self): non_default = [] for name in _CSS_PROPERTIES: try: - non_default.append(( - name.replace('_', '-'), - getattr(self, '_%s' % name) - )) + non_default.append( + (name.replace("_", "-"), getattr(self, "_%s" % name)) + ) except AttributeError: pass - return "; ".join( - "%s: %s" % (name, value) - for name, value in sorted(non_default) - ) + return "; ".join(f"{name}: {value}" for name, value in sorted(non_default)) diff --git a/src/colosseum/dimensions.py b/src/colosseum/dimensions.py index 432e94851..7c137c808 100644 --- a/src/colosseum/dimensions.py +++ b/src/colosseum/dimensions.py @@ -1,4 +1,3 @@ - class Size: """Representation of the size of a node in the DOM. @@ -13,6 +12,7 @@ class Size: the height is the minimum allowed width. ratio: The height between height and width. width = height * ratio """ + def __init__(self, node): self._node = node self._width = None @@ -161,14 +161,17 @@ class Box: absolute_content_right: The right position of the box, relative to the block container """ + def __init__(self, node): self.node = node self._reset() def __repr__(self): - return '' % ( - self.content_width, self.content_height, - self.absolute_content_left, self.absolute_content_top, + return "".format( + self.content_width, + self.content_height, + self.absolute_content_left, + self.absolute_content_top, ) # def __eq__(self, value): @@ -420,7 +423,8 @@ def border_box_height(self): @property def absolute_border_box_top(self): return ( - self.__origin_top + self._content_top + self.__origin_top + + self._content_top - self.padding_top - self.border_top_width ) @@ -428,7 +432,8 @@ def absolute_border_box_top(self): @property def absolute_border_box_right(self): return ( - self.__origin_left + self._content_left + self.__origin_left + + self._content_left + self.content_width + self.padding_right + self.border_right_width @@ -437,7 +442,8 @@ def absolute_border_box_right(self): @property def absolute_border_box_bottom(self): return ( - self.__origin_top + self._content_top + self.__origin_top + + self._content_top + self.content_height + self.padding_bottom + self.border_bottom_width @@ -446,7 +452,8 @@ def absolute_border_box_bottom(self): @property def absolute_border_box_left(self): return ( - self.__origin_left + self._content_left + self.__origin_left + + self._content_left - self.padding_left - self.border_left_width ) @@ -484,11 +491,21 @@ def absolute_padding_box_top(self): @property def absolute_padding_box_right(self): - return self.__origin_left + self._content_left + self.content_width + self.padding_right + return ( + self.__origin_left + + self._content_left + + self.content_width + + self.padding_right + ) @property def absolute_padding_box_bottom(self): - return self.__origin_top + self._content_top + self.content_height + self.padding_bottom + return ( + self.__origin_top + + self._content_top + + self.content_height + + self.padding_bottom + ) @property def absolute_padding_box_left(self): diff --git a/src/colosseum/engine.py b/src/colosseum/engine.py index 5946d5fbd..e62cfb77f 100644 --- a/src/colosseum/engine.py +++ b/src/colosseum/engine.py @@ -63,10 +63,7 @@ def is_float_positioned_element(node): def is_absolute_positioned_element(node): - return ( - node.style.position is ABSOLUTE - or node.style.position is FIXED - ) + return node.style.position is ABSOLUTE or node.style.position is FIXED def establishes_inline_formatting_context(node): @@ -177,25 +174,33 @@ def layout_box(display, node, containing_block, viewport, font): # Copy margin, border and padding attributes to the layout horizontal = { - 'display': display, - 'font': font, - 'size': containing_block.layout.content_width + "display": display, + "font": font, + "size": containing_block.layout.content_width, } vertical = { - 'display': display, - 'font': font, - 'size': containing_block.layout.content_height + "display": display, + "font": font, + "size": containing_block.layout.content_height, } node.layout.margin_top = calculate_size(node.style.margin_top, vertical) node.layout.margin_right = calculate_size(node.style.margin_right, horizontal) node.layout.margin_bottom = calculate_size(node.style.margin_bottom, vertical) node.layout.margin_left = calculate_size(node.style.margin_left, horizontal) - node.layout.border_top_width = calculate_size(node.style.border_top_width, horizontal) - node.layout.border_right_width = calculate_size(node.style.border_right_width, vertical) - node.layout.border_bottom_width = calculate_size(node.style.border_bottom_width, horizontal) - node.layout.border_left_width = calculate_size(node.style.border_left_width, vertical) + node.layout.border_top_width = calculate_size( + node.style.border_top_width, horizontal + ) + node.layout.border_right_width = calculate_size( + node.style.border_right_width, vertical + ) + node.layout.border_bottom_width = calculate_size( + node.style.border_bottom_width, horizontal + ) + node.layout.border_left_width = calculate_size( + node.style.border_left_width, vertical + ) node.layout.padding_top = calculate_size(node.style.padding_top, horizontal) node.layout.padding_right = calculate_size(node.style.padding_right, vertical) @@ -212,7 +217,9 @@ def layout_box(display, node, containing_block, viewport, font): calculate_height_and_margins(node, vertical) if node.style.position is ABSOLUTE or node.style.position is FIXED: # Section 9.6 - raise NotImplementedError("Section 9.6 - Absolute positioning") # pragma: no cover + raise NotImplementedError( + "Section 9.6 - Absolute positioning" + ) # pragma: no cover elif node.style.float is not None: raise NotImplementedError("Section 9.5 - Floats") # pragma: no cover else: # Section 9.4 - Normal flow @@ -299,7 +306,7 @@ def calculate_size(value, context): if value is AUTO: return value if value is THIN or value is MEDIUM or value is THICK: - return context['display'].fixed_size(value) + return context["display"].fixed_size(value) if value == 0 or value is None: # This will also catch 0px, so we need to return 0 literally # to ensure that the calulated size is either an integer or AUTO @@ -369,11 +376,13 @@ def calculate_inline_replaced_width(node, context): if node.style.height is AUTO: if node.intrinsic.width is not None: # P2 content_width = node.intrinsic.width - elif node.intrinsic.height is not None and node.intrinsic.ratio is not None: # P3 + elif ( + node.intrinsic.height is not None and node.intrinsic.ratio is not None + ): # P3 content_width = round(node.intrinsic.height * node.intrinsic.ratio) elif node.intrinsic.ratio is not None: # P4 content_width = ( - context['size'] + context["size"] - node.layout.margin_left - node.layout.border_left_width - node.layout.padding_left @@ -391,7 +400,11 @@ def calculate_inline_replaced_width(node, context): content_width = node.style.width.px(**context) node.layout.content_width = content_width - node.layout.content_left = node.layout.margin_left + node.layout.border_left_width + node.layout.padding_left + node.layout.content_left = ( + node.layout.margin_left + + node.layout.border_left_width + + node.layout.padding_left + ) def calculate_block_non_replaced_normal_flow_width(node, context): @@ -417,18 +430,20 @@ def calculate_block_non_replaced_normal_flow_width(node, context): size += node.layout.margin_left if node.layout.margin_right is not AUTO: size += node.layout.margin_right - if size > context['size']: + if size > context["size"]: if node.layout.margin_left is AUTO: node.layout.margin_left = 0 if node.layout.margin_right is AUTO: node.layout.margin_right = 0 - if (node.layout.margin_left is not AUTO - and node.style.width is not AUTO - and node.layout.margin_right is not AUTO): # P3 + if ( + node.layout.margin_left is not AUTO + and node.style.width is not AUTO + and node.layout.margin_right is not AUTO + ): # P3 if node.style.direction is LTR: node.layout.margin_right = ( - context['size'] + context["size"] - node.layout.margin_left - node.layout.border_left_width - node.layout.padding_left @@ -438,7 +453,7 @@ def calculate_block_non_replaced_normal_flow_width(node, context): ) else: node.layout.margin_left = ( - context['size'] + context["size"] - node.layout.border_left_width - node.layout.padding_left - content_width @@ -447,11 +462,13 @@ def calculate_block_non_replaced_normal_flow_width(node, context): - node.layout.margin_right ) - elif (node.layout.margin_left is AUTO - and node.style.width is not AUTO - and node.layout.margin_right is not AUTO): # P4 + elif ( + node.layout.margin_left is AUTO + and node.style.width is not AUTO + and node.layout.margin_right is not AUTO + ): # P4 node.layout.margin_left = ( - context['size'] + context["size"] - node.layout.border_left_width - node.layout.padding_left - content_width @@ -460,11 +477,13 @@ def calculate_block_non_replaced_normal_flow_width(node, context): - node.layout.margin_right ) - elif (node.layout.margin_left is not AUTO - and node.style.width is AUTO - and node.layout.margin_right is not AUTO): # P4 + elif ( + node.layout.margin_left is not AUTO + and node.style.width is AUTO + and node.layout.margin_right is not AUTO + ): # P4 content_width = ( - context['size'] + context["size"] - node.layout.margin_left - node.layout.border_left_width - node.layout.padding_left @@ -473,11 +492,13 @@ def calculate_block_non_replaced_normal_flow_width(node, context): - node.layout.margin_right ) - elif (node.layout.margin_left is not AUTO - and node.style.width is not AUTO - and node.layout.margin_right is AUTO): # P4 + elif ( + node.layout.margin_left is not AUTO + and node.style.width is not AUTO + and node.layout.margin_right is AUTO + ): # P4 node.layout.margin_right = ( - context['size'] + context["size"] - node.layout.margin_left - node.layout.border_left_width - node.layout.padding_left @@ -493,7 +514,7 @@ def calculate_block_non_replaced_normal_flow_width(node, context): node.layout.margin_right = 0 content_width = ( - context['size'] + context["size"] - node.layout.margin_left - node.layout.border_left_width - node.layout.padding_left @@ -504,7 +525,7 @@ def calculate_block_non_replaced_normal_flow_width(node, context): elif node.layout.margin_left is AUTO and node.layout.margin_right is AUTO: avail_margin = ( - context['size'] + context["size"] - node.layout.border_left_width - node.layout.padding_left - content_width @@ -517,10 +538,14 @@ def calculate_block_non_replaced_normal_flow_width(node, context): else: # This branch should never execute. # If it does, we've missed something along the way. - raise Exception('Unknown S10.3.3 layout case') # pragma: no cover + raise Exception("Unknown S10.3.3 layout case") # pragma: no cover node.layout.content_width = content_width - node.layout.content_left = node.layout.margin_left + node.layout.border_left_width + node.layout.padding_left + node.layout.content_left = ( + node.layout.margin_left + + node.layout.border_left_width + + node.layout.padding_left + ) def calculate_block_replaced_normal_flow_width(node, context): @@ -592,13 +617,17 @@ def calculate_height_and_margins(node, context): else: # This branch should never execute. # If it does, we've missed something along the way. - raise Exception("Unknown normal flow height calculation") # pragma: no cover + raise Exception( + "Unknown normal flow height calculation" + ) # pragma: no cover def calculate_inline_non_replaced_height(node, context): "Implements S10.6.1" node.layout.content_height = node.intrinsic.height - node.layout.content_top += node.layout.margin_top + node.layout.border_top_width + node.layout.padding_top + node.layout.content_top += ( + node.layout.margin_top + node.layout.border_top_width + node.layout.padding_top + ) def calculate_inline_replaced_height(node, context): @@ -609,7 +638,11 @@ def calculate_inline_replaced_height(node, context): if node.layout.margin_bottom is AUTO: # P1 node.layout.margin_bottom = 0 - if node.style.width is AUTO and node.style.height is AUTO and node.intrinsic.height is not None: # P2 + if ( + node.style.width is AUTO + and node.style.height is AUTO + and node.intrinsic.height is not None + ): # P2 content_height = node.intrinsic.height elif node.style.height is AUTO and node.intrinsic.ratio: # P3 content_height = node.layout.content_width * node.intrinsic.ratio @@ -621,7 +654,9 @@ def calculate_inline_replaced_height(node, context): content_height = node.style.height.px(**context) node.layout.content_height = content_height - node.layout.content_top += node.layout.margin_top + node.layout.border_top_width + node.layout.padding_top + node.layout.content_top += ( + node.layout.margin_top + node.layout.border_top_width + node.layout.padding_top + ) def calculate_block_non_replaced_normal_flow_height(node, context): @@ -655,7 +690,7 @@ def calculate_block_non_replaced_normal_flow_height(node, context): if node.parent is not None and node.parent.style.height is not AUTO: parent_height = node.parent.style.height.px(**context) content_height = node.style.height.px( - display=context['display'], font=context['font'], size=parent_height + display=context["display"], font=context["font"], size=parent_height ) else: content_height = node.style.height.px(**context) diff --git a/src/colosseum/parser.py b/src/colosseum/parser.py index 0c20bdd2c..e95629379 100644 --- a/src/colosseum/parser.py +++ b/src/colosseum/parser.py @@ -26,7 +26,7 @@ def units(value): for suffix, unit in Unit.UNITS: if value.endswith(suffix): try: - return float(value[:-len(suffix)]) * unit + return float(value[: -len(suffix)]) * unit except ValueError: pass @@ -35,7 +35,7 @@ def units(value): except ValueError: pass - raise ValueError('Unknown size %s' % value) + raise ValueError("Unknown size %s" % value) def color(value): @@ -59,44 +59,46 @@ def color(value): return value elif isinstance(value, str): - if value[0] == '#': + if value[0] == "#": return pound_sign_color(value) - elif value.startswith('rgba'): + elif value.startswith("rgba"): try: - values = value[5:-1].split(',') + values = value[5:-1].split(",") if len(values) == 4: - return rgb(int(values[0]), int(values[1]), int(values[2]), float(values[3])) + return rgb( + int(values[0]), int(values[1]), int(values[2]), float(values[3]) + ) except ValueError: pass - elif value.startswith('rgb'): + elif value.startswith("rgb"): try: - values = value[4:-1].split(',') + values = value[4:-1].split(",") if len(values) == 3: return rgb(int(values[0]), int(values[1]), int(values[2])) except ValueError: pass - elif value.startswith('hsla'): + elif value.startswith("hsla"): try: - values = value[5:-1].split(',') + values = value[5:-1].split(",") if len(values) == 4: return hsl( int(values[0]), - int(values[1].strip().rstrip('%')) / 100.0, - int(values[2].strip().rstrip('%')) / 100.0, - float(values[3]) + int(values[1].strip().rstrip("%")) / 100.0, + int(values[2].strip().rstrip("%")) / 100.0, + float(values[3]), ) except ValueError: pass - elif value.startswith('hsl'): + elif value.startswith("hsl"): try: - values = value[4:-1].split(',') + values = value[4:-1].split(",") if len(values) == 3: return hsl( int(values[0]), - int(values[1].strip().rstrip('%')) / 100.0, - int(values[2].strip().rstrip('%')) / 100.0, + int(values[1].strip().rstrip("%")) / 100.0, + int(values[2].strip().rstrip("%")) / 100.0, ) except ValueError: pass @@ -106,7 +108,7 @@ def color(value): except KeyError: pass - raise ValueError('Unknown color %s' % value) + raise ValueError("Unknown color %s" % value) def pound_sign_color(value): @@ -130,7 +132,7 @@ def pound_sign_color(value): r=int(value[1] + value[1], 16), g=int(value[2] + value[2], 16), b=int(value[3] + value[3], 16), - a=int(value[4] + value[4], 16) / 0xff, + a=int(value[4] + value[4], 16) / 0xFF, ) elif len(value) == 7: return rgb( @@ -143,10 +145,10 @@ def pound_sign_color(value): r=int(value[1:3], 16), g=int(value[3:5], 16), b=int(value[5:7], 16), - a=int(value[7:9], 16) / 0xff, + a=int(value[7:9], 16) / 0xFF, ) else: - raise ValueError('Unknown color %s' % value) + raise ValueError("Unknown color %s" % value) def border_spacing(value): @@ -162,7 +164,7 @@ def border_spacing(value): if isinstance(value, Sequence) and not isinstance(value, str): values = value elif isinstance(value, (int, float)): - values = (value, ) + values = (value,) else: values = [x.strip() for x in value.split()] @@ -174,28 +176,32 @@ def border_spacing(value): vertical = units(values[1]) return BorderSpacing(horizontal, vertical) - raise ValueError('Unknown border spacing %s' % str(value)) + raise ValueError("Unknown border spacing %s" % str(value)) def rect(value): """Parse a given rect shape.""" - value = ' '.join(val.strip() for val in value.split()) - if (value.startswith('rect(') and value.endswith(')') - and value.count('rect(') == 1 and value.count(')') == 1): - value = value.replace('rect(', '') - value = value.replace(')', '').strip() + value = " ".join(val.strip() for val in value.split()) + if ( + value.startswith("rect(") + and value.endswith(")") + and value.count("rect(") == 1 + and value.count(")") == 1 + ): + value = value.replace("rect(", "") + value = value.replace(")", "").strip() values = None - if value.count(',') == 3: - values = value.split(',') - elif value.count(',') == 0 and value.count(' ') == 3: - values = value.split(' ') + if value.count(",") == 3: + values = value.split(",") + elif value.count(",") == 0 and value.count(" ") == 3: + values = value.split(" ") if values is not None: values = [units(val.strip()) for val in values] return Rect(*values) - raise ValueError('Unknown shape %s' % value) + raise ValueError("Unknown shape %s" % value) def quotes(value): @@ -212,7 +218,7 @@ def quotes(value): # Flatten list of tuples values = [repr(item) for sublist in value for item in sublist] else: - raise ValueError('Unknown quote %s' % value) + raise ValueError("Unknown quote %s" % value) # Length must be a multiple of 2 if len(values) > 0 and len(values) % 2 == 0: @@ -228,14 +234,14 @@ def quotes(value): parsed_values.append((opening, closing)) if len(opening) == 0 or len(closing) == 0: - raise ValueError('Invalid quotes %s' % value) + raise ValueError("Invalid quotes %s" % value) except SyntaxError: - raise ValueError('Invalid quotes %s' % value) + raise ValueError("Invalid quotes %s" % value) return Quotes(parsed_values) - raise ValueError('Length of quote items must be a multiple of 2!') + raise ValueError("Length of quote items must be a multiple of 2!") ############################################################################## @@ -244,24 +250,28 @@ def quotes(value): def _parse_outline_property_part(value, outline_dict): """Parse outline shorthand property part for known properties.""" from .constants import ( # noqa - OUTLINE_COLOR_CHOICES, OUTLINE_STYLE_CHOICES, OUTLINE_WIDTH_CHOICES, + OUTLINE_COLOR_CHOICES, + OUTLINE_STYLE_CHOICES, + OUTLINE_WIDTH_CHOICES, ) - for property_name, choices in {'outline_color': OUTLINE_COLOR_CHOICES, - 'outline_style': OUTLINE_STYLE_CHOICES, - 'outline_width': OUTLINE_WIDTH_CHOICES}.items(): + for property_name, choices in { + "outline_color": OUTLINE_COLOR_CHOICES, + "outline_style": OUTLINE_STYLE_CHOICES, + "outline_width": OUTLINE_WIDTH_CHOICES, + }.items(): try: value = choices.validate(value) except (ValueError, ValidationError): continue if property_name in outline_dict: - raise ValueError('Invalid duplicated property!') + raise ValueError("Invalid duplicated property!") outline_dict[property_name] = value return outline_dict - raise ValueError('Outline value "{value}" not valid!'.format(value=value)) + raise ValueError(f'Outline value "{value}" not valid!') def outline(value): @@ -280,9 +290,9 @@ def outline(value): elif isinstance(value, Sequence): values = value else: - raise ValueError('Unknown outline %s ' % value) + raise ValueError("Unknown outline %s " % value) else: - raise ValueError('Unknown outline %s ' % value) + raise ValueError("Unknown outline %s " % value) # We iteratively split by the first left hand space found and try to validate if that part # is a valid or or (which can come in any order) @@ -293,7 +303,7 @@ def outline(value): for idx, part in enumerate(values): if idx > 2: # Outline can have a maximum of 3 parts - raise ValueError('Outline property shorthand contains too many parts!') + raise ValueError("Outline property shorthand contains too many parts!") outline_dict = _parse_outline_property_part(part, outline_dict) @@ -306,14 +316,16 @@ def outline(value): def _parse_border_property_part(value, border_dict, direction=None): """Parse border shorthand property part for known properties.""" from .constants import ( # noqa - BORDER_COLOR_CHOICES, BORDER_STYLE_CHOICES, BORDER_WIDTH_CHOICES + BORDER_COLOR_CHOICES, + BORDER_STYLE_CHOICES, + BORDER_WIDTH_CHOICES, ) - direction = '' if direction is None else direction + '_' + direction = "" if direction is None else direction + "_" property_validators = { - 'border_{direction}width'.format(direction=direction): BORDER_WIDTH_CHOICES, - 'border_{direction}style'.format(direction=direction): BORDER_STYLE_CHOICES, - 'border_{direction}color'.format(direction=direction): BORDER_COLOR_CHOICES, + f"border_{direction}width": BORDER_WIDTH_CHOICES, + f"border_{direction}style": BORDER_STYLE_CHOICES, + f"border_{direction}color": BORDER_COLOR_CHOICES, } for property_name, choices in property_validators.items(): @@ -323,12 +335,12 @@ def _parse_border_property_part(value, border_dict, direction=None): continue if property_name in border_dict: - raise ValueError('Invalid duplicated property!') + raise ValueError("Invalid duplicated property!") border_dict[property_name] = value return border_dict - raise ValueError('Border value "{value}" not valid!'.format(value=value)) + raise ValueError(f'Border value "{value}" not valid!') def border(value, direction=None): @@ -346,9 +358,9 @@ def border(value, direction=None): elif isinstance(value, Sequence): values = value else: - raise ValueError('Unknown border %s ' % value) + raise ValueError("Unknown border %s " % value) else: - raise ValueError('Unknown border %s ' % value) + raise ValueError("Unknown border %s " % value) # We iteratively split by the first left hand space found and try to validate if that part # is a valid or or (which can come in any order) @@ -359,31 +371,33 @@ def border(value, direction=None): for idx, part in enumerate(values): if idx > 2: # Border can have a maximum of 3 parts - raise ValueError('Border property shorthand contains too many parts!') + raise ValueError("Border property shorthand contains too many parts!") - border_dict = _parse_border_property_part(part, border_dict, direction=direction) + border_dict = _parse_border_property_part( + part, border_dict, direction=direction + ) return border_dict def border_right(value): """Parse border string into a dictionary of outline properties.""" - return border(value, direction='right') + return border(value, direction="right") def border_left(value): """Parse border string into a dictionary of outline properties.""" - return border(value, direction='left') + return border(value, direction="left") def border_bottom(value): """Parse border string into a dictionary of outline properties.""" - return border(value, direction='bottom') + return border(value, direction="bottom") def border_top(value): """Parse border string into a dictionary of outline properties.""" - return border(value, direction='top') + return border(value, direction="top") ############################################################################## @@ -403,9 +417,9 @@ def uri(value): if isinstance(value, str): value = value.strip() else: - raise ValueError('Value {value} must be a string') + raise ValueError("Value {value} must be a string") - if value.startswith('url(') and value.endswith(')'): + if value.startswith("url(") and value.endswith(")"): # Remove the 'url(' and ')' value = value[4:-1].strip() @@ -420,7 +434,7 @@ def uri(value): else: return Uri(value) - raise ValueError('Invalid url %s' % value) + raise ValueError("Invalid url %s" % value) ############################################################################## @@ -431,7 +445,7 @@ def cursor(values): from .constants import CURSOR_OPTIONS if isinstance(values, str): - values = [val.strip() for val in values.split(',')] + values = [val.strip() for val in values.split(",")] validated_values = [] has_cursor_option = False @@ -443,20 +457,22 @@ def cursor(values): option_count += 1 if option_count > 1: - raise ValueError('There can only be one cursor option in {values}!'.format(values=values)) + raise ValueError(f"There can only be one cursor option in {values}!") continue else: if has_cursor_option: - raise ValueError('Values {values} are in incorrect order. ' - 'Cursor option must come last!'.format(values=values)) + raise ValueError( + "Values {values} are in incorrect order. " + "Cursor option must come last!".format(values=values) + ) try: value = uri(value) validated_values.append(value) continue except ValueError: - raise ValueError('Value {value} is not a valid url value'.format(value=value)) + raise ValueError(f"Value {value} is not a valid url value") - raise ValueError('Value {value} is not a valid cursor value'.format(value=value)) + raise ValueError(f"Value {value} is not a valid cursor value") return Cursor(validated_values) diff --git a/src/colosseum/shapes.py b/src/colosseum/shapes.py index 0172ebf1d..7585b60c2 100644 --- a/src/colosseum/shapes.py +++ b/src/colosseum/shapes.py @@ -8,14 +8,16 @@ def __init__(self, top, right, left, bottom): self._bottom = bottom def __eq__(self, other): - return (other.__class__ == self.__class__ - and other._top == self._top - and other._right == self._right - and other._left == self._left - and other._bottom == self._bottom) + return ( + other.__class__ == self.__class__ + and other._top == self._top + and other._right == self._right + and other._left == self._left + and other._bottom == self._bottom + ) def __repr__(self): - return 'rect({top}, {right}, {left}, {bottom})'.format( + return "rect({top}, {right}, {left}, {bottom})".format( top=self._top, right=self._right, left=self._left, bottom=self._bottom ) diff --git a/src/colosseum/units.py b/src/colosseum/units.py index a1c0a1cee..b9795cf30 100644 --- a/src/colosseum/units.py +++ b/src/colosseum/units.py @@ -1,9 +1,24 @@ import math __all__ = [ - 'ch', 'cm', 'em', 'ex', 'inch', 'mm', 'pc', 'percent', - 'pt', 'px', 'vh', 'vmax', 'vmin', 'vw', 'deg', 'rad', - 'grad', 'turn', + "ch", + "cm", + "em", + "ex", + "inch", + "mm", + "pc", + "percent", + "pt", + "px", + "vh", + "vmax", + "vmin", + "vw", + "deg", + "rad", + "grad", + "turn", ] LU_PER_PIXEL = 64 @@ -20,7 +35,7 @@ def __init__(self, suffix, val=None): def __repr__(self): int_value = int(self.val) value = int_value if self.val == int_value else self.val - return '{}{}'.format(value, self.suffix) + return f"{value}{self.suffix}" def __str__(self): return repr(self) @@ -69,7 +84,7 @@ def __eq__(self, other): class PixelUnit(Unit): def __init__(self, val=None): - super().__init__('px', val) + super().__init__("px", val) def dup(self, val): return PixelUnit(val) @@ -84,7 +99,9 @@ def __eq__(self, other): class FontUnit(Unit): def lu(self, display=None, font=None, size=None): - return round(LU_PER_PIXEL * self.val * (getattr(font, self.suffix) / 72) * display.dpi) + return round( + LU_PER_PIXEL * self.val * (getattr(font, self.suffix) / 72) * display.dpi + ) def dup(self, val): return FontUnit(self.suffix, val) @@ -131,7 +148,7 @@ def __eq__(self, other): class Percent(Unit): def __init__(self, val=None): - super().__init__('%', val) + super().__init__("%", val) def lu(self, display=None, font=None, size=None): return round(LU_PER_PIXEL * self.val / 100.0 * size) @@ -150,24 +167,24 @@ def __lt__(self, other): px = PixelUnit() -em = FontUnit('em') -ex = FontUnit('ex') -ch = FontUnit('ch') +em = FontUnit("em") +ex = FontUnit("ex") +ch = FontUnit("ch") -pt = AbsoluteUnit('pt', 1) -pc = AbsoluteUnit('pc', 12) -inch = AbsoluteUnit('in', 72) -cm = AbsoluteUnit('cm', 28.3465) -mm = AbsoluteUnit('mm', 2.83465) +pt = AbsoluteUnit("pt", 1) +pc = AbsoluteUnit("pc", 12) +inch = AbsoluteUnit("in", 72) +cm = AbsoluteUnit("cm", 28.3465) +mm = AbsoluteUnit("mm", 2.83465) -vh = ViewportUnit('vh', lambda d: d.content_height) -vmax = ViewportUnit('vmax', lambda d: max(d.content_width, d.content_height)) -vmin = ViewportUnit('vmin', lambda d: min(d.content_width, d.content_height)) -vw = ViewportUnit('vw', lambda d: d.content_width) +vh = ViewportUnit("vh", lambda d: d.content_height) +vmax = ViewportUnit("vmax", lambda d: max(d.content_width, d.content_height)) +vmin = ViewportUnit("vmin", lambda d: min(d.content_width, d.content_height)) +vw = ViewportUnit("vw", lambda d: d.content_width) percent = Percent() -deg = AngleUnit('deg', 1) -grad = AngleUnit('grad', 0.9) -rad = AngleUnit('rad', 180/math.pi) -turn = AngleUnit('turn', 360) +deg = AngleUnit("deg", 1) +grad = AngleUnit("grad", 0.9) +rad = AngleUnit("rad", 180 / math.pi) +turn = AngleUnit("turn", 360) diff --git a/src/colosseum/validators.py b/src/colosseum/validators.py index bf3db50b1..9bef64ff0 100644 --- a/src/colosseum/validators.py +++ b/src/colosseum/validators.py @@ -13,17 +13,20 @@ def _numeric_validator(num_value, numeric_type, min_value, max_value): num_value = numeric_type(num_value) except (ValueError, TypeError): error_msg = "Cannot coerce {num_value} to {numeric_type}".format( - num_value=num_value, numeric_type=numeric_type.__name__) + num_value=num_value, numeric_type=numeric_type.__name__ + ) raise ValidationError(error_msg) if min_value is not None and num_value < min_value: - error_msg = 'Value {num_value} below minimum value {min_value}'.format( - num_value=num_value, min_value=min_value) + error_msg = "Value {num_value} below minimum value {min_value}".format( + num_value=num_value, min_value=min_value + ) raise ValidationError(error_msg) if max_value is not None and num_value > max_value: - error_msg = 'Value {num_value} above maximum value {max_value}'.format( - num_value=num_value, max_value=max_value) + error_msg = "Value {num_value} above maximum value {max_value}".format( + num_value=num_value, max_value=max_value + ) raise ValidationError(error_msg) return num_value @@ -37,7 +40,12 @@ def is_number(value=None, min_value=None, max_value=None): """ def validator(num_value): - return _numeric_validator(num_value=num_value, numeric_type=float, min_value=min_value, max_value=max_value) + return _numeric_validator( + num_value=num_value, + numeric_type=float, + min_value=min_value, + max_value=max_value, + ) if min_value is None and max_value is None: return validator(value) @@ -45,7 +53,7 @@ def validator(num_value): return validator -is_number.description = '' +is_number.description = "" def is_integer(value=None, min_value=None, max_value=None): @@ -56,7 +64,12 @@ def is_integer(value=None, min_value=None, max_value=None): """ def validator(num_value): - return _numeric_validator(num_value=num_value, numeric_type=int, min_value=min_value, max_value=max_value) + return _numeric_validator( + num_value=num_value, + numeric_type=int, + min_value=min_value, + max_value=max_value, + ) if min_value is None and max_value is None: return validator(value) @@ -64,7 +77,7 @@ def validator(num_value): return validator -is_integer.description = '' +is_integer.description = "" def is_length(value): @@ -76,7 +89,7 @@ def is_length(value): return value -is_length.description = '' +is_length.description = "" def is_percentage(value): @@ -86,17 +99,17 @@ def is_percentage(value): raise ValidationError(str(error)) if not isinstance(value, units.Percent): - error_msg = 'Value {value} is not a Percent unit'.format(value=value) + error_msg = f"Value {value} is not a Percent unit" raise ValidationError(error_msg) if value < units.Percent(0): - error_msg = 'Value {value} can not negative'.format(value=value) + error_msg = f"Value {value} can not negative" raise ValidationError(error_msg) return value -is_percentage.description = '' +is_percentage.description = "" def is_color(value): @@ -108,7 +121,7 @@ def is_color(value): return value -is_color.description = '' +is_color.description = "" def is_border_spacing(value): @@ -125,7 +138,7 @@ def is_border_spacing(value): return value -is_border_spacing.description = ' ?' +is_border_spacing.description = " ?" def is_rect(value): @@ -133,12 +146,12 @@ def is_rect(value): try: value = parser.rect(value) except ValueError: - raise ValidationError('Value {value} is not a rect shape'.format(value=value)) + raise ValidationError(f"Value {value} is not a rect shape") return value -is_rect.description = '' +is_rect.description = "" def is_quote(value): @@ -146,21 +159,24 @@ def is_quote(value): try: value = parser.quotes(value) except ValueError: - raise ValidationError('Value {value} is not a valid quote'.format(value=value)) + raise ValidationError(f"Value {value} is not a valid quote") return value -is_quote.description = '[ ]+' +is_quote.description = "[ ]+" -URI_RE = re.compile(r"""( +URI_RE = re.compile( + r"""( (?:url\(\s?'[A-Za-z0-9\./\:\?]*'\s?\)) # Single quotes and optional spaces | (?:url\(\s?"[A-Za-z0-9\./\:\?]*"\s?\)) # Double quotes and optional spaces | (?:url\(\s?[A-Za-z0-9\./\:\?]*\s?\)) # No quotes and optional spaces -)""", re.VERBOSE) +)""", + re.VERBOSE, +) def is_uri(value): @@ -173,7 +189,7 @@ def is_uri(value): return value -is_uri.description = '' +is_uri.description = "" def is_cursor(value): @@ -190,6 +206,8 @@ def is_cursor(value): return value -is_cursor.description = ('[ [ ,]* [ auto | crosshair | default | pointer | move | e-resize ' - '| ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize ' - '| w-resize | text | wait | help | progress ] ]') +is_cursor.description = ( + "[ [ ,]* [ auto | crosshair | default | pointer | move | e-resize " + "| ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize " + "| w-resize | text | wait | help | progress ] ]" +) diff --git a/src/colosseum/wrappers.py b/src/colosseum/wrappers.py index 05809ff1c..59075d60e 100644 --- a/src/colosseum/wrappers.py +++ b/src/colosseum/wrappers.py @@ -16,18 +16,20 @@ def __init__(self, horizontal, vertical=None): def __repr__(self): if self._vertical is None: - string = 'BorderSpacing({horizontal})'.format(horizontal=repr(self._horizontal)) + string = f"BorderSpacing({repr(self._horizontal)})" else: - string = 'BorderSpacing({horizontal}, {vertical})'.format(horizontal=repr(self._horizontal), - vertical=repr(self._vertical)) + string = "BorderSpacing({horizontal}, {vertical})".format( + horizontal=repr(self._horizontal), vertical=repr(self._vertical) + ) return string def __str__(self): if self._vertical is not None: - string = '{horizontal} {vertical}'.format(horizontal=self._horizontal, - vertical=self._vertical) + string = "{horizontal} {vertical}".format( + horizontal=self._horizontal, vertical=self._vertical + ) else: - string = '{horizontal}'.format(horizontal=self._horizontal) + string = f"{self._horizontal}" return string @@ -51,11 +53,12 @@ class Quotes: Quotes([('<', '>'), ('{', '}')]) Quotes([('<', '>'), ('{', '}'), ('[', ']')]) """ + def __init__(self, values): self._quotes = values def __repr__(self): - return 'Quotes({values})'.format(values=self._quotes) + return f"Quotes({self._quotes})" def __str__(self): quotes = [] @@ -63,7 +66,7 @@ def __str__(self): quotes.append(repr(start)) quotes.append(repr(end)) - return ' '.join(val for val in quotes) + return " ".join(val for val in quotes) def __len__(self): return len(self._quotes) @@ -76,14 +79,14 @@ def opening(self, level): try: return self._quotes[level][0] except IndexError: - raise IndexError('Quotes level out of range') + raise IndexError("Quotes level out of range") def closing(self, level): """Return the opening quote for the given level.""" try: return self._quotes[level][-1] except IndexError: - raise IndexError('Quotes level out of range') + raise IndexError("Quotes level out of range") class Shorthand: @@ -93,11 +96,14 @@ def __init__(self, **kwargs): if self.VALID_KEYS: for key in kwargs: if key not in self.VALID_KEYS: - raise ValueError('Invalid key "{key}". Valid keys are {keys}'.format(key=key, - keys=self.VALID_KEYS)) + raise ValueError( + 'Invalid key "{key}". Valid keys are {keys}'.format( + key=key, keys=self.VALID_KEYS + ) + ) setattr(self, key, kwargs[key]) else: - raise ValueError('Shorthand must define `VALID_KEYS`') + raise ValueError("Shorthand must define `VALID_KEYS`") def __eq__(self, other): return other.__class__ == self.__class__ and self.to_dict() == other.to_dict() @@ -106,10 +112,12 @@ def __repr__(self): items = [] properties = self.to_dict() for key, value in properties.items(): - items.append("{key}={value}".format(key=key, value=repr(value))) + items.append(f"{key}={repr(value)}") class_name = self.__class__.__name__ - string = "{class_name}({items})".format(class_name=class_name, items=', '.join(items)) + string = "{class_name}({items})".format( + class_name=class_name, items=", ".join(items) + ) return string.format(**properties) def __str__(self): @@ -117,7 +125,7 @@ def __str__(self): for key, value in self.to_dict().items(): parts.append(str(value)) - return ' '.join(parts) + return " ".join(parts) def to_dict(self): """Return dictionary of the defined properties.""" @@ -130,27 +138,27 @@ def to_dict(self): class Outline(Shorthand): - VALID_KEYS = ['outline_color', 'outline_style', 'outline_width'] + VALID_KEYS = ["outline_color", "outline_style", "outline_width"] class BorderTop(Shorthand): - VALID_KEYS = ['border_top_width', 'border_top_style', 'border_top_color'] + VALID_KEYS = ["border_top_width", "border_top_style", "border_top_color"] class BorderRight(Shorthand): - VALID_KEYS = ['border_right_width', 'border_right_style', 'border_right_color'] + VALID_KEYS = ["border_right_width", "border_right_style", "border_right_color"] class BorderBottom(Shorthand): - VALID_KEYS = ['border_bottom_width', 'border_bottom_style', 'border_bottom_color'] + VALID_KEYS = ["border_bottom_width", "border_bottom_style", "border_bottom_color"] class BorderLeft(Shorthand): - VALID_KEYS = ['border_left_width', 'border_left_style', 'border_left_color'] + VALID_KEYS = ["border_left_width", "border_left_style", "border_left_color"] class Border(Shorthand): - VALID_KEYS = ['border_width', 'border_style', 'border_color'] + VALID_KEYS = ["border_width", "border_style", "border_color"] class Uri: @@ -177,7 +185,7 @@ def __init__(self, iterable=()): super().__init__(iterable) def _get_error_message(self, err): - return str(err).replace('list', self.__class__.__name__, 1) + return str(err).replace("list", self.__class__.__name__, 1) # def __eq__(self, other): # return other.__class__ == self.__class__ and self == other @@ -190,7 +198,7 @@ def __getitem__(self, index): raise err.__class__(error_msg) def __setitem__(self, index, value): - raise TypeError("{} values cannot be changed!".format(self.__class__.__name__)) + raise TypeError(f"{self.__class__.__name__} values cannot be changed!") def __hash__(self): return hash((self.__class__.__name__, tuple(self))) @@ -198,39 +206,39 @@ def __hash__(self): def __repr__(self): class_name = self.__class__.__name__ if len(self) != 0: - text = '{class_name}([{data}])'.format(data=repr(list(self))[1:-1], class_name=class_name) + text = f"{class_name}([{repr(list(self))[1:-1]}])" else: - text = '{class_name}()'.format(class_name=class_name) + text = f"{class_name}()" return text def __str__(self): - return ', '.join(str(v) for v in self) + return ", ".join(str(v) for v in self) def copy(self): return self.__class__(self) # Disable mutating methods def append(self, object): - raise TypeError("{} values cannot be changed!".format(self.__class__.__name__)) + raise TypeError(f"{self.__class__.__name__} values cannot be changed!") def extend(self, iterable): - raise TypeError("{} values cannot be changed!".format(self.__class__.__name__)) + raise TypeError(f"{self.__class__.__name__} values cannot be changed!") def insert(self, index, object): - raise TypeError("{} values cannot be changed!".format(self.__class__.__name__)) + raise TypeError(f"{self.__class__.__name__} values cannot be changed!") def pop(self, index=None): - raise TypeError("{} values cannot be changed!".format(self.__class__.__name__)) + raise TypeError(f"{self.__class__.__name__} values cannot be changed!") def remove(self, value): - raise TypeError("{} values cannot be changed!".format(self.__class__.__name__)) + raise TypeError(f"{self.__class__.__name__} values cannot be changed!") def reverse(self): - raise TypeError("{} values cannot be changed!".format(self.__class__.__name__)) + raise TypeError(f"{self.__class__.__name__} values cannot be changed!") def sort(self, cmp=None, key=None, reverse=False): - raise TypeError("{} values cannot be changed!".format(self.__class__.__name__)) + raise TypeError(f"{self.__class__.__name__} values cannot be changed!") class Cursor(ImmutableList): diff --git a/tests/engine/block_layout/test_block_non_replaced_normal_flow.py b/tests/engine/block_layout/test_block_non_replaced_normal_flow.py index f849f0a4f..47ac9af0f 100644 --- a/tests/engine/block_layout/test_block_non_replaced_normal_flow.py +++ b/tests/engine/block_layout/test_block_non_replaced_normal_flow.py @@ -1,30 +1,28 @@ from colosseum.constants import AUTO, BLOCK, RTL, SOLID from colosseum.declaration import CSS -from ...utils import LayoutTestCase, TestNode +from ...utils import ExampleNode, LayoutTestCase class WidthTests(LayoutTestCase): def test_no_horizontal_properties(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, height=10) - ) + node = ExampleNode(name="div", style=CSS(display=BLOCK, height=10)) self.layout_node(node) self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (1024, 10)}, - 'padding_box': {'position': (0, 0), 'size': (1024, 10)}, - 'content': {'position': (0, 0), 'size': (1024, 10)}, - } + "tag": "div", + "border_box": {"position": (0, 0), "size": (1024, 10)}, + "padding_box": {"position": (0, 0), "size": (1024, 10)}, + "content": {"position": (0, 0), "size": (1024, 10)}, + }, ) def test_left_margin(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, height=10, margin_left=AUTO) + node = ExampleNode( + name="div", style=CSS(display=BLOCK, height=10, margin_left=AUTO) ) self.layout_node(node) @@ -32,16 +30,16 @@ def test_left_margin(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (1024, 10)}, - 'padding_box': {'position': (0, 0), 'size': (1024, 10)}, - 'content': {'position': (0, 0), 'size': (1024, 10)}, - } + "tag": "div", + "border_box": {"position": (0, 0), "size": (1024, 10)}, + "padding_box": {"position": (0, 0), "size": (1024, 10)}, + "content": {"position": (0, 0), "size": (1024, 10)}, + }, ) def test_right_margin(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, height=10, margin_right=AUTO) + node = ExampleNode( + name="div", style=CSS(display=BLOCK, height=10, margin_right=AUTO) ) self.layout_node(node) @@ -49,16 +47,17 @@ def test_right_margin(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (1024, 10)}, - 'padding_box': {'position': (0, 0), 'size': (1024, 10)}, - 'content': {'position': (0, 0), 'size': (1024, 10)}, - } + "tag": "div", + "border_box": {"position": (0, 0), "size": (1024, 10)}, + "padding_box": {"position": (0, 0), "size": (1024, 10)}, + "content": {"position": (0, 0), "size": (1024, 10)}, + }, ) def test_left_and_right_margin(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, height=10, margin_left=AUTO, margin_right=AUTO) + node = ExampleNode( + name="div", + style=CSS(display=BLOCK, height=10, margin_left=AUTO, margin_right=AUTO), ) self.layout_node(node) @@ -66,33 +65,31 @@ def test_left_and_right_margin(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (1024, 10)}, - 'padding_box': {'position': (0, 0), 'size': (1024, 10)}, - 'content': {'position': (0, 0), 'size': (1024, 10)}, - } + "tag": "div", + "border_box": {"position": (0, 0), "size": (1024, 10)}, + "padding_box": {"position": (0, 0), "size": (1024, 10)}, + "content": {"position": (0, 0), "size": (1024, 10)}, + }, ) def test_width(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, width=50, height=10) - ) + node = ExampleNode(name="div", style=CSS(display=BLOCK, width=50, height=10)) self.layout_node(node) self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (50, 10)}, - 'padding_box': {'position': (0, 0), 'size': (50, 10)}, - 'content': {'position': (0, 0), 'size': (50, 10)}, - } + "tag": "div", + "border_box": {"position": (0, 0), "size": (50, 10)}, + "padding_box": {"position": (0, 0), "size": (50, 10)}, + "content": {"position": (0, 0), "size": (50, 10)}, + }, ) def test_width_auto_left_margin(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, width=50, height=10, margin_left=AUTO) + node = ExampleNode( + name="div", style=CSS(display=BLOCK, width=50, height=10, margin_left=AUTO) ) self.layout_node(node) @@ -100,16 +97,16 @@ def test_width_auto_left_margin(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (974, 0), 'size': (50, 10)}, - 'padding_box': {'position': (974, 0), 'size': (50, 10)}, - 'content': {'position': (974, 0), 'size': (50, 10)}, - } + "tag": "div", + "border_box": {"position": (974, 0), "size": (50, 10)}, + "padding_box": {"position": (974, 0), "size": (50, 10)}, + "content": {"position": (974, 0), "size": (50, 10)}, + }, ) def test_width_auto_right_margin(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, width=50, height=10, margin_right=AUTO) + node = ExampleNode( + name="div", style=CSS(display=BLOCK, width=50, height=10, margin_right=AUTO) ) self.layout_node(node) @@ -117,16 +114,19 @@ def test_width_auto_right_margin(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (50, 10)}, - 'padding_box': {'position': (0, 0), 'size': (50, 10)}, - 'content': {'position': (0, 0), 'size': (50, 10)}, - } + "tag": "div", + "border_box": {"position": (0, 0), "size": (50, 10)}, + "padding_box": {"position": (0, 0), "size": (50, 10)}, + "content": {"position": (0, 0), "size": (50, 10)}, + }, ) def test_width_auto_left_and_right_margin(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, width=50, height=10, margin_left=AUTO, margin_right=AUTO) + node = ExampleNode( + name="div", + style=CSS( + display=BLOCK, width=50, height=10, margin_left=AUTO, margin_right=AUTO + ), ) self.layout_node(node) @@ -134,16 +134,19 @@ def test_width_auto_left_and_right_margin(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (487, 0), 'size': (50, 10)}, - 'padding_box': {'position': (487, 0), 'size': (50, 10)}, - 'content': {'position': (487, 0), 'size': (50, 10)}, - } + "tag": "div", + "border_box": {"position": (487, 0), "size": (50, 10)}, + "padding_box": {"position": (487, 0), "size": (50, 10)}, + "content": {"position": (487, 0), "size": (50, 10)}, + }, ) def test_width_fixed_left_and_right_margin(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, width=50, height=10, margin_left=30, margin_right=40) + node = ExampleNode( + name="div", + style=CSS( + display=BLOCK, width=50, height=10, margin_left=30, margin_right=40 + ), ) self.layout_node(node) @@ -151,19 +154,24 @@ def test_width_fixed_left_and_right_margin(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (30, 0), 'size': (50, 10)}, - 'padding_box': {'position': (30, 0), 'size': (50, 10)}, - 'content': {'position': (30, 0), 'size': (50, 10)}, - } + "tag": "div", + "border_box": {"position": (30, 0), "size": (50, 10)}, + "padding_box": {"position": (30, 0), "size": (50, 10)}, + "content": {"position": (30, 0), "size": (50, 10)}, + }, ) def test_width_fixed_left_and_right_margin_rtl(self): - node = TestNode( - name='div', style=CSS( - display=BLOCK, width=50, height=10, - margin_left=30, margin_right=40, direction=RTL - ) + node = ExampleNode( + name="div", + style=CSS( + display=BLOCK, + width=50, + height=10, + margin_left=30, + margin_right=40, + direction=RTL, + ), ) self.layout_node(node) @@ -171,20 +179,25 @@ def test_width_fixed_left_and_right_margin_rtl(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (934, 0), 'size': (50, 10)}, - 'padding_box': {'position': (934, 0), 'size': (50, 10)}, - 'content': {'position': (934, 0), 'size': (50, 10)}, - } + "tag": "div", + "border_box": {"position": (934, 0), "size": (50, 10)}, + "padding_box": {"position": (934, 0), "size": (50, 10)}, + "content": {"position": (934, 0), "size": (50, 10)}, + }, ) def test_width_exceeds_parent(self): - node = TestNode( - name='div', style=CSS( - display=BLOCK, width=500, height=20, - padding=50, border_width=60, border_style=SOLID, - margin=70 - ) + node = ExampleNode( + name="div", + style=CSS( + display=BLOCK, + width=500, + height=20, + padding=50, + border_width=60, + border_style=SOLID, + margin=70, + ), ) self.layout_node(node) @@ -192,20 +205,26 @@ def test_width_exceeds_parent(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (70, 70), 'size': (720, 240)}, - 'padding_box': {'position': (130, 130), 'size': (600, 120)}, - 'content': {'position': (180, 180), 'size': (500, 20)}, - } + "tag": "div", + "border_box": {"position": (70, 70), "size": (720, 240)}, + "padding_box": {"position": (130, 130), "size": (600, 120)}, + "content": {"position": (180, 180), "size": (500, 20)}, + }, ) def test_width_exceeds_parent_auto_left_and_right_margins(self): - node = TestNode( - name='div', style=CSS( - display=BLOCK, width=500, height=20, - padding=50, border_width=60, border_style=SOLID, - margin_left=AUTO, margin_right=AUTO - ) + node = ExampleNode( + name="div", + style=CSS( + display=BLOCK, + width=500, + height=20, + padding=50, + border_width=60, + border_style=SOLID, + margin_left=AUTO, + margin_right=AUTO, + ), ) self.layout_node(node) @@ -213,52 +232,48 @@ def test_width_exceeds_parent_auto_left_and_right_margins(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (152, 0), 'size': (720, 240)}, - 'padding_box': {'position': (212, 60), 'size': (600, 120)}, - 'content': {'position': (262, 110), 'size': (500, 20)}, - } + "tag": "div", + "border_box": {"position": (152, 0), "size": (720, 240)}, + "padding_box": {"position": (212, 60), "size": (600, 120)}, + "content": {"position": (262, 110), "size": (500, 20)}, + }, ) class HeightTests(LayoutTestCase): def test_no_vertical_properties(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, width=10) - ) + node = ExampleNode(name="div", style=CSS(display=BLOCK, width=10)) self.layout_node(node) self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (10, 0)}, - 'padding_box': {'position': (0, 0), 'size': (10, 0)}, - 'content': {'position': (0, 0), 'size': (10, 0)}, - } + "tag": "div", + "border_box": {"position": (0, 0), "size": (10, 0)}, + "padding_box": {"position": (0, 0), "size": (10, 0)}, + "content": {"position": (0, 0), "size": (10, 0)}, + }, ) def test_height(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, width=10, height=50) - ) + node = ExampleNode(name="div", style=CSS(display=BLOCK, width=10, height=50)) self.layout_node(node) self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (10, 50)}, - 'padding_box': {'position': (0, 0), 'size': (10, 50)}, - 'content': {'position': (0, 0), 'size': (10, 50)}, - } + "tag": "div", + "border_box": {"position": (0, 0), "size": (10, 50)}, + "padding_box": {"position": (0, 0), "size": (10, 50)}, + "content": {"position": (0, 0), "size": (10, 50)}, + }, ) def test_height_auto_top_margin(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, width=10, height=50, margin_top=AUTO) + node = ExampleNode( + name="div", style=CSS(display=BLOCK, width=10, height=50, margin_top=AUTO) ) self.layout_node(node) @@ -266,16 +281,17 @@ def test_height_auto_top_margin(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (10, 50)}, - 'padding_box': {'position': (0, 0), 'size': (10, 50)}, - 'content': {'position': (0, 0), 'size': (10, 50)}, - } + "tag": "div", + "border_box": {"position": (0, 0), "size": (10, 50)}, + "padding_box": {"position": (0, 0), "size": (10, 50)}, + "content": {"position": (0, 0), "size": (10, 50)}, + }, ) def test_height_auto_bottom_margin(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, width=10, height=50, margin_bottom=AUTO) + node = ExampleNode( + name="div", + style=CSS(display=BLOCK, width=10, height=50, margin_bottom=AUTO), ) self.layout_node(node) @@ -283,9 +299,9 @@ def test_height_auto_bottom_margin(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (10, 50)}, - 'padding_box': {'position': (0, 0), 'size': (10, 50)}, - 'content': {'position': (0, 0), 'size': (10, 50)}, - } + "tag": "div", + "border_box": {"position": (0, 0), "size": (10, 50)}, + "padding_box": {"position": (0, 0), "size": (10, 50)}, + "content": {"position": (0, 0), "size": (10, 50)}, + }, ) diff --git a/tests/engine/block_layout/test_child_layout.py b/tests/engine/block_layout/test_child_layout.py index a9f9719dd..3531667c6 100644 --- a/tests/engine/block_layout/test_child_layout.py +++ b/tests/engine/block_layout/test_child_layout.py @@ -2,28 +2,26 @@ from colosseum.declaration import CSS from colosseum.engine import layout -from ...utils import LayoutTestCase, TestNode +from ...utils import ExampleNode, LayoutTestCase class ChildLayoutTests(LayoutTestCase): def test_simple_vertical(self): - child1 = TestNode( - name='div', + child1 = ExampleNode( + name="div", style=CSS(display=BLOCK, height=10), ) - child2 = TestNode( - name='div', + child2 = ExampleNode( + name="div", style=CSS(display=BLOCK, height=10), ) - child3 = TestNode( - name='div', + child3 = ExampleNode( + name="div", style=CSS(display=BLOCK, height=10), ) - root = TestNode( - name='div', - style=CSS(display=BLOCK), - children=[child1, child2, child3] + root = ExampleNode( + name="div", style=CSS(display=BLOCK), children=[child1, child2, child3] ) layout(self.display, root) @@ -31,51 +29,49 @@ def test_simple_vertical(self): self.assertLayout( root, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (1024, 768)}, - 'padding_box': {'position': (0, 0), 'size': (1024, 768)}, - 'content': {'position': (0, 0), 'size': (1024, 768)}, - 'children': [ + "tag": "div", + "border_box": {"position": (0, 0), "size": (1024, 768)}, + "padding_box": {"position": (0, 0), "size": (1024, 768)}, + "content": {"position": (0, 0), "size": (1024, 768)}, + "children": [ { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (1024, 10)}, - 'padding_box': {'position': (0, 0), 'size': (1024, 10)}, - 'content': {'position': (0, 0), 'size': (1024, 10)}, + "tag": "div", + "border_box": {"position": (0, 0), "size": (1024, 10)}, + "padding_box": {"position": (0, 0), "size": (1024, 10)}, + "content": {"position": (0, 0), "size": (1024, 10)}, }, { - 'tag': 'div', - 'border_box': {'position': (0, 10), 'size': (1024, 10)}, - 'padding_box': {'position': (0, 10), 'size': (1024, 10)}, - 'content': {'position': (0, 10), 'size': (1024, 10)}, + "tag": "div", + "border_box": {"position": (0, 10), "size": (1024, 10)}, + "padding_box": {"position": (0, 10), "size": (1024, 10)}, + "content": {"position": (0, 10), "size": (1024, 10)}, }, { - 'tag': 'div', - 'border_box': {'position': (0, 20), 'size': (1024, 10)}, - 'padding_box': {'position': (0, 20), 'size': (1024, 10)}, - 'content': {'position': (0, 20), 'size': (1024, 10)}, - } + "tag": "div", + "border_box": {"position": (0, 20), "size": (1024, 10)}, + "padding_box": {"position": (0, 20), "size": (1024, 10)}, + "content": {"position": (0, 20), "size": (1024, 10)}, + }, ], - } + }, ) def test_collapsed_margins(self): - child1 = TestNode( - name='div', + child1 = ExampleNode( + name="div", style=CSS(display=BLOCK, height=10, margin=10), ) - child2 = TestNode( - name='div', + child2 = ExampleNode( + name="div", style=CSS(display=BLOCK, height=10, margin=30), ) - child3 = TestNode( - name='div', + child3 = ExampleNode( + name="div", style=CSS(display=BLOCK, height=10, margin=20), ) - root = TestNode( - name='div', - style=CSS(display=BLOCK), - children=[child1, child2, child3] + root = ExampleNode( + name="div", style=CSS(display=BLOCK), children=[child1, child2, child3] ) layout(self.display, root) @@ -83,141 +79,151 @@ def test_collapsed_margins(self): self.assertLayout( root, { - 'tag': 'div', - 'border_box': {'position': (0, 10), 'size': (1024, 738)}, - 'padding_box': {'position': (0, 10), 'size': (1024, 738)}, - 'content': {'position': (0, 10), 'size': (1024, 738)}, - 'children': [ + "tag": "div", + "border_box": {"position": (0, 10), "size": (1024, 738)}, + "padding_box": {"position": (0, 10), "size": (1024, 738)}, + "content": {"position": (0, 10), "size": (1024, 738)}, + "children": [ { - 'tag': 'div', - 'border_box': {'position': (10, 10), 'size': (1004, 10)}, - 'padding_box': {'position': (10, 10), 'size': (1004, 10)}, - 'content': {'position': (10, 10), 'size': (1004, 10)}, + "tag": "div", + "border_box": {"position": (10, 10), "size": (1004, 10)}, + "padding_box": {"position": (10, 10), "size": (1004, 10)}, + "content": {"position": (10, 10), "size": (1004, 10)}, }, { - 'tag': 'div', - 'border_box': {'position': (30, 50), 'size': (964, 10)}, - 'padding_box': {'position': (30, 50), 'size': (964, 10)}, - 'content': {'position': (30, 50), 'size': (964, 10)}, + "tag": "div", + "border_box": {"position": (30, 50), "size": (964, 10)}, + "padding_box": {"position": (30, 50), "size": (964, 10)}, + "content": {"position": (30, 50), "size": (964, 10)}, }, { - 'tag': 'div', - 'border_box': {'position': (20, 90), 'size': (984, 10)}, - 'padding_box': {'position': (20, 90), 'size': (984, 10)}, - 'content': {'position': (20, 90), 'size': (984, 10)}, - } + "tag": "div", + "border_box": {"position": (20, 90), "size": (984, 10)}, + "padding_box": {"position": (20, 90), "size": (984, 10)}, + "content": {"position": (20, 90), "size": (984, 10)}, + }, ], - } + }, ) def test_collapse_outside_parent(self): - grandchild1 = TestNode( - name='div', + grandchild1 = ExampleNode( + name="div", style=CSS(display=BLOCK, height=10, margin=50), ) - grandchild2 = TestNode( - name='div', + grandchild2 = ExampleNode( + name="div", style=CSS(display=BLOCK, height=10, margin=40), ) - child = TestNode( - name='div', + child = ExampleNode( + name="div", style=CSS(display=BLOCK, margin=10), - children=[grandchild1, grandchild2] + children=[grandchild1, grandchild2], ) - root = TestNode( - name='div', - style=CSS(display=BLOCK), - children=[child] - ) + root = ExampleNode(name="div", style=CSS(display=BLOCK), children=[child]) layout(self.display, root) self.assertLayout( root, { - 'tag': 'div', - 'border_box': {'size': (1024, 678), 'position': (0, 50)}, - 'padding_box': {'size': (1024, 678), 'position': (0, 50)}, - 'content': {'size': (1024, 678), 'position': (0, 50)}, - 'children': [ + "tag": "div", + "border_box": {"size": (1024, 678), "position": (0, 50)}, + "padding_box": {"size": (1024, 678), "position": (0, 50)}, + "content": {"size": (1024, 678), "position": (0, 50)}, + "children": [ { - 'tag': 'div', - 'border_box': {'size': (1004, 70), 'position': (10, 50)}, - 'padding_box': {'size': (1004, 70), 'position': (10, 50)}, - 'content': {'size': (1004, 70), 'position': (10, 50)}, - 'children': [ + "tag": "div", + "border_box": {"size": (1004, 70), "position": (10, 50)}, + "padding_box": {"size": (1004, 70), "position": (10, 50)}, + "content": {"size": (1004, 70), "position": (10, 50)}, + "children": [ { - 'tag': 'div', - 'border_box': {'size': (904, 10), 'position': (60, 50)}, - 'padding_box': {'size': (904, 10), 'position': (60, 50)}, - 'content': {'size': (904, 10), 'position': (60, 50)}, + "tag": "div", + "border_box": {"size": (904, 10), "position": (60, 50)}, + "padding_box": { + "size": (904, 10), + "position": (60, 50), + }, + "content": {"size": (904, 10), "position": (60, 50)}, }, { - 'tag': 'div', - 'border_box': {'size': (924, 10), 'position': (50, 110)}, - 'padding_box': {'size': (924, 10), 'position': (50, 110)}, - 'content': {'size': (924, 10), 'position': (50, 110)}, - } + "tag": "div", + "border_box": { + "size": (924, 10), + "position": (50, 110), + }, + "padding_box": { + "size": (924, 10), + "position": (50, 110), + }, + "content": {"size": (924, 10), "position": (50, 110)}, + }, ], } ], - } + }, ) def test_overflow_outside_parent(self): - grandchild1 = TestNode( - name='div', + grandchild1 = ExampleNode( + name="div", style=CSS(display=BLOCK, height=10, margin=50), ) - grandchild2 = TestNode( - name='div', + grandchild2 = ExampleNode( + name="div", style=CSS(display=BLOCK, height=10, margin=40), ) - child = TestNode( - name='div', + child = ExampleNode( + name="div", style=CSS(display=BLOCK, height=10, margin=10), - children=[grandchild1, grandchild2] + children=[grandchild1, grandchild2], ) - root = TestNode( - name='div', - style=CSS(display=BLOCK), - children=[child] - ) + root = ExampleNode(name="div", style=CSS(display=BLOCK), children=[child]) layout(self.display, root) self.assertLayout( root, { - 'tag': 'div', - 'border_box': {'size': (1024, 708), 'position': (0, 50)}, - 'padding_box': {'size': (1024, 708), 'position': (0, 50)}, - 'content': {'size': (1024, 708), 'position': (0, 50)}, - 'children': [ + "tag": "div", + "border_box": {"size": (1024, 708), "position": (0, 50)}, + "padding_box": {"size": (1024, 708), "position": (0, 50)}, + "content": {"size": (1024, 708), "position": (0, 50)}, + "children": [ { - 'tag': 'div', - 'border_box': {'size': (1004, 10), 'position': (10, 50)}, - 'padding_box': {'size': (1004, 10), 'position': (10, 50)}, - 'content': {'size': (1004, 10), 'position': (10, 50)}, - 'children': [ + "tag": "div", + "border_box": {"size": (1004, 10), "position": (10, 50)}, + "padding_box": {"size": (1004, 10), "position": (10, 50)}, + "content": {"size": (1004, 10), "position": (10, 50)}, + "children": [ { - 'tag': 'div', - 'border_box': {'size': (904, 10), 'position': (60, 50)}, - 'padding_box': {'size': (904, 10), 'position': (60, 50)}, - 'content': {'size': (904, 10), 'position': (60, 50)}, + "tag": "div", + "border_box": {"size": (904, 10), "position": (60, 50)}, + "padding_box": { + "size": (904, 10), + "position": (60, 50), + }, + "content": {"size": (904, 10), "position": (60, 50)}, }, { - 'tag': 'div', - 'border_box': {'size': (924, 10), 'position': (50, 110)}, - 'padding_box': {'size': (924, 10), 'position': (50, 110)}, - 'content': {'size': (924, 10), 'position': (50, 110)}, - } + "tag": "div", + "border_box": { + "size": (924, 10), + "position": (50, 110), + }, + "padding_box": { + "size": (924, 10), + "position": (50, 110), + }, + "content": {"size": (924, 10), "position": (50, 110)}, + }, ], } ], - } + }, ) diff --git a/tests/engine/inline_layout/test_inline_non_replaced.py b/tests/engine/inline_layout/test_inline_non_replaced.py index f78ef081f..bd4ee71de 100644 --- a/tests/engine/inline_layout/test_inline_non_replaced.py +++ b/tests/engine/inline_layout/test_inline_non_replaced.py @@ -1,15 +1,12 @@ from colosseum.constants import AUTO, INLINE from colosseum.declaration import CSS -from ...utils import LayoutTestCase, TestNode +from ...utils import ExampleNode, LayoutTestCase class WidthTests(LayoutTestCase): def test_no_horizontal_properties(self): - node = TestNode( - name='span', - style=CSS(display=INLINE) - ) + node = ExampleNode(name="span", style=CSS(display=INLINE)) node.intrinsic.width = 50 node.intrinsic.height = 10 @@ -18,18 +15,15 @@ def test_no_horizontal_properties(self): self.assertLayout( node, { - 'tag': 'span', - 'border_box': {'position': (0, 0), 'size': (50, 10)}, - 'padding_box': {'position': (0, 0), 'size': (50, 10)}, - 'content': {'position': (0, 0), 'size': (50, 10)}, - } + "tag": "span", + "border_box": {"position": (0, 0), "size": (50, 10)}, + "padding_box": {"position": (0, 0), "size": (50, 10)}, + "content": {"position": (0, 0), "size": (50, 10)}, + }, ) def test_auto_left_margin(self): - node = TestNode( - name='span', - style=CSS(display=INLINE, margin_left=AUTO) - ) + node = ExampleNode(name="span", style=CSS(display=INLINE, margin_left=AUTO)) node.intrinsic.width = 50 node.intrinsic.height = 10 @@ -38,18 +32,15 @@ def test_auto_left_margin(self): self.assertLayout( node, { - 'tag': 'span', - 'border_box': {'position': (0, 0), 'size': (50, 10)}, - 'padding_box': {'position': (0, 0), 'size': (50, 10)}, - 'content': {'position': (0, 0), 'size': (50, 10)}, - } + "tag": "span", + "border_box": {"position": (0, 0), "size": (50, 10)}, + "padding_box": {"position": (0, 0), "size": (50, 10)}, + "content": {"position": (0, 0), "size": (50, 10)}, + }, ) def test_auto_right_margin(self): - node = TestNode( - name='span', - style=CSS(display=INLINE, margin_right=AUTO) - ) + node = ExampleNode(name="span", style=CSS(display=INLINE, margin_right=AUTO)) node.intrinsic.width = 50 node.intrinsic.height = 10 @@ -58,9 +49,9 @@ def test_auto_right_margin(self): self.assertLayout( node, { - 'tag': 'span', - 'border_box': {'position': (0, 0), 'size': (50, 10)}, - 'padding_box': {'position': (0, 0), 'size': (50, 10)}, - 'content': {'position': (0, 0), 'size': (50, 10)}, - } + "tag": "span", + "border_box": {"position": (0, 0), "size": (50, 10)}, + "padding_box": {"position": (0, 0), "size": (50, 10)}, + "content": {"position": (0, 0), "size": (50, 10)}, + }, ) diff --git a/tests/engine/inline_layout/test_inline_replaced.py b/tests/engine/inline_layout/test_inline_replaced.py index 638b51259..2ee2b5c5c 100644 --- a/tests/engine/inline_layout/test_inline_replaced.py +++ b/tests/engine/inline_layout/test_inline_replaced.py @@ -1,17 +1,14 @@ from colosseum.constants import AUTO, INLINE from colosseum.declaration import CSS -from ...utils import LayoutTestCase, TestNode +from ...utils import ExampleNode, LayoutTestCase # from colosseum.engine import layout class WidthTests(LayoutTestCase): def test_auto_left_margin(self): - node = TestNode( - name='img', - style=CSS(display=INLINE, margin_left=AUTO) - ) + node = ExampleNode(name="img", style=CSS(display=INLINE, margin_left=AUTO)) node.intrinsic.width = 50 node.intrinsic.height = 10 node.intrinsic.is_replaced = True @@ -21,18 +18,15 @@ def test_auto_left_margin(self): self.assertLayout( node, { - 'tag': 'img', - 'border_box': {'position': (0, 0), 'size': (50, 10)}, - 'padding_box': {'position': (0, 0), 'size': (50, 10)}, - 'content': {'position': (0, 0), 'size': (50, 10)}, - } + "tag": "img", + "border_box": {"position": (0, 0), "size": (50, 10)}, + "padding_box": {"position": (0, 0), "size": (50, 10)}, + "content": {"position": (0, 0), "size": (50, 10)}, + }, ) def test_auto_right_margin(self): - node = TestNode( - name='img', - style=CSS(display=INLINE, margin_right=AUTO) - ) + node = ExampleNode(name="img", style=CSS(display=INLINE, margin_right=AUTO)) node.intrinsic.width = 50 node.intrinsic.height = 10 node.intrinsic.is_replaced = True @@ -42,18 +36,15 @@ def test_auto_right_margin(self): self.assertLayout( node, { - 'tag': 'img', - 'border_box': {'position': (0, 0), 'size': (50, 10)}, - 'padding_box': {'position': (0, 0), 'size': (50, 10)}, - 'content': {'position': (0, 0), 'size': (50, 10)}, - } + "tag": "img", + "border_box": {"position": (0, 0), "size": (50, 10)}, + "padding_box": {"position": (0, 0), "size": (50, 10)}, + "content": {"position": (0, 0), "size": (50, 10)}, + }, ) def test_intrinsic_height_and_ratio(self): - node = TestNode( - name='img', - style=CSS(display=INLINE) - ) + node = ExampleNode(name="img", style=CSS(display=INLINE)) node.intrinsic.height = 10 node.intrinsic.ratio = 3.0 node.intrinsic.is_replaced = True @@ -63,18 +54,15 @@ def test_intrinsic_height_and_ratio(self): self.assertLayout( node, { - 'tag': 'img', - 'border_box': {'position': (0, 0), 'size': (30, 10)}, - 'padding_box': {'position': (0, 0), 'size': (30, 10)}, - 'content': {'position': (0, 0), 'size': (30, 10)}, - } + "tag": "img", + "border_box": {"position": (0, 0), "size": (30, 10)}, + "padding_box": {"position": (0, 0), "size": (30, 10)}, + "content": {"position": (0, 0), "size": (30, 10)}, + }, ) def test_intrinsic_ratio(self): - node = TestNode( - name='img', - style=CSS(display=INLINE) - ) + node = ExampleNode(name="img", style=CSS(display=INLINE)) node.intrinsic.ratio = 1.5 node.intrinsic.is_replaced = True @@ -83,18 +71,15 @@ def test_intrinsic_ratio(self): self.assertLayout( node, { - 'tag': 'img', - 'border_box': {'position': (0, 0), 'size': (1024, 1536)}, - 'padding_box': {'position': (0, 0), 'size': (1024, 1536)}, - 'content': {'position': (0, 0), 'size': (1024, 1536)}, - } + "tag": "img", + "border_box": {"position": (0, 0), "size": (1024, 1536)}, + "padding_box": {"position": (0, 0), "size": (1024, 1536)}, + "content": {"position": (0, 0), "size": (1024, 1536)}, + }, ) def test_intrinsic_width(self): - node = TestNode( - name='img', - style=CSS(display=INLINE) - ) + node = ExampleNode(name="img", style=CSS(display=INLINE)) node.intrinsic.width = 50 node.intrinsic.is_replaced = True @@ -103,18 +88,15 @@ def test_intrinsic_width(self): self.assertLayout( node, { - 'tag': 'img', - 'border_box': {'position': (0, 0), 'size': (50, 25)}, - 'padding_box': {'position': (0, 0), 'size': (50, 25)}, - 'content': {'position': (0, 0), 'size': (50, 25)}, - } + "tag": "img", + "border_box": {"position": (0, 0), "size": (50, 25)}, + "padding_box": {"position": (0, 0), "size": (50, 25)}, + "content": {"position": (0, 0), "size": (50, 25)}, + }, ) def test_height_and_intrinsic_width(self): - node = TestNode( - name='img', - style=CSS(display=INLINE, height=30) - ) + node = ExampleNode(name="img", style=CSS(display=INLINE, height=30)) node.intrinsic.width = 50 node.intrinsic.is_replaced = True @@ -123,18 +105,15 @@ def test_height_and_intrinsic_width(self): self.assertLayout( node, { - 'tag': 'img', - 'border_box': {'position': (0, 0), 'size': (50, 30)}, - 'padding_box': {'position': (0, 0), 'size': (50, 30)}, - 'content': {'position': (0, 0), 'size': (50, 30)}, - } + "tag": "img", + "border_box": {"position": (0, 0), "size": (50, 30)}, + "padding_box": {"position": (0, 0), "size": (50, 30)}, + "content": {"position": (0, 0), "size": (50, 30)}, + }, ) def test_no_intrinsic_size(self): - node = TestNode( - name='img', - style=CSS(display=INLINE) - ) + node = ExampleNode(name="img", style=CSS(display=INLINE)) node.intrinsic.is_replaced = True self.layout_node(node) @@ -142,20 +121,17 @@ def test_no_intrinsic_size(self): self.assertLayout( node, { - 'tag': 'img', - 'border_box': {'position': (0, 0), 'size': (300, 150)}, - 'padding_box': {'position': (0, 0), 'size': (300, 150)}, - 'content': {'position': (0, 0), 'size': (300, 150)}, - } + "tag": "img", + "border_box": {"position": (0, 0), "size": (300, 150)}, + "padding_box": {"position": (0, 0), "size": (300, 150)}, + "content": {"position": (0, 0), "size": (300, 150)}, + }, ) class HeightTests(LayoutTestCase): def test_auto_top_margin(self): - node = TestNode( - name='img', - style=CSS(display=INLINE, margin_top=AUTO) - ) + node = ExampleNode(name="img", style=CSS(display=INLINE, margin_top=AUTO)) node.intrinsic.width = 50 node.intrinsic.height = 10 node.intrinsic.is_replaced = True @@ -165,18 +141,15 @@ def test_auto_top_margin(self): self.assertLayout( node, { - 'tag': 'img', - 'border_box': {'position': (0, 0), 'size': (50, 10)}, - 'padding_box': {'position': (0, 0), 'size': (50, 10)}, - 'content': {'position': (0, 0), 'size': (50, 10)}, - } + "tag": "img", + "border_box": {"position": (0, 0), "size": (50, 10)}, + "padding_box": {"position": (0, 0), "size": (50, 10)}, + "content": {"position": (0, 0), "size": (50, 10)}, + }, ) def test_auto_bottom_margin(self): - node = TestNode( - name='img', - style=CSS(display=INLINE, margin_bottom=AUTO) - ) + node = ExampleNode(name="img", style=CSS(display=INLINE, margin_bottom=AUTO)) node.intrinsic.width = 50 node.intrinsic.height = 10 node.intrinsic.is_replaced = True @@ -186,18 +159,15 @@ def test_auto_bottom_margin(self): self.assertLayout( node, { - 'tag': 'img', - 'border_box': {'position': (0, 0), 'size': (50, 10)}, - 'padding_box': {'position': (0, 0), 'size': (50, 10)}, - 'content': {'position': (0, 0), 'size': (50, 10)}, - } + "tag": "img", + "border_box": {"position": (0, 0), "size": (50, 10)}, + "padding_box": {"position": (0, 0), "size": (50, 10)}, + "content": {"position": (0, 0), "size": (50, 10)}, + }, ) def test_width_and_intrinsic_height(self): - node = TestNode( - name='img', - style=CSS(display=INLINE, width=50) - ) + node = ExampleNode(name="img", style=CSS(display=INLINE, width=50)) node.intrinsic.height = 30 node.intrinsic.is_replaced = True @@ -206,18 +176,15 @@ def test_width_and_intrinsic_height(self): self.assertLayout( node, { - 'tag': 'img', - 'border_box': {'position': (0, 0), 'size': (50, 30)}, - 'padding_box': {'position': (0, 0), 'size': (50, 30)}, - 'content': {'position': (0, 0), 'size': (50, 30)}, - } + "tag": "img", + "border_box": {"position": (0, 0), "size": (50, 30)}, + "padding_box": {"position": (0, 0), "size": (50, 30)}, + "content": {"position": (0, 0), "size": (50, 30)}, + }, ) def test_width_and_height(self): - node = TestNode( - name='img', - style=CSS(display=INLINE, width=50, height=30) - ) + node = ExampleNode(name="img", style=CSS(display=INLINE, width=50, height=30)) node.intrinsic.is_replaced = True self.layout_node(node) @@ -225,18 +192,15 @@ def test_width_and_height(self): self.assertLayout( node, { - 'tag': 'img', - 'border_box': {'position': (0, 0), 'size': (50, 30)}, - 'padding_box': {'position': (0, 0), 'size': (50, 30)}, - 'content': {'position': (0, 0), 'size': (50, 30)}, - } + "tag": "img", + "border_box": {"position": (0, 0), "size": (50, 30)}, + "padding_box": {"position": (0, 0), "size": (50, 30)}, + "content": {"position": (0, 0), "size": (50, 30)}, + }, ) def test_no_intrinsic_size_auto_top_margin(self): - node = TestNode( - name='img', - style=CSS(display=INLINE, margin_top=AUTO) - ) + node = ExampleNode(name="img", style=CSS(display=INLINE, margin_top=AUTO)) node.intrinsic.is_replaced = True self.layout_node(node) @@ -244,18 +208,15 @@ def test_no_intrinsic_size_auto_top_margin(self): self.assertLayout( node, { - 'tag': 'img', - 'border_box': {'position': (0, 0), 'size': (300, 150)}, - 'padding_box': {'position': (0, 0), 'size': (300, 150)}, - 'content': {'position': (0, 0), 'size': (300, 150)}, - } + "tag": "img", + "border_box": {"position": (0, 0), "size": (300, 150)}, + "padding_box": {"position": (0, 0), "size": (300, 150)}, + "content": {"position": (0, 0), "size": (300, 150)}, + }, ) def test_no_intrinsic_size_auto_bottom_margin(self): - node = TestNode( - name='img', - style=CSS(display=INLINE, margin_bottom=AUTO) - ) + node = ExampleNode(name="img", style=CSS(display=INLINE, margin_bottom=AUTO)) node.intrinsic.is_replaced = True self.layout_node(node) @@ -263,9 +224,9 @@ def test_no_intrinsic_size_auto_bottom_margin(self): self.assertLayout( node, { - 'tag': 'img', - 'border_box': {'position': (0, 0), 'size': (300, 150)}, - 'padding_box': {'position': (0, 0), 'size': (300, 150)}, - 'content': {'position': (0, 0), 'size': (300, 150)}, - } + "tag": "img", + "border_box": {"position": (0, 0), "size": (300, 150)}, + "padding_box": {"position": (0, 0), "size": (300, 150)}, + "content": {"position": (0, 0), "size": (300, 150)}, + }, ) diff --git a/tests/engine/test_ua_border_sizes.py b/tests/engine/test_ua_border_sizes.py index 01f481f4b..d8a32dc95 100644 --- a/tests/engine/test_ua_border_sizes.py +++ b/tests/engine/test_ua_border_sizes.py @@ -1,13 +1,20 @@ from colosseum.constants import BLOCK, MEDIUM, SOLID, THICK, THIN from colosseum.declaration import CSS -from ..utils import LayoutTestCase, TestNode +from ..utils import ExampleNode, LayoutTestCase class UABorderSizes(LayoutTestCase): def test_thin_border(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, border_style=SOLID, border_width=THIN, width=50, height=30) + node = ExampleNode( + name="div", + style=CSS( + display=BLOCK, + border_style=SOLID, + border_width=THIN, + width=50, + height=30, + ), ) self.layout_node(node) @@ -15,16 +22,23 @@ def test_thin_border(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (52, 32)}, - 'padding_box': {'position': (1, 1), 'size': (50, 30)}, - 'content': {'position': (1, 1), 'size': (50, 30)}, - } + "tag": "div", + "border_box": {"position": (0, 0), "size": (52, 32)}, + "padding_box": {"position": (1, 1), "size": (50, 30)}, + "content": {"position": (1, 1), "size": (50, 30)}, + }, ) def test_medium_border(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, border_style=SOLID, border_width=MEDIUM, width=50, height=30) + node = ExampleNode( + name="div", + style=CSS( + display=BLOCK, + border_style=SOLID, + border_width=MEDIUM, + width=50, + height=30, + ), ) self.layout_node(node) @@ -32,16 +46,23 @@ def test_medium_border(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (60, 40)}, - 'padding_box': {'position': (5, 5), 'size': (50, 30)}, - 'content': {'position': (5, 5), 'size': (50, 30)}, - } + "tag": "div", + "border_box": {"position": (0, 0), "size": (60, 40)}, + "padding_box": {"position": (5, 5), "size": (50, 30)}, + "content": {"position": (5, 5), "size": (50, 30)}, + }, ) def test_thick_border(self): - node = TestNode( - name='div', style=CSS(display=BLOCK, border_style=SOLID, border_width=THICK, width=50, height=30) + node = ExampleNode( + name="div", + style=CSS( + display=BLOCK, + border_style=SOLID, + border_width=THICK, + width=50, + height=30, + ), ) self.layout_node(node) @@ -49,9 +70,9 @@ def test_thick_border(self): self.assertLayout( node, { - 'tag': 'div', - 'border_box': {'position': (0, 0), 'size': (70, 50)}, - 'padding_box': {'position': (10, 10), 'size': (50, 30)}, - 'content': {'position': (10, 10), 'size': (50, 30)}, - } + "tag": "div", + "border_box": {"position": (0, 0), "size": (70, 50)}, + "padding_box": {"position": (10, 10), "size": (50, 30)}, + "content": {"position": (10, 10), "size": (50, 30)}, + }, ) diff --git a/tests/test_color.py b/tests/test_color.py index 5ee765684..ce85384b4 100644 --- a/tests/test_color.py +++ b/tests/test_color.py @@ -24,27 +24,27 @@ def test_hsl_blacks(self): self.assertEqualColor(hsl(360, 0.0, 0.0), rgb(0x00, 0x00, 0x00)) def test_hsl_whites(self): - self.assertEqualColor(hsl(0, 0.0, 1.0), rgb(0xff, 0xff, 0xff)) - self.assertEqualColor(hsl(60, 0.0, 1.0), rgb(0xff, 0xff, 0xff)) - self.assertEqualColor(hsl(180, 0.0, 1.0), rgb(0xff, 0xff, 0xff)) - self.assertEqualColor(hsl(240, 0.0, 1.0), rgb(0xff, 0xff, 0xff)) - self.assertEqualColor(hsl(360, 0.0, 1.0), rgb(0xff, 0xff, 0xff)) + self.assertEqualColor(hsl(0, 0.0, 1.0), rgb(0xFF, 0xFF, 0xFF)) + self.assertEqualColor(hsl(60, 0.0, 1.0), rgb(0xFF, 0xFF, 0xFF)) + self.assertEqualColor(hsl(180, 0.0, 1.0), rgb(0xFF, 0xFF, 0xFF)) + self.assertEqualColor(hsl(240, 0.0, 1.0), rgb(0xFF, 0xFF, 0xFF)) + self.assertEqualColor(hsl(360, 0.0, 1.0), rgb(0xFF, 0xFF, 0xFF)) def test_hsl_grays(self): self.assertEqualColor(hsl(0, 0.0, 0.2), rgb(0x33, 0x33, 0x33)) self.assertEqualColor(hsl(0, 0.0, 0.4), rgb(0x66, 0x66, 0x66)) self.assertEqualColor(hsl(0, 0.0, 0.5), rgb(0x80, 0x80, 0x80)) self.assertEqualColor(hsl(0, 0.0, 0.6), rgb(0x99, 0x99, 0x99)) - self.assertEqualColor(hsl(0, 0.0, 0.8), rgb(0xcc, 0xcc, 0xcc)) + self.assertEqualColor(hsl(0, 0.0, 0.8), rgb(0xCC, 0xCC, 0xCC)) def test_hsl_primaries(self): - self.assertEqualColor(hsl(0, 1.0, 0.5), rgb(0xff, 0x00, 0x00)) - self.assertEqualColor(hsl(60, 1.0, 0.5), rgb(0xff, 0xff, 0x00)) - self.assertEqualColor(hsl(120, 1.0, 0.5), rgb(0x00, 0xff, 0x00)) - self.assertEqualColor(hsl(180, 1.0, 0.5), rgb(0x00, 0xff, 0xff)) - self.assertEqualColor(hsl(240, 1.0, 0.5), rgb(0x00, 0x00, 0xff)) - self.assertEqualColor(hsl(300, 1.0, 0.5), rgb(0xff, 0x00, 0xff)) - self.assertEqualColor(hsl(360, 1.0, 0.5), rgb(0xff, 0x00, 0x00)) + self.assertEqualColor(hsl(0, 1.0, 0.5), rgb(0xFF, 0x00, 0x00)) + self.assertEqualColor(hsl(60, 1.0, 0.5), rgb(0xFF, 0xFF, 0x00)) + self.assertEqualColor(hsl(120, 1.0, 0.5), rgb(0x00, 0xFF, 0x00)) + self.assertEqualColor(hsl(180, 1.0, 0.5), rgb(0x00, 0xFF, 0xFF)) + self.assertEqualColor(hsl(240, 1.0, 0.5), rgb(0x00, 0x00, 0xFF)) + self.assertEqualColor(hsl(300, 1.0, 0.5), rgb(0xFF, 0x00, 0xFF)) + self.assertEqualColor(hsl(360, 1.0, 0.5), rgb(0xFF, 0x00, 0x00)) def test_hsl_muted(self): self.assertEqualColor(hsl(0, 0.25, 0.25), rgb(0x50, 0x30, 0x30)) @@ -55,21 +55,21 @@ def test_hsl_muted(self): self.assertEqualColor(hsl(300, 0.25, 0.25), rgb(0x50, 0x30, 0x50)) self.assertEqualColor(hsl(360, 0.25, 0.25), rgb(0x50, 0x30, 0x30)) - self.assertEqualColor(hsl(0, 0.25, 0.75), rgb(0xcf, 0xaf, 0xaf)) - self.assertEqualColor(hsl(60, 0.25, 0.75), rgb(0xcf, 0xcf, 0xaf)) - self.assertEqualColor(hsl(120, 0.25, 0.75), rgb(0xaf, 0xcf, 0xaf)) - self.assertEqualColor(hsl(180, 0.25, 0.75), rgb(0xaf, 0xcf, 0xcf)) - self.assertEqualColor(hsl(240, 0.25, 0.75), rgb(0xaf, 0xaf, 0xcf)) - self.assertEqualColor(hsl(300, 0.25, 0.75), rgb(0xcf, 0xaf, 0xcf)) - self.assertEqualColor(hsl(360, 0.25, 0.75), rgb(0xcf, 0xaf, 0xaf)) + self.assertEqualColor(hsl(0, 0.25, 0.75), rgb(0xCF, 0xAF, 0xAF)) + self.assertEqualColor(hsl(60, 0.25, 0.75), rgb(0xCF, 0xCF, 0xAF)) + self.assertEqualColor(hsl(120, 0.25, 0.75), rgb(0xAF, 0xCF, 0xAF)) + self.assertEqualColor(hsl(180, 0.25, 0.75), rgb(0xAF, 0xCF, 0xCF)) + self.assertEqualColor(hsl(240, 0.25, 0.75), rgb(0xAF, 0xAF, 0xCF)) + self.assertEqualColor(hsl(300, 0.25, 0.75), rgb(0xCF, 0xAF, 0xCF)) + self.assertEqualColor(hsl(360, 0.25, 0.75), rgb(0xCF, 0xAF, 0xAF)) - self.assertEqualColor(hsl(0, 0.75, 0.75), rgb(0xef, 0x8f, 0x8f)) - self.assertEqualColor(hsl(60, 0.75, 0.75), rgb(0xef, 0xef, 0x8f)) - self.assertEqualColor(hsl(120, 0.75, 0.75), rgb(0x8f, 0xef, 0x8f)) - self.assertEqualColor(hsl(180, 0.75, 0.75), rgb(0x8f, 0xef, 0xef)) - self.assertEqualColor(hsl(240, 0.75, 0.75), rgb(0x8f, 0x8f, 0xef)) - self.assertEqualColor(hsl(300, 0.75, 0.75), rgb(0xef, 0x8f, 0xef)) - self.assertEqualColor(hsl(360, 0.75, 0.75), rgb(0xef, 0x8f, 0x8f)) + self.assertEqualColor(hsl(0, 0.75, 0.75), rgb(0xEF, 0x8F, 0x8F)) + self.assertEqualColor(hsl(60, 0.75, 0.75), rgb(0xEF, 0xEF, 0x8F)) + self.assertEqualColor(hsl(120, 0.75, 0.75), rgb(0x8F, 0xEF, 0x8F)) + self.assertEqualColor(hsl(180, 0.75, 0.75), rgb(0x8F, 0xEF, 0xEF)) + self.assertEqualColor(hsl(240, 0.75, 0.75), rgb(0x8F, 0x8F, 0xEF)) + self.assertEqualColor(hsl(300, 0.75, 0.75), rgb(0xEF, 0x8F, 0xEF)) + self.assertEqualColor(hsl(360, 0.75, 0.75), rgb(0xEF, 0x8F, 0x8F)) self.assertEqualColor(hsl(0, 0.75, 0.25), rgb(0x70, 0x10, 0x10)) self.assertEqualColor(hsl(60, 0.75, 0.25), rgb(0x70, 0x70, 0x10)) @@ -81,9 +81,9 @@ def test_hsl_muted(self): def test_hsl_alpha(self): self.assertEqualColor(hsl(60, 0.0, 0.0, 0.3), rgb(0x00, 0x00, 0x00, 0.3)) - self.assertEqualColor(hsl(60, 0.0, 1.0, 0.3), rgb(0xff, 0xff, 0xff, 0.3)) - self.assertEqualColor(hsl(60, 1.0, 0.5, 0.3), rgb(0xff, 0xff, 0x00, 0.3)) + self.assertEqualColor(hsl(60, 0.0, 1.0, 0.3), rgb(0xFF, 0xFF, 0xFF, 0.3)) + self.assertEqualColor(hsl(60, 1.0, 0.5, 0.3), rgb(0xFF, 0xFF, 0x00, 0.3)) self.assertEqualColor(hsl(60, 0.25, 0.25, 0.3), rgb(0x50, 0x50, 0x30, 0.3)) - self.assertEqualColor(hsl(60, 0.25, 0.75, 0.3), rgb(0xcf, 0xcf, 0xaf, 0.3)) - self.assertEqualColor(hsl(60, 0.75, 0.75, 0.3), rgb(0xef, 0xef, 0x8f, 0.3)) + self.assertEqualColor(hsl(60, 0.25, 0.75, 0.3), rgb(0xCF, 0xCF, 0xAF, 0.3)) + self.assertEqualColor(hsl(60, 0.75, 0.75, 0.3), rgb(0xEF, 0xEF, 0x8F, 0.3)) self.assertEqualColor(hsl(60, 0.75, 0.25, 0.3), rgb(0x70, 0x70, 0x10, 0.3)) diff --git a/tests/test_declaration.py b/tests/test_declaration.py index ca1ff9cc9..9bfbbb3f7 100644 --- a/tests/test_declaration.py +++ b/tests/test_declaration.py @@ -29,13 +29,13 @@ ) from colosseum.wrappers import BorderSpacing, Quotes -from .utils import TestNode +from .utils import ExampleNode class PropertyChoiceTests(TestCase): def test_none(self): class MyObject: - prop = validated_property('prop', choices=Choices(None), initial=None) + prop = validated_property("prop", choices=Choices(None), initial=None) obj = MyObject() self.assertIsNone(obj.prop) @@ -49,27 +49,29 @@ class MyObject: with self.assertRaises(ValueError): obj.prop = REBECCAPURPLE with self.assertRaises(ValueError): - obj.prop = '#112233' + obj.prop = "#112233" with self.assertRaises(ValueError): - obj.prop = 'a' + obj.prop = "a" with self.assertRaises(ValueError): - obj.prop = 'b' + obj.prop = "b" obj.prop = None - obj.prop = 'none' + obj.prop = "none" # Check the error message try: - obj.prop = 'invalid' - self.fail('Should raise ValueError') + obj.prop = "invalid" + self.fail("Should raise ValueError") except ValueError as v: self.assertEqual( str(v), - "Invalid value 'invalid' for CSS property 'prop'; Valid values are: none" + "Invalid value 'invalid' for CSS property 'prop'; Valid values are: none", ) def test_allow_length(self): class MyObject: - prop = validated_property('prop', choices=Choices(validators=[is_length]), initial=0) + prop = validated_property( + "prop", choices=Choices(validators=[is_length]), initial=0 + ) obj = MyObject() self.assertEqual(obj.prop, 0 * px) @@ -80,29 +82,33 @@ class MyObject: with self.assertRaises(ValueError): obj.prop = REBECCAPURPLE with self.assertRaises(ValueError): - obj.prop = '#112233' + obj.prop = "#112233" with self.assertRaises(ValueError): - obj.prop = 'a' + obj.prop = "a" with self.assertRaises(ValueError): - obj.prop = 'b' + obj.prop = "b" with self.assertRaises(ValueError): obj.prop = None with self.assertRaises(ValueError): - obj.prop = 'none' + obj.prop = "none" # Check the error message try: - obj.prop = 'invalid' - self.fail('Should raise ValueError') + obj.prop = "invalid" + self.fail("Should raise ValueError") except ValueError as v: self.assertEqual( str(v), - "Invalid value 'invalid' for CSS property 'prop'; Valid values are: " + "Invalid value 'invalid' for CSS property 'prop'; Valid values are: ", ) def test_allow_percentage(self): class MyObject: - prop = validated_property('prop', choices=Choices(validators=[is_percentage]), initial=99 * percent) + prop = validated_property( + "prop", + choices=Choices(validators=[is_percentage]), + initial=99 * percent, + ) obj = MyObject() self.assertEqual(obj.prop, 99 * percent) @@ -115,29 +121,31 @@ class MyObject: with self.assertRaises(ValueError): obj.prop = REBECCAPURPLE with self.assertRaises(ValueError): - obj.prop = '#112233' + obj.prop = "#112233" with self.assertRaises(ValueError): - obj.prop = 'a' + obj.prop = "a" with self.assertRaises(ValueError): - obj.prop = 'b' + obj.prop = "b" with self.assertRaises(ValueError): obj.prop = None with self.assertRaises(ValueError): - obj.prop = 'none' + obj.prop = "none" # Check the error message try: - obj.prop = 'invalid' - self.fail('Should raise ValueError') + obj.prop = "invalid" + self.fail("Should raise ValueError") except ValueError as v: self.assertEqual( str(v), - "Invalid value 'invalid' for CSS property 'prop'; Valid values are: " + "Invalid value 'invalid' for CSS property 'prop'; Valid values are: ", ) def test_allow_integer(self): class MyObject: - prop = validated_property('prop', choices=Choices(validators=[is_integer]), initial=0) + prop = validated_property( + "prop", choices=Choices(validators=[is_integer]), initial=0 + ) obj = MyObject() self.assertEqual(obj.prop, 0) @@ -150,29 +158,31 @@ class MyObject: with self.assertRaises(ValueError): obj.prop = REBECCAPURPLE with self.assertRaises(ValueError): - obj.prop = '#112233' + obj.prop = "#112233" with self.assertRaises(ValueError): - obj.prop = 'a' + obj.prop = "a" with self.assertRaises(ValueError): - obj.prop = 'b' + obj.prop = "b" with self.assertRaises(ValueError): obj.prop = None with self.assertRaises(ValueError): - obj.prop = 'none' + obj.prop = "none" # Check the error message try: - obj.prop = 'invalid' - self.fail('Should raise ValueError') + obj.prop = "invalid" + self.fail("Should raise ValueError") except ValueError as v: self.assertEqual( str(v), - "Invalid value 'invalid' for CSS property 'prop'; Valid values are: " + "Invalid value 'invalid' for CSS property 'prop'; Valid values are: ", ) def test_allow_color(self): class MyObject: - prop = validated_property('prop', choices=Choices(validators=[is_color]), initial='goldenrod') + prop = validated_property( + "prop", choices=Choices(validators=[is_color]), initial="goldenrod" + ) obj = MyObject() self.assertEqual(obj.prop, NAMED_COLOR[GOLDENROD]) @@ -184,29 +194,31 @@ class MyObject: with self.assertRaises(ValueError): obj.prop = 30 * percent obj.prop = REBECCAPURPLE - obj.prop = '#112233' + obj.prop = "#112233" with self.assertRaises(ValueError): - obj.prop = 'a' + obj.prop = "a" with self.assertRaises(ValueError): - obj.prop = 'b' + obj.prop = "b" with self.assertRaises(ValueError): obj.prop = None with self.assertRaises(ValueError): - obj.prop = 'none' + obj.prop = "none" # Check the error message try: - obj.prop = 'invalid' - self.fail('Should raise ValueError') + obj.prop = "invalid" + self.fail("Should raise ValueError") except ValueError as v: self.assertEqual( str(v), - "Invalid value 'invalid' for CSS property 'prop'; Valid values are: " + "Invalid value 'invalid' for CSS property 'prop'; Valid values are: ", ) def test_allow_uri(self): class MyObject: - prop = validated_property('prop', choices=Choices(validators=[is_uri]), initial='url(google.com)') + prop = validated_property( + "prop", choices=Choices(validators=[is_uri]), initial="url(google.com)" + ) obj = MyObject() self.assertEqual(str(obj.prop), 'url("google.com")') @@ -218,30 +230,32 @@ class MyObject: with self.assertRaises(ValueError): obj.prop = 30 * percent with self.assertRaises(ValueError): - obj.prop = 'a' + obj.prop = "a" with self.assertRaises(ValueError): - obj.prop = 'b' + obj.prop = "b" with self.assertRaises(ValueError): obj.prop = None with self.assertRaises(ValueError): - obj.prop = 'none' + obj.prop = "none" # Check the error message try: - obj.prop = 'invalid' - self.fail('Should raise ValueError') + obj.prop = "invalid" + self.fail("Should raise ValueError") except ValueError as v: self.assertEqual( str(v), - "Invalid value 'invalid' for CSS property 'prop'; Valid values are: " + "Invalid value 'invalid' for CSS property 'prop'; Valid values are: ", ) def test_values(self): class MyObject: - prop = validated_property('prop', choices=Choices('a', 'b', None), initial='a') + prop = validated_property( + "prop", choices=Choices("a", "b", None), initial="a" + ) obj = MyObject() - self.assertEqual(obj.prop, 'a') + self.assertEqual(obj.prop, "a") with self.assertRaises(ValueError): obj.prop = 10 @@ -252,29 +266,41 @@ class MyObject: with self.assertRaises(ValueError): obj.prop = REBECCAPURPLE with self.assertRaises(ValueError): - obj.prop = '#112233' - obj.prop = 'a' - obj.prop = 'b' + obj.prop = "#112233" + obj.prop = "a" + obj.prop = "b" obj.prop = None - obj.prop = 'none' + obj.prop = "none" # Check the error message try: - obj.prop = 'invalid' - self.fail('Should raise ValueError') + obj.prop = "invalid" + self.fail("Should raise ValueError") except ValueError as v: self.assertEqual( str(v), - "Invalid value 'invalid' for CSS property 'prop'; Valid values are: a, b, none" + "Invalid value 'invalid' for CSS property 'prop'; Valid values are: a, b, none", ) def test_all_choices(self): class MyObject: - prop = validated_property('prop', choices=Choices( - 'a', 'b', None, - validators=[is_integer, is_number, is_length, is_percentage, is_color], - explicit_defaulting_constants=[INITIAL, INHERIT, UNSET, REVERT] - ), initial=None) + prop = validated_property( + "prop", + choices=Choices( + "a", + "b", + None, + validators=[ + is_integer, + is_number, + is_length, + is_percentage, + is_color, + ], + explicit_defaulting_constants=[INITIAL, INHERIT, UNSET, REVERT], + ), + initial=None, + ) obj = MyObject() @@ -282,11 +308,11 @@ class MyObject: obj.prop = 20 * px obj.prop = 30 * percent obj.prop = REBECCAPURPLE - obj.prop = '#112233' - obj.prop = 'a' - obj.prop = 'b' + obj.prop = "#112233" + obj.prop = "a" + obj.prop = "b" obj.prop = None - obj.prop = 'none' + obj.prop = "none" obj.prop = INITIAL obj.prop = INHERIT obj.prop = UNSET @@ -294,19 +320,19 @@ class MyObject: # Check the error message try: - obj.prop = 'invalid' - self.fail('Should raise ValueError') + obj.prop = "invalid" + self.fail("Should raise ValueError") except ValueError as v: self.assertEqual( str(v), "Invalid value 'invalid' for CSS property 'prop'; " "Valid values are: , , , , , " - "a, b, inherit, initial, none, revert, unset" + "a, b, inherit, initial, none, revert, unset", ) def test_string_symbol(self): class MyObject: - prop = validated_property('prop', choices=Choices(AUTO, None), initial=None) + prop = validated_property("prop", choices=Choices(AUTO, None), initial=None) obj = MyObject() @@ -314,7 +340,7 @@ class MyObject: # We can't just use the string directly, though - that would # get optimized by the compiler. So we create a string and # transform it into the value we want. - val = 'AUTO' + val = "AUTO" obj.prop = val.lower() # Both equality and instance checking should work. @@ -324,11 +350,11 @@ class MyObject: class CssDeclarationTests(TestCase): def test_engine(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) self.assertEqual(node.style.engine(), css_engine) def test_auto_default_property(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None # Default value is AUTO @@ -375,7 +401,7 @@ def test_auto_default_property(self): self.assertFalse(node.style.dirty) def test_0_default_property(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None # Default value is 0 @@ -412,7 +438,7 @@ def test_0_default_property(self): self.assertTrue(node.style.dirty) def test_None_default_property(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None # Default value is None @@ -449,7 +475,7 @@ def test_None_default_property(self): self.assertTrue(node.style.dirty) def test_property_with_choices(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None # Default value is INLINE @@ -489,120 +515,120 @@ def test_property_with_choices(self): self.assertTrue(node.style.dirty) def test_property_border_spacing_valid_str_1_item_inherit(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None # Text value - node.style.border_spacing = 'inherit' - self.assertEqual(node.style.border_spacing, 'inherit') - self.assertEqual(node.style.border_spacing, 'inherit') + node.style.border_spacing = "inherit" + self.assertEqual(node.style.border_spacing, "inherit") + self.assertEqual(node.style.border_spacing, "inherit") self.assertNotIsInstance(node.style.border_spacing, BorderSpacing) def test_property_border_spacing_valid_str_1_item(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - node.style.border_spacing = '1' + node.style.border_spacing = "1" self.assertEqual(node.style.border_spacing.horizontal, 1 * px) self.assertEqual(node.style.border_spacing.vertical, 1 * px) - self.assertEqual(repr(node.style.border_spacing), 'BorderSpacing(1px)') - self.assertEqual(str(node.style.border_spacing), '1px') + self.assertEqual(repr(node.style.border_spacing), "BorderSpacing(1px)") + self.assertEqual(str(node.style.border_spacing), "1px") - node.style.border_spacing = '1px' + node.style.border_spacing = "1px" self.assertEqual(node.style.border_spacing.horizontal, 1 * px) self.assertEqual(node.style.border_spacing.vertical, 1 * px) - self.assertEqual(repr(node.style.border_spacing), 'BorderSpacing(1px)') - self.assertEqual(str(node.style.border_spacing), '1px') + self.assertEqual(repr(node.style.border_spacing), "BorderSpacing(1px)") + self.assertEqual(str(node.style.border_spacing), "1px") def test_property_border_spacing_valid_str_1_item_spaces(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - node.style.border_spacing = ' 1 ' + node.style.border_spacing = " 1 " self.assertEqual(node.style.border_spacing.horizontal, 1 * px) self.assertEqual(node.style.border_spacing.vertical, 1 * px) - self.assertEqual(repr(node.style.border_spacing), 'BorderSpacing(1px)') - self.assertEqual(str(node.style.border_spacing), '1px') + self.assertEqual(repr(node.style.border_spacing), "BorderSpacing(1px)") + self.assertEqual(str(node.style.border_spacing), "1px") - node.style.border_spacing = ' 1px ' + node.style.border_spacing = " 1px " self.assertEqual(node.style.border_spacing.horizontal, 1 * px) self.assertEqual(node.style.border_spacing.vertical, 1 * px) - self.assertEqual(repr(node.style.border_spacing), 'BorderSpacing(1px)') - self.assertEqual(str(node.style.border_spacing), '1px') + self.assertEqual(repr(node.style.border_spacing), "BorderSpacing(1px)") + self.assertEqual(str(node.style.border_spacing), "1px") def test_property_border_spacing_valid_str_2_items_numbers(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - node.style.border_spacing = '1 2' + node.style.border_spacing = "1 2" self.assertEqual(node.style.border_spacing.horizontal, 1 * px) self.assertEqual(node.style.border_spacing.vertical, 2 * px) - self.assertEqual(repr(node.style.border_spacing), 'BorderSpacing(1px, 2px)') - self.assertEqual(str(node.style.border_spacing), '1px 2px') + self.assertEqual(repr(node.style.border_spacing), "BorderSpacing(1px, 2px)") + self.assertEqual(str(node.style.border_spacing), "1px 2px") - node.style.border_spacing = '1.0 2.0' + node.style.border_spacing = "1.0 2.0" self.assertEqual(node.style.border_spacing.horizontal, 1 * px) self.assertEqual(node.style.border_spacing.vertical, 2 * px) - self.assertEqual(repr(node.style.border_spacing), 'BorderSpacing(1px, 2px)') - self.assertEqual(str(node.style.border_spacing), '1px 2px') + self.assertEqual(repr(node.style.border_spacing), "BorderSpacing(1px, 2px)") + self.assertEqual(str(node.style.border_spacing), "1px 2px") def test_property_border_spacing_valid_str_2_items_px(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - node.style.border_spacing = '1px 2px' + node.style.border_spacing = "1px 2px" self.assertEqual(node.style.border_spacing.horizontal, 1 * px) self.assertEqual(node.style.border_spacing.vertical, 2 * px) - self.assertEqual(repr(node.style.border_spacing), 'BorderSpacing(1px, 2px)') - self.assertEqual(str(node.style.border_spacing), '1px 2px') + self.assertEqual(repr(node.style.border_spacing), "BorderSpacing(1px, 2px)") + self.assertEqual(str(node.style.border_spacing), "1px 2px") def test_property_border_spacing_valid_str_2_items_numbers_spaces(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - node.style.border_spacing = ' 1 2 ' + node.style.border_spacing = " 1 2 " self.assertEqual(node.style.border_spacing.horizontal, 1 * px) self.assertEqual(node.style.border_spacing.vertical, 2 * px) - self.assertEqual(repr(node.style.border_spacing), 'BorderSpacing(1px, 2px)') - self.assertEqual(str(node.style.border_spacing), '1px 2px') + self.assertEqual(repr(node.style.border_spacing), "BorderSpacing(1px, 2px)") + self.assertEqual(str(node.style.border_spacing), "1px 2px") - node.style.border_spacing = ' 1.0 2.0 ' + node.style.border_spacing = " 1.0 2.0 " self.assertEqual(node.style.border_spacing.horizontal, 1 * px) self.assertEqual(node.style.border_spacing.vertical, 2 * px) - self.assertEqual(repr(node.style.border_spacing), 'BorderSpacing(1px, 2px)') - self.assertEqual(str(node.style.border_spacing), '1px 2px') + self.assertEqual(repr(node.style.border_spacing), "BorderSpacing(1px, 2px)") + self.assertEqual(str(node.style.border_spacing), "1px 2px") def test_property_border_spacing_valid_sequence_2_items(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None # List of strings - node.style.border_spacing = ['1', '2'] + node.style.border_spacing = ["1", "2"] self.assertEqual(node.style.border_spacing.horizontal, 1 * px) self.assertEqual(node.style.border_spacing.vertical, 2 * px) - self.assertEqual(repr(node.style.border_spacing), 'BorderSpacing(1px, 2px)') - self.assertEqual(str(node.style.border_spacing), '1px 2px') + self.assertEqual(repr(node.style.border_spacing), "BorderSpacing(1px, 2px)") + self.assertEqual(str(node.style.border_spacing), "1px 2px") # List node.style.border_spacing = [1, 2] self.assertEqual(node.style.border_spacing.horizontal, 1 * px) self.assertEqual(node.style.border_spacing.vertical, 2 * px) - self.assertEqual(repr(node.style.border_spacing), 'BorderSpacing(1px, 2px)') - self.assertEqual(str(node.style.border_spacing), '1px 2px') + self.assertEqual(repr(node.style.border_spacing), "BorderSpacing(1px, 2px)") + self.assertEqual(str(node.style.border_spacing), "1px 2px") # Tuple node.style.border_spacing = (1, 2) self.assertEqual(node.style.border_spacing.horizontal, 1 * px) self.assertEqual(node.style.border_spacing.vertical, 2 * px) - self.assertEqual(repr(node.style.border_spacing), 'BorderSpacing(1px, 2px)') - self.assertEqual(str(node.style.border_spacing), '1px 2px') + self.assertEqual(repr(node.style.border_spacing), "BorderSpacing(1px, 2px)") + self.assertEqual(str(node.style.border_spacing), "1px 2px") def test_property_border_spacing_invalid_empty_item(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None with self.assertRaises(ValueError): - node.style.border_spacing = '' + node.style.border_spacing = "" with self.assertRaises(ValueError): node.style.border_spacing = () @@ -611,66 +637,70 @@ def test_property_border_spacing_invalid_empty_item(self): node.style.border_spacing = [] def test_property_border_spacing_invalid_value_1_item(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None with self.assertRaises(ValueError): - node.style.border_spacing = 'foobar' + node.style.border_spacing = "foobar" with self.assertRaises(ValueError): - node.style.border_spacing = ['foobar'] + node.style.border_spacing = ["foobar"] with self.assertRaises(ValueError): - node.style.border_spacing = ('foobar', ) + node.style.border_spacing = ("foobar",) def test_property_border_spacing_invalid_value_2_items(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None with self.assertRaises(ValueError): - node.style.border_spacing = 'foobar spam' + node.style.border_spacing = "foobar spam" with self.assertRaises(ValueError): - node.style.border_spacing = ['foobar', 'spam'] + node.style.border_spacing = ["foobar", "spam"] with self.assertRaises(ValueError): - node.style.border_spacing = ('foobar', 'spam') + node.style.border_spacing = ("foobar", "spam") def test_property_border_spacing_invalid_amount_of_items(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None with self.assertRaises(ValueError): - node.style.border_spacing = '1 2 3' + node.style.border_spacing = "1 2 3" with self.assertRaises(ValueError): - node.style.border_spacing = 1, 2, 3, + node.style.border_spacing = ( + 1, + 2, + 3, + ) with self.assertRaises(ValueError): node.style.border_spacing = [1, 2, 3] def test_property_border_spacing_invalid_separator_str_1_item(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None with self.assertRaises(ValueError): - node.style.border_spacing = '1,' + node.style.border_spacing = "1," with self.assertRaises(ValueError): - node.style.border_spacing = '1;' + node.style.border_spacing = "1;" def test_property_border_spacing_invalid_separator_str_2_items(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None with self.assertRaises(ValueError): - node.style.border_spacing = '1, 2' + node.style.border_spacing = "1, 2" with self.assertRaises(ValueError): - node.style.border_spacing = '1; 2' + node.style.border_spacing = "1; 2" def test_directional_property(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None # Default value is 0 @@ -793,16 +823,16 @@ def test_directional_property(self): self.assertTrue(node.style.dirty) def test_validated_property_cursor_default_value(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None self.assertEqual(str(node.style.cursor), AUTO) def test_validated_property_cursor_set_valid_values(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - node.style.cursor = 'url(test), auto' + node.style.cursor = "url(test), auto" self.assertEqual(str(node.style.cursor), 'url("test"), auto') node.style.cursor = "url('test')", AUTO @@ -815,30 +845,30 @@ def test_validated_property_cursor_set_valid_values(self): self.assertEqual(str(node.style.cursor), 'url("test"), url("test2"), auto') def test_validated_property_cursor_set_invalid_str_values(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None with self.assertRaises(ValueError): - node.style.cursor = 'boom' + node.style.cursor = "boom" with self.assertRaises(ValueError): - node.style.cursor = 'auto, url(google.com)' + node.style.cursor = "auto, url(google.com)" with self.assertRaises(ValueError): - node.style.cursor = 'auto url(google.com)' + node.style.cursor = "auto url(google.com)" def test_validated_property_cursor_set_invalid_list_values(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None with self.assertRaises(ValueError): - node.style.cursor = ['boom'] + node.style.cursor = ["boom"] with self.assertRaises(ValueError): - node.style.cursor = [AUTO, 'url(google.com)'] + node.style.cursor = [AUTO, "url(google.com)"] def test_set_multiple_properties(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None node.style.update(width=10, height=20) @@ -867,8 +897,12 @@ def test_set_multiple_properties(self): def test_other_property_valid(self): class MyObject: - prop = validated_property('prop', choices=Choices(AUTO, None), initial=OtherProperty('other_prop')) - other_prop = validated_property('other_prop', choices=Choices(0, AUTO), initial=AUTO) + prop = validated_property( + "prop", choices=Choices(AUTO, None), initial=OtherProperty("other_prop") + ) + other_prop = validated_property( + "other_prop", choices=Choices(0, AUTO), initial=AUTO + ) obj = MyObject() self.assertEqual(obj.prop, AUTO) @@ -888,14 +922,16 @@ def test_other_property_invalid_no_name_argument(self): def test_other_property_invalid_incorrect_property_name(self): class MyObject: - prop = validated_property('prop', choices=Choices(AUTO, None), initial=OtherProperty('foobar')) + prop = validated_property( + "prop", choices=Choices(AUTO, None), initial=OtherProperty("foobar") + ) obj = MyObject() with self.assertRaises(ValueError): obj.prop def test_other_property_callable_valid(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None # Check initial value LTR @@ -910,74 +946,80 @@ class SomeProperty: boo = None with self.assertRaises(ValueError): + class MyObject: - prop = validated_property('prop', choices=Choices(AUTO, None), initial=SomeProperty()) + prop = validated_property( + "prop", choices=Choices(AUTO, None), initial=SomeProperty() + ) def test_other_property_callable_invalid_value_not_a_method(self): class SomeProperty: value = None with self.assertRaises(ValueError): + class MyObject: - prop = validated_property('prop', choices=Choices(AUTO, None), initial=SomeProperty()) + prop = validated_property( + "prop", choices=Choices(AUTO, None), initial=SomeProperty() + ) ############################################################################## # Quotes ############################################################################## def test_quotes_valid_str_2_items(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None node.style.quotes = "'<' '>'" - self.assertEqual(node.style.quotes, Quotes([('<', '>')])) + self.assertEqual(node.style.quotes, Quotes([("<", ">")])) def test_quotes_valid_str_4_items(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None node.style.quotes = "'<' '>' '{' '}'" - self.assertEqual(node.style.quotes, Quotes([('<', '>'), ('{', '}')])) + self.assertEqual(node.style.quotes, Quotes([("<", ">"), ("{", "}")])) def test_quotes_valid_sequence_2_items(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - node.style.quotes = '<', '>' - self.assertEqual(node.style.quotes, Quotes([('<', '>')])) + node.style.quotes = "<", ">" + self.assertEqual(node.style.quotes, Quotes([("<", ">")])) def test_quotes_valid_sequence_4_items(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - node.style.quotes = '<', '>', '{', '}' - self.assertEqual(node.style.quotes, Quotes([('<', '>'), ('{', '}')])) + node.style.quotes = "<", ">", "{", "}" + self.assertEqual(node.style.quotes, Quotes([("<", ">"), ("{", "}")])) def test_quotes_valid_list_1_pair(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - node.style.quotes = [('<', '>')] - self.assertEqual(node.style.quotes, Quotes([('<', '>')])) + node.style.quotes = [("<", ">")] + self.assertEqual(node.style.quotes, Quotes([("<", ">")])) def test_quotes_valid_list_2_pairs(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - node.style.quotes = [('<', '>'), ('{', '}')] - self.assertEqual(node.style.quotes, Quotes([('<', '>'), ('{', '}')])) + node.style.quotes = [("<", ">"), ("{", "}")] + self.assertEqual(node.style.quotes, Quotes([("<", ">"), ("{", "}")])) def test_quotes_valid_str(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - node.style.quotes = [('<', '>'), ('{', '}')] + node.style.quotes = [("<", ">"), ("{", "}")] self.assertEqual(str(node.style), "quotes: '<' '>' '{' '}'") def test_quotes_invalid_empty(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None with self.assertRaises(ValueError): - node.style.quotes = '' + node.style.quotes = "" with self.assertRaises(ValueError): node.style.quotes = [] @@ -986,76 +1028,80 @@ def test_quotes_invalid_empty(self): node.style.quotes = [()] def test_quotes_invalid_1_item(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None with self.assertRaises(ValueError): node.style.quotes = '">"' with self.assertRaises(ValueError): - node.style.quotes = '>' + node.style.quotes = ">" with self.assertRaises(ValueError): - node.style.quotes = '>', + node.style.quotes = (">",) with self.assertRaises(ValueError): - node.style.quotes = ['>'] + node.style.quotes = [">"] with self.assertRaises(ValueError): - node.style.quotes = [('>')] + node.style.quotes = [(">")] ############################################################################## # Outline shorthand ############################################################################## def test_shorthand_valid_outline_property_initial_values(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - self.assertEqual(str(node.style.outline), '') + self.assertEqual(str(node.style.outline), "") def test_shorthand_valid_outline_subproperties_set_shorthand_property(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None node.style.outline_color = "black" node.style.outline_style = "solid" node.style.outline_width = "thick" - self.assertEqual(str(node.style.outline), 'rgba(0, 0, 0, 1.0) solid thick') - self.assertEqual(str(node.style), - "outline-color: rgba(0, 0, 0, 1.0); outline-style: solid; outline-width: thick") + self.assertEqual(str(node.style.outline), "rgba(0, 0, 0, 1.0) solid thick") + self.assertEqual( + str(node.style), + "outline-color: rgba(0, 0, 0, 1.0); outline-style: solid; outline-width: thick", + ) def test_shorthand_valid_outline_property_str_sets_shorthand_subproperties(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None node.style.outline = "black solid thick" - self.assertEqual(str(node.style.outline_color), 'rgba(0, 0, 0, 1.0)') - self.assertEqual(str(node.style.outline_style), 'solid') - self.assertEqual(str(node.style.outline_width), 'thick') + self.assertEqual(str(node.style.outline_color), "rgba(0, 0, 0, 1.0)") + self.assertEqual(str(node.style.outline_style), "solid") + self.assertEqual(str(node.style.outline_width), "thick") def test_shorthand_valid_outline_property_list_sets_shorthand_subproperties(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None node.style.outline = "black", "solid", "thick" - self.assertEqual(str(node.style.outline_color), 'rgba(0, 0, 0, 1.0)') - self.assertEqual(str(node.style.outline_style), 'solid') - self.assertEqual(str(node.style.outline_width), 'thick') + self.assertEqual(str(node.style.outline_color), "rgba(0, 0, 0, 1.0)") + self.assertEqual(str(node.style.outline_style), "solid") + self.assertEqual(str(node.style.outline_width), "thick") def test_shorthand_valid_outline_property_resets(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None node.style.outline_color = "black" node.style.outline_style = "solid" node.style.outline_width = "thick" - self.assertEqual(str(node.style.outline), 'rgba(0, 0, 0, 1.0) solid thick') - self.assertEqual(str(node.style), - "outline-color: rgba(0, 0, 0, 1.0); outline-style: solid; outline-width: thick") + self.assertEqual(str(node.style.outline), "rgba(0, 0, 0, 1.0) solid thick") + self.assertEqual( + str(node.style), + "outline-color: rgba(0, 0, 0, 1.0); outline-style: solid; outline-width: thick", + ) # This should reset all other properties to their initial values node.style.outline = "black" @@ -1064,11 +1110,11 @@ def test_shorthand_valid_outline_property_resets(self): self.assertEqual(node.style.outline_style, None) self.assertEqual(node.style.outline_width, "medium") - self.assertEqual(str(node.style.outline), 'rgba(0, 0, 0, 1.0)') + self.assertEqual(str(node.style.outline), "rgba(0, 0, 0, 1.0)") self.assertEqual(str(node.style), "outline-color: rgba(0, 0, 0, 1.0)") def test_shorthand_valid_outline_property_delete(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None # This should reset all other properties to their initial values @@ -1080,13 +1126,13 @@ def test_shorthand_valid_outline_property_delete(self): # This should reset all properties to their initial values del node.style.outline - self.assertEqual(node.style.outline, '') - self.assertEqual(str(node.style.outline_color), 'invert') + self.assertEqual(node.style.outline, "") + self.assertEqual(str(node.style.outline_color), "invert") self.assertEqual(node.style.outline_style, None) self.assertEqual(node.style.outline_width, "medium") def test_shorthand_invalid_outline_property_values(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None with self.assertRaises(ValueError): @@ -1099,144 +1145,161 @@ def test_shorthand_invalid_outline_property_values(self): # Border shorthands ############################################################################## def test_border_shorthands_valid_initial_values(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - for property_name in ['border', 'border_bottom', 'border_left', 'border_right', 'border_top']: - self.assertEqual(str(getattr(node.style, property_name)), '') + for property_name in [ + "border", + "border_bottom", + "border_left", + "border_right", + "border_top", + ]: + self.assertEqual(str(getattr(node.style, property_name)), "") def test_border_shorthands_valid_set_subproperties_get_shorthand_property(self): - for direction in ['bottom', 'left', 'right', 'top']: - node = TestNode(style=CSS()) + for direction in ["bottom", "left", "right", "top"]: + node = ExampleNode(style=CSS()) node.layout.dirty = None - setattr(node.style, 'border_{direction}_width'.format(direction=direction), 'thick') - setattr(node.style, 'border_{direction}_style'.format(direction=direction), 'solid') - setattr(node.style, 'border_{direction}_color'.format(direction=direction), 'black') + setattr(node.style, f"border_{direction}_width", "thick") + setattr(node.style, f"border_{direction}_style", "solid") + setattr(node.style, f"border_{direction}_color", "black") - shorthand = 'border_{direction}'.format(direction=direction) - self.assertEqual(str(getattr(node.style, shorthand)), 'thick solid rgba(0, 0, 0, 1.0)') - self.assertEqual(str(node.style), - "border-{direction}-color: rgba(0, 0, 0, 1.0); " - "border-{direction}-style: solid; " - "border-{direction}-width: thick" - "".format(direction=direction)) + shorthand = f"border_{direction}" + self.assertEqual( + str(getattr(node.style, shorthand)), "thick solid rgba(0, 0, 0, 1.0)" + ) + self.assertEqual( + str(node.style), + "border-{direction}-color: rgba(0, 0, 0, 1.0); " + "border-{direction}-style: solid; " + "border-{direction}-width: thick" + "".format(direction=direction), + ) def test_border_shorthands_valid_property_str_sets_shorthand_subproperties(self): - for direction in ['bottom', 'left', 'right', 'top']: - node = TestNode(style=CSS()) + for direction in ["bottom", "left", "right", "top"]: + node = ExampleNode(style=CSS()) node.layout.dirty = None - setattr(node.style, 'border_' + direction, 'solid thick black') + setattr(node.style, "border_" + direction, "solid thick black") self.assertEqual( - str(getattr(node.style, 'border_{direction}_color'.format(direction=direction))), - 'rgba(0, 0, 0, 1.0)' + str(getattr(node.style, f"border_{direction}_color")), + "rgba(0, 0, 0, 1.0)", ) self.assertEqual( - str(getattr(node.style, 'border_{direction}_style'.format(direction=direction))), - 'solid' + str(getattr(node.style, f"border_{direction}_style")), "solid" ) self.assertEqual( - str(getattr(node.style, 'border_{direction}_width'.format(direction=direction))), - 'thick' + str(getattr(node.style, f"border_{direction}_width")), "thick" ) def test_border_shorthands_valid_property_tuple_sets_shorthand_subproperties(self): - for direction in ['bottom', 'left', 'right', 'top']: - node = TestNode(style=CSS()) + for direction in ["bottom", "left", "right", "top"]: + node = ExampleNode(style=CSS()) node.layout.dirty = None - setattr(node.style, 'border_' + direction, ('solid', 'thick', 'black')) + setattr(node.style, "border_" + direction, ("solid", "thick", "black")) self.assertEqual( - str(getattr(node.style, 'border_{direction}_color'.format(direction=direction))), - 'rgba(0, 0, 0, 1.0)' + str(getattr(node.style, f"border_{direction}_color")), + "rgba(0, 0, 0, 1.0)", ) self.assertEqual( - str(getattr(node.style, 'border_{direction}_style'.format(direction=direction))), - 'solid' + str(getattr(node.style, f"border_{direction}_style")), "solid" ) self.assertEqual( - str(getattr(node.style, 'border_{direction}_width'.format(direction=direction))), - 'thick' + str(getattr(node.style, f"border_{direction}_width")), "thick" ) def test_border_shorthand_valid(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - node.style.border = ('solid', 'thick', 'black') + node.style.border = ("solid", "thick", "black") self.assertEqual( str(node.style), - ('border-bottom-color: rgba(0, 0, 0, 1.0); ' - 'border-bottom-style: solid; ' - 'border-bottom-width: thick; ' - 'border-left-color: rgba(0, 0, 0, 1.0); ' - 'border-left-style: solid; ' - 'border-left-width: thick; ' - 'border-right-color: rgba(0, 0, 0, 1.0); ' - 'border-right-style: solid; ' - 'border-right-width: thick; ' - 'border-top-color: rgba(0, 0, 0, 1.0); ' - 'border-top-style: solid; ' - 'border-top-width: thick') + ( + "border-bottom-color: rgba(0, 0, 0, 1.0); " + "border-bottom-style: solid; " + "border-bottom-width: thick; " + "border-left-color: rgba(0, 0, 0, 1.0); " + "border-left-style: solid; " + "border-left-width: thick; " + "border-right-color: rgba(0, 0, 0, 1.0); " + "border-right-style: solid; " + "border-right-width: thick; " + "border-top-color: rgba(0, 0, 0, 1.0); " + "border-top-style: solid; " + "border-top-width: thick" + ), ) def test_shorthand_valid_border_property_resets(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None node.style.border_color = "black" node.style.border_style = "solid" node.style.border_width = "thick" - self.assertEqual(str(node.style.border_color), '(rgba(0, 0, 0, 1.0), ' - 'rgba(0, 0, 0, 1.0), ' - 'rgba(0, 0, 0, 1.0), ' - 'rgba(0, 0, 0, 1.0))') - self.assertEqual(node.style.border_style, ('solid', 'solid', 'solid', 'solid')) - self.assertEqual(node.style.border_width, ('thick', 'thick', 'thick', 'thick')) + self.assertEqual( + str(node.style.border_color), + "(rgba(0, 0, 0, 1.0), " + "rgba(0, 0, 0, 1.0), " + "rgba(0, 0, 0, 1.0), " + "rgba(0, 0, 0, 1.0))", + ) + self.assertEqual(node.style.border_style, ("solid", "solid", "solid", "solid")) + self.assertEqual(node.style.border_width, ("thick", "thick", "thick", "thick")) # This should reset all other properties to their initial values node.style.border = "red" - self.assertEqual(str(node.style.border_color), '(rgba(255, 0, 0, 1.0), ' - 'rgba(255, 0, 0, 1.0), ' - 'rgba(255, 0, 0, 1.0), ' - 'rgba(255, 0, 0, 1.0))') + self.assertEqual( + str(node.style.border_color), + "(rgba(255, 0, 0, 1.0), " + "rgba(255, 0, 0, 1.0), " + "rgba(255, 0, 0, 1.0), " + "rgba(255, 0, 0, 1.0))", + ) self.assertEqual(node.style.border_style, (None, None, None, None)) - self.assertEqual(str(node.style.border_width), '(0px, 0px, 0px, 0px)') + self.assertEqual(str(node.style.border_width), "(0px, 0px, 0px, 0px)") def test_shorthand_valid_border_property_delete(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None node.style.border = "red" - self.assertEqual(str(node.style.border_color), '(rgba(255, 0, 0, 1.0), ' - 'rgba(255, 0, 0, 1.0), ' - 'rgba(255, 0, 0, 1.0), ' - 'rgba(255, 0, 0, 1.0))') + self.assertEqual( + str(node.style.border_color), + "(rgba(255, 0, 0, 1.0), " + "rgba(255, 0, 0, 1.0), " + "rgba(255, 0, 0, 1.0), " + "rgba(255, 0, 0, 1.0))", + ) self.assertEqual(node.style.border_style, (None, None, None, None)) - self.assertEqual(str(node.style.border_width), '(0px, 0px, 0px, 0px)') + self.assertEqual(str(node.style.border_width), "(0px, 0px, 0px, 0px)") # This should reset all properties to their initial values del node.style.border - self.assertEqual(str(node.style), '') + self.assertEqual(str(node.style), "") def test_border_shorthands_invalid_values(self): - for direction in ['', '_bottom', '_left', '_right', '_top']: - node = TestNode(style=CSS()) + for direction in ["", "_bottom", "_left", "_right", "_top"]: + node = ExampleNode(style=CSS()) node.layout.dirty = None with self.assertRaises(ValueError): - setattr(node.style, 'border' + direction, 'foo bar spam') + setattr(node.style, "border" + direction, "foo bar spam") with self.assertRaises(ValueError): - setattr(node.style, 'border' + direction, ("foo", "bar", "spam")) + setattr(node.style, "border" + direction, ("foo", "bar", "spam")) def test_str(self): - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None node.style.update( @@ -1244,7 +1307,7 @@ def test_str(self): height=20, margin=(30, 40, 50, 60), display=BLOCK, - cursor=['url(some.cursor.uri)', AUTO] + cursor=["url(some.cursor.uri)", AUTO], ) print(str(node.style)) @@ -1258,60 +1321,65 @@ def test_str(self): "margin-left: 60px; " "margin-right: 40px; " "margin-top: 30px; " - "width: 10px" + "width: 10px", ) def test_dict(self): "Style declarations expose a dict-like interface" - node = TestNode(style=CSS()) + node = ExampleNode(style=CSS()) node.layout.dirty = None - node.style.update( - width=10, - height=20, - margin=(30, 40, 50, 60), - display=BLOCK - ) + node.style.update(width=10, height=20, margin=(30, 40, 50, 60), display=BLOCK) self.assertEqual( node.style.keys(), - {'display', 'height', 'margin_bottom', 'margin_left', 'margin_right', 'margin_top', 'width'} + { + "display", + "height", + "margin_bottom", + "margin_left", + "margin_right", + "margin_top", + "width", + }, ) self.assertEqual( sorted(node.style.items()), - sorted([ - ('display', BLOCK), - ('height', 20), - ('margin_bottom', 50), - ('margin_left', 60), - ('margin_right', 40), - ('margin_top', 30), - ('width', 10), - ]) + sorted( + [ + ("display", BLOCK), + ("height", 20), + ("margin_bottom", 50), + ("margin_left", 60), + ("margin_right", 40), + ("margin_top", 30), + ("width", 10), + ] + ), ) # A property can be set, retrieved and cleared using the CSS attribute name - node.style['margin-bottom'] = 10 - self.assertEqual(node.style['margin-bottom'], 10) - del node.style['margin-bottom'] - self.assertEqual(node.style['margin-bottom'], 0) + node.style["margin-bottom"] = 10 + self.assertEqual(node.style["margin-bottom"], 10) + del node.style["margin-bottom"] + self.assertEqual(node.style["margin-bottom"], 0) # A property can be set, retrieved and cleared using the Python attribute name - node.style['margin_bottom'] = 10 - self.assertEqual(node.style['margin_bottom'], 10) - del node.style['margin_bottom'] - self.assertEqual(node.style['margin_bottom'], 0) + node.style["margin_bottom"] = 10 + self.assertEqual(node.style["margin_bottom"], 10) + del node.style["margin_bottom"] + self.assertEqual(node.style["margin_bottom"], 0) # Clearing a valid property isn't an error - del node.style['margin_bottom'] - self.assertEqual(node.style['margin_bottom'], 0) + del node.style["margin_bottom"] + self.assertEqual(node.style["margin_bottom"], 0) # Non-existent properties raise KeyError with self.assertRaises(KeyError): - node.style['no-such-property'] = 'no-such-value' + node.style["no-such-property"] = "no-such-value" with self.assertRaises(KeyError): - node.style['no-such-property'] + node.style["no-such-property"] with self.assertRaises(KeyError): - del node.style['no-such-property'] + del node.style["no-such-property"] diff --git a/tests/test_dimensions.py b/tests/test_dimensions.py index d9d7e8758..db0c050e7 100644 --- a/tests/test_dimensions.py +++ b/tests/test_dimensions.py @@ -2,14 +2,14 @@ from colosseum.dimensions import Box -from .utils import TestNode +from .utils import ExampleNode class SizeTests(TestCase): def setUp(self): self.maxDiff = None - self.node = TestNode() + self.node = ExampleNode() self.node.layout = Box(self.node) # Mark the layout as "in calculation" self.node.layout.dirty = None @@ -177,86 +177,89 @@ class BoxTests(TestCase): def setUp(self): self.maxDiff = None - self.node = TestNode() + self.node = ExampleNode() self.node.layout = Box(self.node) self.node.layout.content_width = 10 self.node.layout.content_height = 16 - self.child1 = TestNode() + self.child1 = ExampleNode() self.child1.layout.content_width = 10 self.child1.layout.content_height = 16 - self.child2 = TestNode() + self.child2 = ExampleNode() - self.grandchild1_1 = TestNode() + self.grandchild1_1 = ExampleNode() self.grandchild1_1.layout.content_width = 10 self.grandchild1_1.layout.content_height = 16 - self.grandchild1_2 = TestNode() + self.grandchild1_2 = ExampleNode() self.node.children = [self.child1, self.child2] self.child1.children = [self.grandchild1_1, self.grandchild1_2] def assertLayout(self, box, expected): actual = {} - if 'origin' in expected: - actual['origin'] = (box._origin_left, box._origin_top) - - if 'size' in expected: - actual['size'] = {} - if 'border' in expected['size']: - actual['size']['border'] = (box.border_box_width, box.border_box_height) - - if 'padding' in expected['size']: - actual['size']['padding'] = (box.padding_box_width, box.padding_box_height) + if "origin" in expected: + actual["origin"] = (box._origin_left, box._origin_top) + + if "size" in expected: + actual["size"] = {} + if "border" in expected["size"]: + actual["size"]["border"] = (box.border_box_width, box.border_box_height) + + if "padding" in expected["size"]: + actual["size"]["padding"] = ( + box.padding_box_width, + box.padding_box_height, + ) - if 'content' in expected['size']: - actual['size']['content'] = (box.content_width, box.content_height) + if "content" in expected["size"]: + actual["size"]["content"] = (box.content_width, box.content_height) - if 'relative' in expected: - actual['relative'] = {} - if 'border' in expected['relative']: - actual['relative']['border'] = ( + if "relative" in expected: + actual["relative"] = {} + if "border" in expected["relative"]: + actual["relative"]["border"] = ( box.border_box_top, box.border_box_right, box.border_box_bottom, box.border_box_left, ) - if 'padding' in expected['relative']: - actual['relative']['padding'] = ( + if "padding" in expected["relative"]: + actual["relative"]["padding"] = ( box.padding_box_top, box.padding_box_right, box.padding_box_bottom, box.padding_box_left, ) - if 'content' in expected['relative']: - actual['relative']['content'] = ( + if "content" in expected["relative"]: + actual["relative"]["content"] = ( box.content_top, box.content_right, box.content_bottom, box.content_left, ) - if 'absolute' in expected: - actual['absolute'] = {} - if 'border' in expected['absolute']: - actual['absolute']['border'] = ( + if "absolute" in expected: + actual["absolute"] = {} + if "border" in expected["absolute"]: + actual["absolute"]["border"] = ( box.absolute_border_box_top, box.absolute_border_box_right, box.absolute_border_box_bottom, box.absolute_border_box_left, ) - if 'padding' in expected['absolute']: - actual['absolute']['padding'] = ( + if "padding" in expected["absolute"]: + actual["absolute"]["padding"] = ( box.absolute_padding_box_top, box.absolute_padding_box_right, box.absolute_padding_box_bottom, box.absolute_padding_box_left, ) - if 'content' in expected['absolute']: - actual['absolute']['content'] = ( + if "content" in expected["absolute"]: + actual["absolute"]["content"] = ( box.absolute_content_top, box.absolute_content_right, box.absolute_content_bottom, @@ -275,23 +278,23 @@ def test_initial(self): self.assertLayout( self.node.layout, { - 'origin': (0, 0), - 'size': { - 'content': (10, 16), - 'padding': (10, 16), - 'border': (10, 16), + "origin": (0, 0), + "size": { + "content": (10, 16), + "padding": (10, 16), + "border": (10, 16), }, - 'relative': { - 'content': (0, 10, 16, 0), - 'padding': (0, 10, 16, 0), - 'border': (0, 10, 16, 0), + "relative": { + "content": (0, 10, 16, 0), + "padding": (0, 10, 16, 0), + "border": (0, 10, 16, 0), }, - 'absolute': { - 'content': (0, 10, 16, 0), - 'padding': (0, 10, 16, 0), - 'border': (0, 10, 16, 0), - } - } + "absolute": { + "content": (0, 10, 16, 0), + "padding": (0, 10, 16, 0), + "border": (0, 10, 16, 0), + }, + }, ) def test_set_top(self): @@ -300,11 +303,11 @@ def test_set_top(self): self.assertLayout( self.node.layout, { - 'origin': (0, 0), - 'size': {'content': (10, 16)}, - 'relative': {'content': (5, 10, 21, 0)}, - 'absolute': {'content': (5, 10, 21, 0)}, - } + "origin": (0, 0), + "size": {"content": (10, 16)}, + "relative": {"content": (5, 10, 21, 0)}, + "absolute": {"content": (5, 10, 21, 0)}, + }, ) # Set the top to a new value @@ -313,11 +316,11 @@ def test_set_top(self): self.assertLayout( self.node.layout, { - 'origin': (0, 0), - 'size': {'content': (10, 16)}, - 'relative': {'content': (7, 10, 23, 0)}, - 'absolute': {'content': (7, 10, 23, 0)}, - } + "origin": (0, 0), + "size": {"content": (10, 16)}, + "relative": {"content": (7, 10, 23, 0)}, + "absolute": {"content": (7, 10, 23, 0)}, + }, ) def test_set_left(self): @@ -326,11 +329,11 @@ def test_set_left(self): self.assertLayout( self.node.layout, { - 'origin': (0, 0), - 'size': {'content': (10, 16)}, - 'relative': {'content': (0, 15, 16, 5)}, - 'absolute': {'content': (0, 15, 16, 5)}, - } + "origin": (0, 0), + "size": {"content": (10, 16)}, + "relative": {"content": (0, 15, 16, 5)}, + "absolute": {"content": (0, 15, 16, 5)}, + }, ) # Set the left to a new value @@ -339,11 +342,11 @@ def test_set_left(self): self.assertLayout( self.node.layout, { - 'origin': (0, 0), - 'size': {'content': (10, 16)}, - 'relative': {'content': (0, 17, 16, 7)}, - 'absolute': {'content': (0, 17, 16, 7)}, - } + "origin": (0, 0), + "size": {"content": (10, 16)}, + "relative": {"content": (0, 17, 16, 7)}, + "absolute": {"content": (0, 17, 16, 7)}, + }, ) def test_set_height(self): @@ -352,11 +355,11 @@ def test_set_height(self): self.assertLayout( self.node.layout, { - 'origin': (0, 0), - 'size': {'content': (10, 5)}, - 'relative': {'content': (0, 10, 5, 0)}, - 'absolute': {'content': (0, 10, 5, 0)}, - } + "origin": (0, 0), + "size": {"content": (10, 5)}, + "relative": {"content": (0, 10, 5, 0)}, + "absolute": {"content": (0, 10, 5, 0)}, + }, ) # Set the height to a new value @@ -365,11 +368,11 @@ def test_set_height(self): self.assertLayout( self.node.layout, { - 'origin': (0, 0), - 'size': {'content': (10, 7)}, - 'relative': {'content': (0, 10, 7, 0)}, - 'absolute': {'content': (0, 10, 7, 0)}, - } + "origin": (0, 0), + "size": {"content": (10, 7)}, + "relative": {"content": (0, 10, 7, 0)}, + "absolute": {"content": (0, 10, 7, 0)}, + }, ) def test_set_width(self): @@ -378,11 +381,11 @@ def test_set_width(self): self.assertLayout( self.node.layout, { - 'origin': (0, 0), - 'size': {'content': (5, 16)}, - 'relative': {'content': (0, 5, 16, 0)}, - 'absolute': {'content': (0, 5, 16, 0)}, - } + "origin": (0, 0), + "size": {"content": (5, 16)}, + "relative": {"content": (0, 5, 16, 0)}, + "absolute": {"content": (0, 5, 16, 0)}, + }, ) # Set the width to a new value @@ -391,11 +394,11 @@ def test_set_width(self): self.assertLayout( self.node.layout, { - 'origin': (0, 0), - 'size': {'content': (7, 16)}, - 'relative': {'content': (0, 7, 16, 0)}, - 'absolute': {'content': (0, 7, 16, 0)}, - } + "origin": (0, 0), + "size": {"content": (7, 16)}, + "relative": {"content": (0, 7, 16, 0)}, + "absolute": {"content": (0, 7, 16, 0)}, + }, ) def test_descendent_offsets(self): @@ -411,31 +414,31 @@ def test_descendent_offsets(self): self.assertLayout( self.node.layout, { - 'origin': (0, 0), - 'size': {'content': (10, 16)}, - 'relative': {'content': (7, 18, 23, 8)}, - 'absolute': {'content': (7, 18, 23, 8)}, - } + "origin": (0, 0), + "size": {"content": (10, 16)}, + "relative": {"content": (7, 18, 23, 8)}, + "absolute": {"content": (7, 18, 23, 8)}, + }, ) self.assertLayout( self.child1.layout, { - 'origin': (8, 7), - 'size': {'content': (10, 16)}, - 'relative': {'content': (9, 20, 25, 10)}, - 'absolute': {'content': (16, 28, 32, 18)}, - } + "origin": (8, 7), + "size": {"content": (10, 16)}, + "relative": {"content": (9, 20, 25, 10)}, + "absolute": {"content": (16, 28, 32, 18)}, + }, ) self.assertLayout( self.grandchild1_1.layout, { - 'origin': (18, 16), - 'size': {'content': (10, 16)}, - 'relative': {'content': (11, 22, 27, 12)}, - 'absolute': {'content': (27, 40, 43, 30)}, - } + "origin": (18, 16), + "size": {"content": (10, 16)}, + "relative": {"content": (11, 22, 27, 12)}, + "absolute": {"content": (27, 40, 43, 30)}, + }, ) # Modify the grandchild position @@ -446,31 +449,31 @@ def test_descendent_offsets(self): self.assertLayout( self.node.layout, { - 'origin': (0, 0), - 'size': {'content': (10, 16)}, - 'relative': {'content': (7, 18, 23, 8)}, - 'absolute': {'content': (7, 18, 23, 8)}, - } + "origin": (0, 0), + "size": {"content": (10, 16)}, + "relative": {"content": (7, 18, 23, 8)}, + "absolute": {"content": (7, 18, 23, 8)}, + }, ) self.assertLayout( self.child1.layout, { - 'origin': (8, 7), - 'size': {'content': (10, 16)}, - 'relative': {'content': (9, 20, 25, 10)}, - 'absolute': {'content': (16, 28, 32, 18)}, - } + "origin": (8, 7), + "size": {"content": (10, 16)}, + "relative": {"content": (9, 20, 25, 10)}, + "absolute": {"content": (16, 28, 32, 18)}, + }, ) self.assertLayout( self.grandchild1_1.layout, { - 'origin': (18, 16), - 'size': {'content': (10, 16)}, - 'relative': {'content': (13, 24, 29, 14)}, - 'absolute': {'content': (29, 42, 45, 32)}, - } + "origin": (18, 16), + "size": {"content": (10, 16)}, + "relative": {"content": (13, 24, 29, 14)}, + "absolute": {"content": (29, 42, 45, 32)}, + }, ) # Modify the child position @@ -481,31 +484,31 @@ def test_descendent_offsets(self): self.assertLayout( self.node.layout, { - 'origin': (0, 0), - 'size': {'content': (10, 16)}, - 'relative': {'content': (7, 18, 23, 8)}, - 'absolute': {'content': (7, 18, 23, 8)}, - } + "origin": (0, 0), + "size": {"content": (10, 16)}, + "relative": {"content": (7, 18, 23, 8)}, + "absolute": {"content": (7, 18, 23, 8)}, + }, ) self.assertLayout( self.child1.layout, { - 'origin': (8, 7), - 'size': {'content': (10, 16)}, - 'relative': {'content': (15, 26, 31, 16)}, - 'absolute': {'content': (22, 34, 38, 24)}, - } + "origin": (8, 7), + "size": {"content": (10, 16)}, + "relative": {"content": (15, 26, 31, 16)}, + "absolute": {"content": (22, 34, 38, 24)}, + }, ) self.assertLayout( self.grandchild1_1.layout, { - 'origin': (24, 22), - 'size': {'content': (10, 16)}, - 'relative': {'content': (13, 24, 29, 14)}, - 'absolute': {'content': (35, 48, 51, 38)}, - } + "origin": (24, 22), + "size": {"content": (10, 16)}, + "relative": {"content": (13, 24, 29, 14)}, + "absolute": {"content": (35, 48, 51, 38)}, + }, ) def test_dirty_handling(self): @@ -549,23 +552,23 @@ def test_margins_and_borders(self): self.assertLayout( self.node.layout, { - 'origin': (200, 100), - 'size': { - 'content': (10, 16), - 'padding': (10, 16), - 'border': (10, 16), + "origin": (200, 100), + "size": { + "content": (10, 16), + "padding": (10, 16), + "border": (10, 16), }, - 'relative': { - 'content': (50, 85, 66, 75), - 'padding': (50, 85, 66, 75), - 'border': (50, 85, 66, 75), + "relative": { + "content": (50, 85, 66, 75), + "padding": (50, 85, 66, 75), + "border": (50, 85, 66, 75), }, - 'absolute': { - 'content': (150, 285, 166, 275), - 'padding': (150, 285, 166, 275), - 'border': (150, 285, 166, 275), + "absolute": { + "content": (150, 285, 166, 275), + "padding": (150, 285, 166, 275), + "border": (150, 285, 166, 275), }, - } + }, ) # Add a margin. @@ -577,24 +580,23 @@ def test_margins_and_borders(self): self.assertLayout( self.node.layout, { - 'origin': (200, 100), - 'size': { - 'content': (10, 16), - 'padding': (10, 16), - 'border': (10, 16), + "origin": (200, 100), + "size": { + "content": (10, 16), + "padding": (10, 16), + "border": (10, 16), }, - 'relative': { - 'content': (50, 85, 66, 75), - 'padding': (50, 85, 66, 75), - 'border': (50, 85, 66, 75), + "relative": { + "content": (50, 85, 66, 75), + "padding": (50, 85, 66, 75), + "border": (50, 85, 66, 75), }, - 'absolute': { - 'content': (150, 285, 166, 275), - 'padding': (150, 285, 166, 275), - 'border': (150, 285, 166, 275), - + "absolute": { + "content": (150, 285, 166, 275), + "padding": (150, 285, 166, 275), + "border": (150, 285, 166, 275), }, - } + }, ) # Add a border. This will push out the margin box. @@ -606,23 +608,23 @@ def test_margins_and_borders(self): self.assertLayout( self.node.layout, { - 'origin': (200, 100), - 'size': { - 'content': (10, 16), - 'padding': (10, 16), - 'border': (24, 28), + "origin": (200, 100), + "size": { + "content": (10, 16), + "padding": (10, 16), + "border": (24, 28), }, - 'relative': { - 'content': (50, 85, 66, 75), - 'padding': (50, 85, 66, 75), - 'border': (45, 91, 73, 67), + "relative": { + "content": (50, 85, 66, 75), + "padding": (50, 85, 66, 75), + "border": (45, 91, 73, 67), }, - 'absolute': { - 'content': (150, 285, 166, 275), - 'padding': (150, 285, 166, 275), - 'border': (145, 291, 173, 267), + "absolute": { + "content": (150, 285, 166, 275), + "padding": (150, 285, 166, 275), + "border": (145, 291, 173, 267), }, - } + }, ) # Add padding. This will push out the margin and border boxes. @@ -634,23 +636,23 @@ def test_margins_and_borders(self): self.assertLayout( self.node.layout, { - 'origin': (200, 100), - 'size': { - 'content': (10, 16), - 'padding': (32, 36), - 'border': (46, 48), + "origin": (200, 100), + "size": { + "content": (10, 16), + "padding": (32, 36), + "border": (46, 48), }, - 'relative': { - 'content': (50, 85, 66, 75), - 'padding': (41, 95, 77, 63), - 'border': (36, 101, 84, 55), + "relative": { + "content": (50, 85, 66, 75), + "padding": (41, 95, 77, 63), + "border": (36, 101, 84, 55), }, - 'absolute': { - 'content': (150, 285, 166, 275), - 'padding': (141, 295, 177, 263), - 'border': (136, 301, 184, 255), + "absolute": { + "content": (150, 285, 166, 275), + "padding": (141, 295, 177, 263), + "border": (136, 301, 184, 255), }, - } + }, ) def test_relative_equalities(self): @@ -678,29 +680,29 @@ def test_relative_equalities(self): self.assertEqual( self.node.layout.content_left + self.node.layout.content_width, - self.node.layout.content_right + self.node.layout.content_right, ) self.assertEqual( self.node.layout.content_top + self.node.layout.content_height, - self.node.layout.content_bottom + self.node.layout.content_bottom, ) self.assertEqual( self.node.layout.padding_box_left + self.node.layout.padding_box_width, - self.node.layout.padding_box_right + self.node.layout.padding_box_right, ) self.assertEqual( self.node.layout.padding_box_top + self.node.layout.padding_box_height, - self.node.layout.padding_box_bottom + self.node.layout.padding_box_bottom, ) self.assertEqual( self.node.layout.border_box_left + self.node.layout.border_box_width, - self.node.layout.border_box_right + self.node.layout.border_box_right, ) self.assertEqual( self.node.layout.border_box_top + self.node.layout.border_box_height, - self.node.layout.border_box_bottom + self.node.layout.border_box_bottom, ) def test_absolute_equalities(self): @@ -728,29 +730,33 @@ def test_absolute_equalities(self): self.assertEqual( self.node.layout.absolute_content_left + self.node.layout.content_width, - self.node.layout.absolute_content_right + self.node.layout.absolute_content_right, ) self.assertEqual( self.node.layout.absolute_content_top + self.node.layout.content_height, - self.node.layout.absolute_content_bottom + self.node.layout.absolute_content_bottom, ) self.assertEqual( - self.node.layout.absolute_padding_box_left + self.node.layout.padding_box_width, - self.node.layout.absolute_padding_box_right + self.node.layout.absolute_padding_box_left + + self.node.layout.padding_box_width, + self.node.layout.absolute_padding_box_right, ) self.assertEqual( - self.node.layout.absolute_padding_box_top + self.node.layout.padding_box_height, - self.node.layout.absolute_padding_box_bottom + self.node.layout.absolute_padding_box_top + + self.node.layout.padding_box_height, + self.node.layout.absolute_padding_box_bottom, ) self.assertEqual( - self.node.layout.absolute_border_box_left + self.node.layout.border_box_width, - self.node.layout.absolute_border_box_right + self.node.layout.absolute_border_box_left + + self.node.layout.border_box_width, + self.node.layout.absolute_border_box_right, ) self.assertEqual( - self.node.layout.absolute_border_box_top + self.node.layout.border_box_height, - self.node.layout.absolute_border_box_bottom + self.node.layout.absolute_border_box_top + + self.node.layout.border_box_height, + self.node.layout.absolute_border_box_bottom, ) def test_collapse_top(self): diff --git a/tests/test_parser.py b/tests/test_parser.py index 0f59c975b..e42053657 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -42,48 +42,48 @@ def assertEqualUnits(self, value, expected): self.assertEqual(actual.val, expected.val) def test_unit_types(self): - self.assertEqualUnits('10ch', 10 * ch) - self.assertEqualUnits('10cm', 10 * cm) - self.assertEqualUnits('10em', 10 * em) - self.assertEqualUnits('10ex', 10 * ex) - self.assertEqualUnits('10in', 10 * inch) - self.assertEqualUnits('10mm', 10 * mm) - self.assertEqualUnits('10pc', 10 * pc) - self.assertEqualUnits('10%', 10 * percent) - self.assertEqualUnits('10pt', 10 * pt) - self.assertEqualUnits('10px', 10 * px) - self.assertEqualUnits('10vh', 10 * vh) - self.assertEqualUnits('10vmax', 10 * vmax) - self.assertEqualUnits('10vmin', 10 * vmin) - self.assertEqualUnits('10vw', 10 * vw) + self.assertEqualUnits("10ch", 10 * ch) + self.assertEqualUnits("10cm", 10 * cm) + self.assertEqualUnits("10em", 10 * em) + self.assertEqualUnits("10ex", 10 * ex) + self.assertEqualUnits("10in", 10 * inch) + self.assertEqualUnits("10mm", 10 * mm) + self.assertEqualUnits("10pc", 10 * pc) + self.assertEqualUnits("10%", 10 * percent) + self.assertEqualUnits("10pt", 10 * pt) + self.assertEqualUnits("10px", 10 * px) + self.assertEqualUnits("10vh", 10 * vh) + self.assertEqualUnits("10vmax", 10 * vmax) + self.assertEqualUnits("10vmin", 10 * vmin) + self.assertEqualUnits("10vw", 10 * vw) def test_unit(self): self.assertEqualUnits(10 * pt, 10 * pt) def test_float(self): - self.assertEqualUnits('10.0pt', 10 * pt) - self.assertEqualUnits('10.0 pt', 10 * pt) + self.assertEqualUnits("10.0pt", 10 * pt) + self.assertEqualUnits("10.0 pt", 10 * pt) def test_int(self): - self.assertEqualUnits('10pt', 10 * pt) - self.assertEqualUnits('10 pt', 10 * pt) + self.assertEqualUnits("10pt", 10 * pt) + self.assertEqualUnits("10 pt", 10 * pt) def test_raw(self): self.assertEqualUnits(10, 10 * px) self.assertEqualUnits(10.0, 10 * px) def test_no_units(self): - self.assertEqualUnits('10', 10 * px) - self.assertEqualUnits('10.0', 10 * px) + self.assertEqualUnits("10", 10 * px) + self.assertEqualUnits("10.0", 10 * px) def test_non_value(self): # A string that isn't a unit declaration with self.assertRaises(ValueError): - parser.units('hello') + parser.units("hello") # Check a value that ends with a valid unit with self.assertRaises(ValueError): - parser.units('church') + parser.units("church") class ParseColorTests(TestCase): @@ -108,111 +108,111 @@ def test_noop(self): self.assertEqualHSL(hsl(1, 0.2, 0.3), hsl(1, 0.2, 0.3)) def test_rgb(self): - self.assertEqualColor('rgb(1,2,3)', rgb(1, 2, 3)) - self.assertEqualColor('rgb(1, 2, 3)', rgb(1, 2, 3)) - self.assertEqualColor('rgb( 1 , 2 , 3)', rgb(1, 2, 3)) + self.assertEqualColor("rgb(1,2,3)", rgb(1, 2, 3)) + self.assertEqualColor("rgb(1, 2, 3)", rgb(1, 2, 3)) + self.assertEqualColor("rgb( 1 , 2 , 3)", rgb(1, 2, 3)) - self.assertEqualColor('#123', rgb(0x11, 0x22, 0x33)) - self.assertEqualColor('#112233', rgb(0x11, 0x22, 0x33)) + self.assertEqualColor("#123", rgb(0x11, 0x22, 0x33)) + self.assertEqualColor("#112233", rgb(0x11, 0x22, 0x33)) with self.assertRaises(ValueError): - parser.color('rgb(10, 20)') + parser.color("rgb(10, 20)") with self.assertRaises(ValueError): - parser.color('rgb(a, 10, 20)') + parser.color("rgb(a, 10, 20)") with self.assertRaises(ValueError): - parser.color('rgb(10, b, 20)') + parser.color("rgb(10, b, 20)") with self.assertRaises(ValueError): - parser.color('rgb(10, 20, c)') + parser.color("rgb(10, 20, c)") with self.assertRaises(ValueError): - parser.color('rgb(10, 20, 30, 0.5)') + parser.color("rgb(10, 20, 30, 0.5)") def test_rgba(self): - self.assertEqualColor('rgba(1,2,3,0.5)', rgb(1, 2, 3, 0.5)) - self.assertEqualColor('rgba(1, 2, 3, 0.5)', rgb(1, 2, 3, 0.5)) - self.assertEqualColor('rgba( 1 , 2 , 3 , 0.5)', rgb(1, 2, 3, 0.5)) + self.assertEqualColor("rgba(1,2,3,0.5)", rgb(1, 2, 3, 0.5)) + self.assertEqualColor("rgba(1, 2, 3, 0.5)", rgb(1, 2, 3, 0.5)) + self.assertEqualColor("rgba( 1 , 2 , 3 , 0.5)", rgb(1, 2, 3, 0.5)) - self.assertEqualColor('#1234', rgb(0x11, 0x22, 0x33, 0.2666)) - self.assertEqualColor('#11223344', rgb(0x11, 0x22, 0x33, 0.2666)) + self.assertEqualColor("#1234", rgb(0x11, 0x22, 0x33, 0.2666)) + self.assertEqualColor("#11223344", rgb(0x11, 0x22, 0x33, 0.2666)) with self.assertRaises(ValueError): - parser.color('rgba(10, 20, 30)') + parser.color("rgba(10, 20, 30)") with self.assertRaises(ValueError): - parser.color('rgba(a, 10, 20, 0.5)') + parser.color("rgba(a, 10, 20, 0.5)") with self.assertRaises(ValueError): - parser.color('rgba(10, b, 20, 0.5)') + parser.color("rgba(10, b, 20, 0.5)") with self.assertRaises(ValueError): - parser.color('rgba(10, 20, c, 0.5)') + parser.color("rgba(10, 20, c, 0.5)") with self.assertRaises(ValueError): - parser.color('rgba(10, 20, 30, c)') + parser.color("rgba(10, 20, 30, c)") with self.assertRaises(ValueError): - parser.color('rgba(10, 20, 30, 0.5, 5)') + parser.color("rgba(10, 20, 30, 0.5, 5)") def test_hsl(self): - self.assertEqualHSL('hsl(1,20%,30%)', hsl(1, 0.2, 0.3)) - self.assertEqualHSL('hsl(1, 20%, 30%)', hsl(1, 0.2, 0.3)) - self.assertEqualHSL('hsl( 1, 20% , 30%)', hsl(1, 0.2, 0.3)) + self.assertEqualHSL("hsl(1,20%,30%)", hsl(1, 0.2, 0.3)) + self.assertEqualHSL("hsl(1, 20%, 30%)", hsl(1, 0.2, 0.3)) + self.assertEqualHSL("hsl( 1, 20% , 30%)", hsl(1, 0.2, 0.3)) with self.assertRaises(ValueError): - parser.color('hsl(1, 20%)') + parser.color("hsl(1, 20%)") with self.assertRaises(ValueError): - parser.color('hsl(a, 20%, 30%)') + parser.color("hsl(a, 20%, 30%)") with self.assertRaises(ValueError): - parser.color('hsl(1, a, 30%)') + parser.color("hsl(1, a, 30%)") with self.assertRaises(ValueError): - parser.color('hsl(1, 20%, a)') + parser.color("hsl(1, 20%, a)") with self.assertRaises(ValueError): - parser.color('hsl(1, 20%, 30%, 0.5)') + parser.color("hsl(1, 20%, 30%, 0.5)") def test_hsla(self): - self.assertEqualHSL('hsla(1,20%,30%,0.5)', hsl(1, 0.2, 0.3, 0.5)) - self.assertEqualHSL('hsla(1, 20%, 30%, 0.5)', hsl(1, 0.2, 0.3, 0.5)) - self.assertEqualHSL('hsla( 1, 20% , 30% , 0.5)', hsl(1, 0.2, 0.3, 0.5)) + self.assertEqualHSL("hsla(1,20%,30%,0.5)", hsl(1, 0.2, 0.3, 0.5)) + self.assertEqualHSL("hsla(1, 20%, 30%, 0.5)", hsl(1, 0.2, 0.3, 0.5)) + self.assertEqualHSL("hsla( 1, 20% , 30% , 0.5)", hsl(1, 0.2, 0.3, 0.5)) with self.assertRaises(ValueError): - parser.color('hsla(1, 20%, 30%)') + parser.color("hsla(1, 20%, 30%)") with self.assertRaises(ValueError): - parser.color('hsla(a, 20%, 30%, 0.5)') + parser.color("hsla(a, 20%, 30%, 0.5)") with self.assertRaises(ValueError): - parser.color('hsla(1, a, 30%, 0.5)') + parser.color("hsla(1, a, 30%, 0.5)") with self.assertRaises(ValueError): - parser.color('hsla(1, 20%, a, 0.5)') + parser.color("hsla(1, 20%, a, 0.5)") with self.assertRaises(ValueError): - parser.color('hsla(1, 20%, 30%, a)') + parser.color("hsla(1, 20%, 30%, a)") with self.assertRaises(ValueError): - parser.color('hsla(1, 20%, 30%, 0.5, 5)') + parser.color("hsla(1, 20%, 30%, 0.5, 5)") def test_named_color(self): - self.assertEqualColor('Red', rgb(0xFF, 0, 0)) - self.assertEqualColor('RED', rgb(0xFF, 0, 0)) - self.assertEqualColor('red', rgb(0xFF, 0, 0)) - self.assertEqualColor('rEd', rgb(0xFF, 0, 0)) + self.assertEqualColor("Red", rgb(0xFF, 0, 0)) + self.assertEqualColor("RED", rgb(0xFF, 0, 0)) + self.assertEqualColor("red", rgb(0xFF, 0, 0)) + self.assertEqualColor("rEd", rgb(0xFF, 0, 0)) - self.assertEqualColor('CornflowerBlue', rgb(0x64, 0x95, 0xED)) - self.assertEqualColor('cornflowerblue', rgb(0x64, 0x95, 0xED)) - self.assertEqualColor('CORNFLOWERBLUE', rgb(0x64, 0x95, 0xED)) - self.assertEqualColor('Cornflowerblue', rgb(0x64, 0x95, 0xED)) - self.assertEqualColor('CoRnFlOwErBlUe', rgb(0x64, 0x95, 0xED)) + self.assertEqualColor("CornflowerBlue", rgb(0x64, 0x95, 0xED)) + self.assertEqualColor("cornflowerblue", rgb(0x64, 0x95, 0xED)) + self.assertEqualColor("CORNFLOWERBLUE", rgb(0x64, 0x95, 0xED)) + self.assertEqualColor("Cornflowerblue", rgb(0x64, 0x95, 0xED)) + self.assertEqualColor("CoRnFlOwErBlUe", rgb(0x64, 0x95, 0xED)) with self.assertRaises(ValueError): - parser.color('not a color') + parser.color("not a color") class ParseRectTests(TestCase): @@ -221,98 +221,100 @@ def test_rect_valid_commas(self): expected_rect = Rect(1 * px, 3 * px, 2 * px, 4 * px) # Comma separated without units - self.assertEqual(parser.rect('rect(1, 3, 2, 4)'), expected_rect) + self.assertEqual(parser.rect("rect(1, 3, 2, 4)"), expected_rect) # Comma separated with units - self.assertEqual(parser.rect('rect(1px, 3px, 2px, 4px)'), expected_rect) + self.assertEqual(parser.rect("rect(1px, 3px, 2px, 4px)"), expected_rect) # Comma separated with units and extra spaces - self.assertEqual(parser.rect(' rect( 1px , 3px , 2px, 4px ) '), expected_rect) + self.assertEqual( + parser.rect(" rect( 1px , 3px , 2px, 4px ) "), expected_rect + ) def test_rect_valid_spaces(self): expected_rect = Rect(1 * px, 3 * px, 2 * px, 4 * px) # Space separated without units - self.assertEqual(parser.rect('rect(1 3 2 4)'), expected_rect) + self.assertEqual(parser.rect("rect(1 3 2 4)"), expected_rect) # Space separated wit units - self.assertEqual(parser.rect('rect(1px 3px 2px 4px)'), expected_rect) + self.assertEqual(parser.rect("rect(1px 3px 2px 4px)"), expected_rect) # Space separated with units and extra spaces - self.assertEqual(parser.rect(' rect( 1px 3px 2px 4px ) '), expected_rect) + self.assertEqual(parser.rect(" rect( 1px 3px 2px 4px ) "), expected_rect) def test_rect_invalid_mix_commas_spaces(self): # Mix of commas and spaces with self.assertRaises(ValueError): - parser.rect('rect(1px, 3px, 2px 4px)') + parser.rect("rect(1px, 3px, 2px 4px)") with self.assertRaises(ValueError): - parser.rect('rect(a b, c d)') + parser.rect("rect(a b, c d)") def test_rect_invalid_number_of_arguments_empty(self): with self.assertRaises(ValueError): - parser.rect('rect()') + parser.rect("rect()") def test_rect_invalid_number_of_arguments_1_arg(self): with self.assertRaises(ValueError): - parser.rect('rect(1px)') + parser.rect("rect(1px)") def test_rect_invalid_number_of_arguments_2_args(self): with self.assertRaises(ValueError): - parser.rect('rect(1px, 3px)') + parser.rect("rect(1px, 3px)") def test_rect_invalid_number_of_arguments_3_args(self): with self.assertRaises(ValueError): - parser.rect('rect(1px, 3px, 2px)') + parser.rect("rect(1px, 3px, 2px)") def test_rect_invalid_number_of_arguments_5_args(self): with self.assertRaises(ValueError): - parser.rect('rect(1px, 3px, 2px, 5px, 7px)') + parser.rect("rect(1px, 3px, 2px, 5px, 7px)") def test_rect_invalid_missing_parens(self): # Missing parens with self.assertRaises(ValueError): - parser.rect('rect a b c d)') + parser.rect("rect a b c d)") with self.assertRaises(ValueError): - parser.rect('rect(a b c d') + parser.rect("rect(a b c d") with self.assertRaises(ValueError): - parser.rect('rect a b c d') + parser.rect("rect a b c d") def test_rect_invalid_extra_parens(self): # Missing parens with self.assertRaises(ValueError): - parser.rect('rect((a b c d)') + parser.rect("rect((a b c d)") # Missing parens with self.assertRaises(ValueError): - parser.rect('rect(a b c d))') + parser.rect("rect(a b c d))") def test_rect_invalid_missing_rect(self): # Other values with self.assertRaises(ValueError): - parser.rect('(1px, 3px, 2px, 4px)') + parser.rect("(1px, 3px, 2px, 4px)") with self.assertRaises(ValueError): - parser.rect('1px, 3px, 2px, 4px') + parser.rect("1px, 3px, 2px, 4px") with self.assertRaises(ValueError): - parser.rect('1px 3px 2px 4px') + parser.rect("1px 3px 2px 4px") with self.assertRaises(ValueError): - parser.rect('(1px 3px 2px 4px)') + parser.rect("(1px 3px 2px 4px)") def test_rect_invalid_units(self): with self.assertRaises(ValueError): - parser.rect('rect(a, b, c, d)') + parser.rect("rect(a, b, c, d)") def test_rect_invalid_case(self): with self.assertRaises(ValueError): - parser.rect('rect(1PX, 3px, 2px, 4px)') + parser.rect("rect(1PX, 3px, 2px, 4px)") with self.assertRaises(ValueError): - parser.rect('RECT(1px, 3px, 2px, 4px)') + parser.rect("RECT(1px, 3px, 2px, 4px)") class ParseQuotesTests(TestCase): @@ -331,33 +333,33 @@ def test_quotes_valid_string_4_items(self): def test_quotes_valid_sequence_2_items(self): expected_output = "'«' '»'" - value = ['«', '»'] + value = ["«", "»"] quotes = parser.quotes(value) self.assertEqual(str(quotes), expected_output) - value = ('«', '»') + value = ("«", "»") quotes = parser.quotes(value) self.assertEqual(str(quotes), expected_output) def test_quotes_valid_sequence_4_items(self): expected_output = "'«' '»' '(' ')'" - value = ['«', '»', '(', ')'] + value = ["«", "»", "(", ")"] quotes = parser.quotes(value) self.assertEqual(str(quotes), expected_output) - value = ('«', '»', '(', ')') + value = ("«", "»", "(", ")") quotes = parser.quotes(value) self.assertEqual(str(quotes), expected_output) def test_quotes_valid_list_1_pair(self): - value = [('«', '»')] + value = [("«", "»")] expected_output = "'«' '»'" quotes = parser.quotes(value) self.assertEqual(str(quotes), expected_output) def test_quotes_valid_list_2_pairs(self): - value = [('«', '»'), ('(', ')')] + value = [("«", "»"), ("(", ")")] expected_output = "'«' '»' '(' ')'" quotes = parser.quotes(value) self.assertEqual(str(quotes), expected_output) @@ -365,7 +367,7 @@ def test_quotes_valid_list_2_pairs(self): # Invalid cases def test_quotes_invalid_string_empty_item(self): with self.assertRaises(ValueError): - parser.quotes('') + parser.quotes("") def test_quotes_invalid_string_empty_pair(self): with self.assertRaises(ValueError): @@ -373,7 +375,7 @@ def test_quotes_invalid_string_empty_pair(self): def test_quotes_invalid_list_empty_pair(self): with self.assertRaises(ValueError): - parser.quotes([('', '')]) + parser.quotes([("", "")]) def test_quotes_invalid_string_1_item(self): with self.assertRaises(ValueError): @@ -393,11 +395,11 @@ def test_quotes_invalid_string_3_item_incomplete_quotes(self): def test_quotes_invalid_string_2_items_no_quotes(self): with self.assertRaises(ValueError): - parser.quotes('< >') + parser.quotes("< >") def test_quotes_invalid_string_4_items_no_quotes(self): with self.assertRaises(ValueError): - parser.quotes('< > { }') + parser.quotes("< > { }") class ParseOutlineTests(TestCase): @@ -405,63 +407,63 @@ class ParseOutlineTests(TestCase): # Valid cases def test_parse_outline_shorthand_valid_str_3_parts(self): expected_output = { - 'outline_style': 'solid', - 'outline_color': color('black'), - 'outline_width': 'thick', + "outline_style": "solid", + "outline_color": color("black"), + "outline_width": "thick", } - perms = permutations(['black', 'solid', 'thick'], 3) + perms = permutations(["black", "solid", "thick"], 3) for perm in perms: - value = ' '.join(perm) + value = " ".join(perm) output = outline(value) self.assertEqual(output, expected_output) def test_parse_outline_shorthand_valid_str_2_parts(self): - black = color('black') + black = color("black") expected_outputs = { - ('black', 'solid'): {'outline_color': black, 'outline_style': 'solid'}, - ('black', 'thick'): {'outline_color': black, 'outline_width': 'thick'}, - ('solid', 'thick'): {'outline_style': 'solid', 'outline_width': 'thick'}, + ("black", "solid"): {"outline_color": black, "outline_style": "solid"}, + ("black", "thick"): {"outline_color": black, "outline_width": "thick"}, + ("solid", "thick"): {"outline_style": "solid", "outline_width": "thick"}, } - perms = permutations(['black', 'solid', 'thick'], 2) + perms = permutations(["black", "solid", "thick"], 2) for perm in perms: expected_output = expected_outputs[tuple(sorted(perm))] - value = ' '.join(perm) + value = " ".join(perm) output = outline(value) self.assertEqual(output, expected_output) def test_parse_outline_shorthand_valid_str_1_part(self): expected_outputs = { - 'black': {'outline_color': color('black')}, - 'solid': {'outline_style': 'solid'}, - 'thick': {'outline_width': 'thick'}, + "black": {"outline_color": color("black")}, + "solid": {"outline_style": "solid"}, + "thick": {"outline_width": "thick"}, } - perms = permutations(['black', 'solid', 'thick'], 1) + perms = permutations(["black", "solid", "thick"], 1) for perm in perms: - value = ' '.join(perm) + value = " ".join(perm) expected_output = expected_outputs[value] output = outline(value) self.assertEqual(output, expected_output) def test_parse_outline_shorthand_valid_list_3_parts(self): expected_output = { - 'outline_style': 'solid', - 'outline_color': color('black'), - 'outline_width': 'thick', + "outline_style": "solid", + "outline_color": color("black"), + "outline_width": "thick", } - perms = permutations(['black', 'solid', 'thick'], 3) + perms = permutations(["black", "solid", "thick"], 3) for perm in perms: value = perm output = outline(value) self.assertEqual(output, expected_output) def test_parse_outline_shorthand_valid_list_2_parts(self): - black = color('black') + black = color("black") expected_outputs = { - ('black', 'solid'): {'outline_color': black, 'outline_style': 'solid'}, - ('black', 'thick'): {'outline_color': black, 'outline_width': 'thick'}, - ('solid', 'thick'): {'outline_style': 'solid', 'outline_width': 'thick'}, + ("black", "solid"): {"outline_color": black, "outline_style": "solid"}, + ("black", "thick"): {"outline_color": black, "outline_width": "thick"}, + ("solid", "thick"): {"outline_style": "solid", "outline_width": "thick"}, } - perms = permutations(['black', 'solid', 'thick'], 2) + perms = permutations(["black", "solid", "thick"], 2) for perm in perms: expected_output = expected_outputs[tuple(sorted(perm))] value = perm @@ -470,11 +472,11 @@ def test_parse_outline_shorthand_valid_list_2_parts(self): def test_parse_outline_shorthand_valid_list_1_part(self): expected_outputs = { - 'black': {'outline_color': color('black')}, - 'solid': {'outline_style': 'solid'}, - 'thick': {'outline_width': 'thick'}, + "black": {"outline_color": color("black")}, + "solid": {"outline_style": "solid"}, + "thick": {"outline_width": "thick"}, } - perms = permutations(['black', 'solid', 'thick'], 1) + perms = permutations(["black", "solid", "thick"], 1) for perm in perms: value = perm expected_output = expected_outputs[value[0]] @@ -484,14 +486,14 @@ def test_parse_outline_shorthand_valid_list_1_part(self): # Invalid cases def test_parse_outline_shorthand_invalid_empty(self): with self.assertRaises(ValueError): - outline('') + outline("") with self.assertRaises(ValueError): outline([]) def test_parse_outline_shorthand_invalid_value(self): with self.assertRaises(ValueError): - outline('foobar') + outline("foobar") with self.assertRaises(ValueError): outline(2) @@ -501,129 +503,151 @@ def test_parse_outline_shorthand_invalid_value(self): def test_parse_outline_shorthand_invalid_duplicates_color(self): with self.assertRaises(ValueError): - outline('black black') + outline("black black") with self.assertRaises(ValueError): - outline('black black black') + outline("black black black") with self.assertRaises(ValueError): - outline('black red blue') + outline("black red blue") def test_parse_outline_shorthand_invalid_duplicates_style(self): with self.assertRaises(ValueError): - outline('solid solid') + outline("solid solid") with self.assertRaises(ValueError): - outline('solid solid solid') + outline("solid solid solid") def test_parse_outline_shorthand_invalid_duplicates_width(self): with self.assertRaises(ValueError): - outline('thick thick') + outline("thick thick") with self.assertRaises(ValueError): - outline('thick thick thick') + outline("thick thick thick") def test_parse_outline_shorthand_invalid_too_many_items(self): with self.assertRaises(ValueError): - outline('black solid thick black') + outline("black solid thick black") with self.assertRaises(ValueError): - outline('black solid thick black thick') + outline("black solid thick black thick") class ParseBorderTests(TestCase): # Valid cases def test_parse_border_shorthand_valid_str_3_parts(self): - for direction, func in {'bottom_': border_bottom, - 'left_': border_left, - 'right_': border_right, - 'top_': border_top, - '': border}.items(): + for direction, func in { + "bottom_": border_bottom, + "left_": border_left, + "right_": border_right, + "top_": border_top, + "": border, + }.items(): expected_output = { - 'border_{direction}width'.format(direction=direction): 'thick', - 'border_{direction}style'.format(direction=direction): 'solid', - 'border_{direction}color'.format(direction=direction): color('black'), + f"border_{direction}width": "thick", + f"border_{direction}style": "solid", + f"border_{direction}color": color("black"), } - perms = permutations(['black', 'solid', 'thick'], 3) + perms = permutations(["black", "solid", "thick"], 3) for perm in perms: - value = ' '.join(perm) + value = " ".join(perm) output = func(value) self.assertEqual(output, expected_output) def test_parse_border_shorthand_valid_str_2_parts(self): - black = color('black') - for direction, func in {'bottom_': border_bottom, - 'left_': border_left, - 'right_': border_right, - 'top_': border_top, - '': border}.items(): + black = color("black") + for direction, func in { + "bottom_": border_bottom, + "left_": border_left, + "right_": border_right, + "top_": border_top, + "": border, + }.items(): expected_outputs = { - ('black', 'solid'): {'border_{direction}color'.format(direction=direction): black, - 'border_{direction}style'.format(direction=direction): 'solid'}, - ('black', 'thick'): {'border_{direction}color'.format(direction=direction): black, - 'border_{direction}width'.format(direction=direction): 'thick'}, - ('solid', 'thick'): {'border_{direction}style'.format(direction=direction): 'solid', - 'border_{direction}width'.format(direction=direction): 'thick'}, + ("black", "solid"): { + f"border_{direction}color": black, + f"border_{direction}style": "solid", + }, + ("black", "thick"): { + f"border_{direction}color": black, + f"border_{direction}width": "thick", + }, + ("solid", "thick"): { + f"border_{direction}style": "solid", + f"border_{direction}width": "thick", + }, } - perms = permutations(['black', 'solid', 'thick'], 2) + perms = permutations(["black", "solid", "thick"], 2) for perm in perms: expected_output = expected_outputs[tuple(sorted(perm))] - value = ' '.join(perm) + value = " ".join(perm) output = func(value) self.assertEqual(output, expected_output) def test_parse_border_shorthand_valid_str_1_part(self): - for direction, func in {'bottom_': border_bottom, - 'left_': border_left, - 'right_': border_right, - 'top_': border_top, - '': border}.items(): + for direction, func in { + "bottom_": border_bottom, + "left_": border_left, + "right_": border_right, + "top_": border_top, + "": border, + }.items(): expected_outputs = { - 'black': {'border_{direction}color'.format(direction=direction): color('black')}, - 'solid': {'border_{direction}style'.format(direction=direction): 'solid'}, - 'thick': {'border_{direction}width'.format(direction=direction): 'thick'}, + "black": {f"border_{direction}color": color("black")}, + "solid": {f"border_{direction}style": "solid"}, + "thick": {f"border_{direction}width": "thick"}, } - perms = permutations(['black', 'solid', 'thick'], 1) + perms = permutations(["black", "solid", "thick"], 1) for perm in perms: - value = ' '.join(perm) + value = " ".join(perm) expected_output = expected_outputs[value] output = func(value) self.assertEqual(output, expected_output) def test_parse_border_shorthand_valid_list_3_parts(self): - for direction, func in {'bottom_': border_bottom, - 'left_': border_left, - 'right_': border_right, - 'top_': border_top, - '': border}.items(): + for direction, func in { + "bottom_": border_bottom, + "left_": border_left, + "right_": border_right, + "top_": border_top, + "": border, + }.items(): expected_output = { - 'border_{direction}style'.format(direction=direction): 'solid', - 'border_{direction}color'.format(direction=direction): color('black'), - 'border_{direction}width'.format(direction=direction): 'thick', + f"border_{direction}style": "solid", + f"border_{direction}color": color("black"), + f"border_{direction}width": "thick", } - perms = permutations(['black', 'solid', 'thick'], 3) + perms = permutations(["black", "solid", "thick"], 3) for perm in perms: value = perm output = func(value) self.assertEqual(output, expected_output) def test_parse_border_shorthand_valid_list_2_parts(self): - black = color('black') - for direction, func in {'bottom_': border_bottom, - 'left_': border_left, - 'right_': border_right, - 'top_': border_top, - '': border}.items(): + black = color("black") + for direction, func in { + "bottom_": border_bottom, + "left_": border_left, + "right_": border_right, + "top_": border_top, + "": border, + }.items(): expected_outputs = { - ('black', 'solid'): {'border_{direction}color'.format(direction=direction): black, - 'border_{direction}style'.format(direction=direction): 'solid'}, - ('black', 'thick'): {'border_{direction}color'.format(direction=direction): black, - 'border_{direction}width'.format(direction=direction): 'thick'}, - ('solid', 'thick'): {'border_{direction}style'.format(direction=direction): 'solid', - 'border_{direction}width'.format(direction=direction): 'thick'}, + ("black", "solid"): { + f"border_{direction}color": black, + f"border_{direction}style": "solid", + }, + ("black", "thick"): { + f"border_{direction}color": black, + f"border_{direction}width": "thick", + }, + ("solid", "thick"): { + f"border_{direction}style": "solid", + f"border_{direction}width": "thick", + }, } - perms = permutations(['black', 'solid', 'thick'], 2) + perms = permutations(["black", "solid", "thick"], 2) for perm in perms: expected_output = expected_outputs[tuple(sorted(perm))] value = perm @@ -631,17 +655,19 @@ def test_parse_border_shorthand_valid_list_2_parts(self): self.assertEqual(output, expected_output) def test_parse_border_shorthand_valid_list_1_part(self): - for direction, func in {'bottom_': border_bottom, - 'left_': border_left, - 'right_': border_right, - 'top_': border_top, - '': border}.items(): + for direction, func in { + "bottom_": border_bottom, + "left_": border_left, + "right_": border_right, + "top_": border_top, + "": border, + }.items(): expected_outputs = { - 'black': {'border_{direction}color'.format(direction=direction): color('black')}, - 'solid': {'border_{direction}style'.format(direction=direction): 'solid'}, - 'thick': {'border_{direction}width'.format(direction=direction): 'thick'}, + "black": {f"border_{direction}color": color("black")}, + "solid": {f"border_{direction}style": "solid"}, + "thick": {f"border_{direction}width": "thick"}, } - perms = permutations(['black', 'solid', 'thick'], 1) + perms = permutations(["black", "solid", "thick"], 1) for perm in perms: value = perm expected_output = expected_outputs[value[0]] @@ -652,7 +678,7 @@ def test_parse_border_shorthand_valid_list_1_part(self): def test_parse_border_shorthand_invalid_empty(self): for func in [border, border_bottom, border_left, border_right, border_top]: with self.assertRaises(ValueError): - border('') + border("") with self.assertRaises(ValueError): border([]) @@ -660,7 +686,7 @@ def test_parse_border_shorthand_invalid_empty(self): def test_parse_border_shorthand_invalid_value(self): for func in [border, border_bottom, border_left, border_right, border_top]: with self.assertRaises(ValueError): - border('foobar') + border("foobar") with self.assertRaises(ValueError): border(2) @@ -671,37 +697,37 @@ def test_parse_border_shorthand_invalid_value(self): def test_parse_border_shorthand_invalid_duplicates_color(self): for func in [border, border_bottom, border_left, border_right, border_top]: with self.assertRaises(ValueError): - func('black black') + func("black black") with self.assertRaises(ValueError): - func('black black black') + func("black black black") with self.assertRaises(ValueError): - func('black red blue') + func("black red blue") def test_parse_border_shorthand_invalid_duplicates_style(self): for func in [border, border_bottom, border_left, border_right, border_top]: with self.assertRaises(ValueError): - func('solid solid') + func("solid solid") with self.assertRaises(ValueError): - func('solid solid solid') + func("solid solid solid") def test_parse_border_shorthand_invalid_duplicates_width(self): for func in [border, border_bottom, border_left, border_right, border_top]: with self.assertRaises(ValueError): - func('thick thick') + func("thick thick") with self.assertRaises(ValueError): - func('thick thick thick') + func("thick thick thick") def test_parse_border_shorthand_invalid_too_many_items(self): for func in [border, border_bottom, border_left, border_right, border_top]: with self.assertRaises(ValueError): - func('black solid thick black') + func("black solid thick black") with self.assertRaises(ValueError): - func('black solid thick black thick') + func("black solid thick black thick") class ParseUriTests(TestCase): @@ -739,29 +765,29 @@ def test_url_valid_double_quotes_spaces_url_left_right(self): self.assertEqual(str(url), 'url("some.url")') def test_url_valid_no_quotes_spaces_url_left_right(self): - url = parser.uri('url( some.url )') + url = parser.uri("url( some.url )") self.assertEqual(str(url), 'url("some.url")') def test_url_valid_no_quotes_spaces_url_left(self): - url = parser.uri('url( some.url)') + url = parser.uri("url( some.url)") self.assertEqual(str(url), 'url("some.url")') def test_url_valid_no_quotes_spaces_url_right(self): - url = parser.uri('url(some.url )') + url = parser.uri("url(some.url )") self.assertEqual(str(url), 'url("some.url")') def test_url_valid_no_quotes_url(self): - url = parser.uri('url(some.url)') + url = parser.uri("url(some.url)") self.assertEqual(str(url), 'url("some.url")') def test_url_valid_no_quotes_escaped_chars(self): - url = parser.uri(r'url(some.\(url)') + url = parser.uri(r"url(some.\(url)") self.assertEqual(str(url), r'url("some.\(url")') - url = parser.uri(r'url(some.\)url)') + url = parser.uri(r"url(some.\)url)") self.assertEqual(str(url), r'url("some.\)url")') - url = parser.uri(r'url(some.\ url)') + url = parser.uri(r"url(some.\ url)") self.assertEqual(str(url), r'url("some.\ url")') url = parser.uri(r"url(some.\"url)") @@ -792,14 +818,14 @@ def test_cursor_valid_string_2_items_uri_2(self): def test_cursor_valid_string_2_items_uri_1_option_1(self): for option in CURSOR_OPTIONS: - cursor = parser.cursor("url(some.uri), {option}".format(option=option)) + cursor = parser.cursor(f"url(some.uri), {option}") self.assertIsInstance(cursor, Cursor) self.assertEqual(str(cursor[0]), 'url("some.uri")') self.assertEqual(str(cursor[1]), option) def test_cursor_valid_string_3_items_uri_2_option_1(self): for option in CURSOR_OPTIONS: - cursor = parser.cursor("url(some.uri), url(some.uri2), {option}".format(option=option)) + cursor = parser.cursor(f"url(some.uri), url(some.uri2), {option}") self.assertIsInstance(cursor, Cursor) self.assertEqual(str(cursor[0]), 'url("some.uri")') self.assertEqual(str(cursor[1]), 'url("some.uri2")') @@ -853,37 +879,40 @@ def test_cursor_invalid_order_string_2_items_uri_1_option_1_invalid_option(self) def test_cursor_invalid_order_string_2_items_uri_1_option_1(self): for option in CURSOR_OPTIONS: with self.assertRaises(ValueError): - parser.cursor("{option}, url(some.uri)".format(option=option)) + parser.cursor(f"{option}, url(some.uri)") def test_cursor_invalid_order_string_3_items_uri_2_option_1(self): for option in CURSOR_OPTIONS: with self.assertRaises(ValueError): - parser.cursor("url(some.uri), {option}, url(some.uri)".format(option=option)) + parser.cursor(f"url(some.uri), {option}, url(some.uri)") with self.assertRaises(ValueError): - parser.cursor("{option}, url(some.uri), url(some.uri)".format(option=option)) + parser.cursor(f"{option}, url(some.uri), url(some.uri)") def test_cursor_invalid_order_string_2_items_option_2(self): perms = permutations(CURSOR_OPTIONS, 2) - for (option1, option2) in perms: + for option1, option2 in perms: with self.assertRaises(ValueError): - parser.cursor("{option1}, {option2}".format(option1=option1, option2=option2)) + parser.cursor(f"{option1}, {option2}") def test_cursor_invalid_order_string_3_items_option_3(self): perms = permutations(CURSOR_OPTIONS, 3) - for (option1, option2, option3) in perms: + for option1, option2, option3 in perms: with self.assertRaises(ValueError): - parser.cursor("{option1}, {option2}, {option3}".format(option1=option1, option2=option2, - option3=option3)) + parser.cursor( + "{option1}, {option2}, {option3}".format( + option1=option1, option2=option2, option3=option3 + ) + ) def test_cursor_invalid_order_string_3_items_option_2_uri_1(self): perms = permutations(CURSOR_OPTIONS, 2) - for (option1, option2) in perms: + for option1, option2 in perms: with self.assertRaises(ValueError): - parser.cursor("{option1}, {option2}, url(some.url)".format(option1=option1, option2=option2)) + parser.cursor(f"{option1}, {option2}, url(some.url)") with self.assertRaises(ValueError): - parser.cursor("{option1}, url(some.url), {option2}".format(option1=option1, option2=option2)) + parser.cursor(f"{option1}, url(some.url), {option2}") def test_cursor_invalid_order_list_1_item_invalid_value(self): with self.assertRaises(ValueError): @@ -912,19 +941,19 @@ def test_cursor_invalid_order_list_3_items_uri_2_option_1(self): def test_cursor_invalid_order_list_2_items_option_2(self): perms = permutations(CURSOR_OPTIONS, 2) - for (option1, option2) in perms: + for option1, option2 in perms: with self.assertRaises(ValueError): parser.cursor([option1, option2]) def test_cursor_invalid_order_list_3_items_option_3(self): perms = permutations(CURSOR_OPTIONS, 3) - for (option1, option2, option3) in perms: + for option1, option2, option3 in perms: with self.assertRaises(ValueError): parser.cursor([option1, option2, option3]) def test_cursor_invalid_order_list_3_items_option_2_uri_1(self): perms = permutations(CURSOR_OPTIONS, 2) - for (option1, option2) in perms: + for option1, option2 in perms: with self.assertRaises(ValueError): parser.cursor([option1, option2, "url(some.url)"]) diff --git a/tests/test_shapes.py b/tests/test_shapes.py index 717d0a02c..a40eab454 100644 --- a/tests/test_shapes.py +++ b/tests/test_shapes.py @@ -24,5 +24,5 @@ def test_shape_equality(self): def test_shape_string(self): rect = Rect(1 * px, 3 * px, 2 * px, 4 * px) - self.assertEqual(str(rect), 'rect(1px, 3px, 2px, 4px)') - self.assertEqual(repr(rect), 'rect(1px, 3px, 2px, 4px)') + self.assertEqual(str(rect), "rect(1px, 3px, 2px, 4px)") + self.assertEqual(repr(rect), "rect(1px, 3px, 2px, 4px)") diff --git a/tests/test_units.py b/tests/test_units.py index bdea8b5e1..91ffc18a2 100644 --- a/tests/test_units.py +++ b/tests/test_units.py @@ -126,7 +126,7 @@ def test_multiply(self): class PixelUnitTests(TestCase): def setUp(self): self.simple = Display(dpi=96, width=640, height=480) - self.print = Display(dpi=300, width=8.27*300, height=11.69*300) # A4 + self.print = Display(dpi=300, width=8.27 * 300, height=11.69 * 300) # A4 self.hidpi = Display(dpi=326, width=640, height=1136) # iPhone 7 self.helvetica12 = Helvetica(12) @@ -154,8 +154,8 @@ def test_pixels(self): self.assertEqual(p.lu(size=100), 320) - self.assertEqual(str(p), '5px') - self.assertEqual(repr(p), '5px') + self.assertEqual(str(p), "5px") + self.assertEqual(repr(p), "5px") self.assertEqual(p, 5) self.assertEqual(p, 5 * px) @@ -163,7 +163,7 @@ def test_pixels(self): class AbsoluteUnitTests(TestCase): def setUp(self): self.simple = Display(dpi=96, width=640, height=480) - self.print = Display(dpi=300, width=8.27*300, height=11.69*300) # A4 + self.print = Display(dpi=300, width=8.27 * 300, height=11.69 * 300) # A4 self.hidpi = Display(dpi=326, width=640, height=1136) # iPhone 7 def test_pica(self): @@ -255,7 +255,7 @@ def test_millimeters(self): class ViewportUnitTests(TestCase): def setUp(self): self.simple = Display(dpi=96, width=640, height=480) - self.print = Display(dpi=300, width=8.27*300, height=11.69*300) # A4 + self.print = Display(dpi=300, width=8.27 * 300, height=11.69 * 300) # A4 self.hidpi = Display(dpi=326, width=640, height=1136) # iPhone 7 def test_viewwidth(self): @@ -330,7 +330,7 @@ def test_viewmax(self): class FontUnitTests(TestCase): def setUp(self): self.simple = Display(dpi=96, width=640, height=480) - self.print = Display(dpi=300, width=8.27*300, height=11.69*300) # A4 + self.print = Display(dpi=300, width=8.27 * 300, height=11.69 * 300) # A4 self.hidpi = Display(dpi=326, width=640, height=1136) # iPhone 7 self.helvetica12 = Helvetica(12) @@ -488,8 +488,8 @@ def test_grad(self): def test_rad(self): p = 1 * rad self.assertEqual(p.dup(math.pi).deg(), 180) - self.assertEqual(p.dup(math.pi/2).deg(), 90) - self.assertEqual(p.dup(math.pi*2).deg(), 360) + self.assertEqual(p.dup(math.pi / 2).deg(), 90) + self.assertEqual(p.dup(math.pi * 2).deg(), 360) self.assertEqual(str(p), "1rad") self.assertEqual(repr(p), "1rad") @@ -502,7 +502,7 @@ def test_rad(self): def test_turn(self): p = 1 * turn - self.assertEqual(p.dup(.5).deg(), 180) + self.assertEqual(p.dup(0.5).deg(), 180) self.assertEqual(p.dup(1).deg(), 360) self.assertEqual(p.dup(1.125).deg(), 405) diff --git a/tests/test_validators.py b/tests/test_validators.py index 07c9b0da8..2a8bfb284 100644 --- a/tests/test_validators.py +++ b/tests/test_validators.py @@ -1,7 +1,7 @@ from unittest import TestCase from colosseum.shapes import Rect -from colosseum.units import px, percent +from colosseum.units import percent, px from colosseum.validators import ( ValidationError, is_border_spacing, @@ -20,7 +20,7 @@ class PercentTests(TestCase): def test_percentage(self): percent_value = is_percentage("100%") - self.assertEqual(percent_value, 100*percent) + self.assertEqual(percent_value, 100 * percent) self.assertEqual(type(percent_value), type(percent)) with self.assertRaises(ValidationError): @@ -30,18 +30,18 @@ def test_percentage(self): is_percentage("100") with self.assertRaises(ValidationError): - is_percentage('spam') + is_percentage("spam") class NumericTests(TestCase): def test_integer(self): - self.assertEqual(is_integer('1'), 1) + self.assertEqual(is_integer("1"), 1) validator = is_integer(min_value=0, max_value=12) - self.assertEqual(validator('1'), 1) - self.assertEqual(validator('0'), 0) - self.assertEqual(validator('12'), 12) + self.assertEqual(validator("1"), 1) + self.assertEqual(validator("0"), 0) + self.assertEqual(validator("12"), 12) with self.assertRaises(ValidationError): validator(-2) @@ -50,15 +50,15 @@ def test_integer(self): validator(15) with self.assertRaises(ValidationError): - validator('spam') + validator("spam") def test_number(self): - self.assertEqual(is_number('1'), 1.0) + self.assertEqual(is_number("1"), 1.0) validator = is_number(min_value=0, max_value=12) - self.assertEqual(validator('1.0'), 1.0) - self.assertEqual(validator('0.0'), 0.0) - self.assertEqual(validator('12.0'), 12.0) + self.assertEqual(validator("1.0"), 1.0) + self.assertEqual(validator("0.0"), 0.0) + self.assertEqual(validator("12.0"), 12.0) with self.assertRaises(ValidationError): validator(-2) @@ -67,30 +67,36 @@ def test_number(self): validator(15) with self.assertRaises(ValidationError): - validator('spam') + validator("spam") class BorderSpacingTests(TestCase): def test_border_spacing_valid_str_1_item(self): - self.assertEqual(is_border_spacing('1').horizontal, 1 * px) - self.assertEqual(is_border_spacing('1').vertical, 1 * px) + self.assertEqual(is_border_spacing("1").horizontal, 1 * px) + self.assertEqual(is_border_spacing("1").vertical, 1 * px) def test_border_spacing_valid_str_1_item_with_spaces(self): - self.assertEqual(is_border_spacing(' 1 ').horizontal, 1 * px) - self.assertEqual(is_border_spacing(' 1 ').vertical, 1 * px) + self.assertEqual(is_border_spacing(" 1 ").horizontal, 1 * px) + self.assertEqual(is_border_spacing(" 1 ").vertical, 1 * px) def test_border_spacing_valid_str_2_items(self): - self.assertEqual(is_border_spacing('1 2').horizontal, 1 * px) - self.assertEqual(is_border_spacing('1 2').vertical, 2 * px) + self.assertEqual(is_border_spacing("1 2").horizontal, 1 * px) + self.assertEqual(is_border_spacing("1 2").vertical, 2 * px) def test_border_spacing_valid_str_2_items_with_spaces(self): - self.assertEqual(is_border_spacing(' 1 2 ').horizontal, 1 * px) - self.assertEqual(is_border_spacing(' 1 2 ').vertical, 2 * px) + self.assertEqual(is_border_spacing(" 1 2 ").horizontal, 1 * px) + self.assertEqual(is_border_spacing(" 1 2 ").vertical, 2 * px) def test_border_spacing_valid_int_1_item(self): - self.assertEqual(is_border_spacing(1).horizontal, 1 * px, ) - self.assertEqual(is_border_spacing(1).vertical, 1 * px, ) + self.assertEqual( + is_border_spacing(1).horizontal, + 1 * px, + ) + self.assertEqual( + is_border_spacing(1).vertical, + 1 * px, + ) def test_border_spacing_valid_int_2_items_sequence(self): # List @@ -116,32 +122,32 @@ def test_border_spacing_valid_float_2_items_sequence(self): def test_border_spacing_invalid_units_str_2_item_commas(self): with self.assertRaises(ValidationError): - is_border_spacing('1, 2') + is_border_spacing("1, 2") def test_border_spacing_invalid_units_str_1_item(self): with self.assertRaises(ValidationError): - is_border_spacing('a a') + is_border_spacing("a a") def test_border_spacing_invalid_units_str_2_items(self): with self.assertRaises(ValidationError): - is_border_spacing('b') + is_border_spacing("b") def test_border_spacing_invalid_units_sequence_2_items(self): # List with self.assertRaises(ValidationError): - is_border_spacing(['a', 'b']) + is_border_spacing(["a", "b"]) # Tuple with self.assertRaises(ValidationError): - is_border_spacing(('a', 'b')) + is_border_spacing(("a", "b")) def test_border_spacing_invalid_length_str_0_items(self): with self.assertRaises(ValidationError): - is_border_spacing('') + is_border_spacing("") def test_border_spacing_invalid_length_str_3_items(self): with self.assertRaises(ValidationError): - is_border_spacing('1 2 3') + is_border_spacing("1 2 3") def test_border_spacing_invalid_length_sequence_0_items(self): # List @@ -170,11 +176,11 @@ class RectTests(TestCase): """ def test_rect_valid(self): - self.assertEqual(is_rect('rect(1px, 3px, 2px, 4px)'), Rect(1, 3, 2, 4)) + self.assertEqual(is_rect("rect(1px, 3px, 2px, 4px)"), Rect(1, 3, 2, 4)) def test_rect_invalid(self): with self.assertRaises(ValidationError): - is_rect('1px, 3px 2px, 4px') + is_rect("1px, 3px 2px, 4px") class QuotesTests(TestCase): @@ -185,7 +191,7 @@ class QuotesTests(TestCase): """ def test_quote_valid(self): - self.assertEqual(is_quote("'<' '>' '{' '}'"), Quotes([('<', '>'), ('{', '}')])) + self.assertEqual(is_quote("'<' '>' '{' '}'"), Quotes([("<", ">"), ("{", "}")])) def test_quote_invalid(self): with self.assertRaises(ValidationError): @@ -268,7 +274,7 @@ def test_cursor_invalid_2_items(self): is_cursor("auto, url( something )") with self.assertRaises(ValidationError): - is_cursor(["foobar", 'blah']) + is_cursor(["foobar", "blah"]) with self.assertRaises(ValidationError): is_cursor(["auto", "url(something)"]) diff --git a/tests/test_wrappers.py b/tests/test_wrappers.py index ea044bf6a..c120053a0 100644 --- a/tests/test_wrappers.py +++ b/tests/test_wrappers.py @@ -21,46 +21,46 @@ class BorderSpacingTests(TestCase): def test_valid_1_arg_string(self): - border_spacing = BorderSpacing('1') - self.assertEqual(border_spacing.horizontal, '1') - self.assertEqual(border_spacing.vertical, '1') - self.assertEqual(str(border_spacing), '1') + border_spacing = BorderSpacing("1") + self.assertEqual(border_spacing.horizontal, "1") + self.assertEqual(border_spacing.vertical, "1") + self.assertEqual(str(border_spacing), "1") self.assertEqual(repr(border_spacing), "BorderSpacing('1')") def test_valid_1_arg_int(self): border_spacing = BorderSpacing(1) self.assertEqual(border_spacing.horizontal, 1) self.assertEqual(border_spacing.vertical, 1) - self.assertEqual(str(border_spacing), '1') + self.assertEqual(str(border_spacing), "1") self.assertEqual(repr(border_spacing), "BorderSpacing(1)") def test_valid_1_arg_px(self): border_spacing = BorderSpacing(1 * px) self.assertEqual(border_spacing.horizontal, 1 * px) self.assertEqual(border_spacing.vertical, 1 * px) - self.assertEqual(str(border_spacing), '1px') + self.assertEqual(str(border_spacing), "1px") self.assertEqual(repr(border_spacing), "BorderSpacing(1px)") def test_valid_2_arg_str(self): - border_spacing = BorderSpacing('1', '2') - self.assertEqual(border_spacing.horizontal, '1') - self.assertEqual(border_spacing.vertical, '2') - self.assertEqual(str(border_spacing), '1 2') + border_spacing = BorderSpacing("1", "2") + self.assertEqual(border_spacing.horizontal, "1") + self.assertEqual(border_spacing.vertical, "2") + self.assertEqual(str(border_spacing), "1 2") self.assertEqual(repr(border_spacing), "BorderSpacing('1', '2')") def test_valid_2_arg_int(self): border_spacing = BorderSpacing(1, 2) self.assertEqual(border_spacing.horizontal, 1) self.assertEqual(border_spacing.vertical, 2) - self.assertEqual(str(border_spacing), '1 2') - self.assertEqual(repr(border_spacing), 'BorderSpacing(1, 2)') + self.assertEqual(str(border_spacing), "1 2") + self.assertEqual(repr(border_spacing), "BorderSpacing(1, 2)") def test_valid_2_arg_px(self): border_spacing = BorderSpacing(1 * px, 2 * px) self.assertEqual(border_spacing.horizontal, 1 * px) self.assertEqual(border_spacing.vertical, 2 * px) - self.assertEqual(str(border_spacing), '1px 2px') - self.assertEqual(repr(border_spacing), 'BorderSpacing(1px, 2px)') + self.assertEqual(str(border_spacing), "1px 2px") + self.assertEqual(repr(border_spacing), "BorderSpacing(1px, 2px)") def test_invalid_arg_number(self): with self.assertRaises(TypeError): @@ -71,28 +71,28 @@ class QuotesTests(TestCase): # Valid cases def test_quotes_valid_1_pair(self): - quotes = Quotes([('<', '>')]) + quotes = Quotes([("<", ">")]) - self.assertEqual(quotes.opening(level=0), '<') - self.assertEqual(quotes.closing(level=0), '>') + self.assertEqual(quotes.opening(level=0), "<") + self.assertEqual(quotes.closing(level=0), ">") self.assertEqual(len(quotes), 1) self.assertEqual(str(quotes), "'<' '>'") self.assertEqual(repr(quotes), "Quotes([('<', '>')])") def test_quotes_valid_2_pairs(self): - quotes = Quotes([('<', '>'), ('{', '}')]) + quotes = Quotes([("<", ">"), ("{", "}")]) - self.assertEqual(quotes.opening(level=0), '<') - self.assertEqual(quotes.closing(level=0), '>') - self.assertEqual(quotes.opening(level=1), '{') - self.assertEqual(quotes.closing(level=1), '}') + self.assertEqual(quotes.opening(level=0), "<") + self.assertEqual(quotes.closing(level=0), ">") + self.assertEqual(quotes.opening(level=1), "{") + self.assertEqual(quotes.closing(level=1), "}") self.assertEqual(len(quotes), 2) self.assertEqual(str(quotes), "'<' '>' '{' '}'") self.assertEqual(repr(quotes), "Quotes([('<', '>'), ('{', '}')])") # Invalid cases def test_quotes_invalid_1_pair_level(self): - quotes = Quotes([('<', '>')]) + quotes = Quotes([("<", ">")]) with self.assertRaises(IndexError): quotes.opening(level=1) @@ -112,32 +112,36 @@ class TestShorthandOutline(TestCase): def test_shorthand_outline_valid_empty(self): outline = Outline() - self.assertEqual(str(outline), '') - self.assertEqual(repr(outline), 'Outline()') + self.assertEqual(str(outline), "") + self.assertEqual(repr(outline), "Outline()") def test_shorthand_outline_valid_1_kwargs(self): - for property_name in ['outline_color', 'outline_style', 'outline_width']: + for property_name in ["outline_color", "outline_style", "outline_width"]: outline = Outline(**{property_name: 1}) - self.assertEqual(str(outline), '1') + self.assertEqual(str(outline), "1") self.assertEqual(getattr(outline, property_name), 1) def test_shorthand_outline_valid_2_kwargs(self): - perms = permutations(['outline_color', 'outline_style', 'outline_width'], 2) - for (prop_1, prop_2) in perms: + perms = permutations(["outline_color", "outline_style", "outline_width"], 2) + for prop_1, prop_2 in perms: kwargs = {prop_1: 1, prop_2: 2} outline = Outline(**kwargs) - self.assertEqual(str(outline), ' '.join(str(v[1]) for v in sorted(kwargs.items()))) + self.assertEqual( + str(outline), " ".join(str(v[1]) for v in sorted(kwargs.items())) + ) def test_shorthand_outline_valid_3_kwargs(self): - perms = permutations(['outline_color', 'outline_style', 'outline_width']) - for (prop_1, prop_2, prop_3) in perms: + perms = permutations(["outline_color", "outline_style", "outline_width"]) + for prop_1, prop_2, prop_3 in perms: kwargs = {prop_1: 1, prop_2: 2, prop_3: 3} outline = Outline(**kwargs) - self.assertEqual(str(outline), ' '.join(str(v[1]) for v in sorted(kwargs.items()))) + self.assertEqual( + str(outline), " ".join(str(v[1]) for v in sorted(kwargs.items())) + ) def test_shorthand_outline_valid_get_values(self): - perms = permutations(['outline_color', 'outline_style', 'outline_width']) - for (prop_1, prop_2, prop_3) in perms: + perms = permutations(["outline_color", "outline_style", "outline_width"]) + for prop_1, prop_2, prop_3 in perms: kwargs = {prop_1: 1, prop_2: 2, prop_3: 3} outline = Outline(**kwargs) self.assertEqual(getattr(outline, prop_1), kwargs[prop_1]) @@ -145,8 +149,8 @@ def test_shorthand_outline_valid_get_values(self): self.assertEqual(getattr(outline, prop_3), kwargs[prop_3]) def test_shorthand_outline_valid_set_values(self): - perms = permutations(['outline_color', 'outline_style', 'outline_width']) - for (prop_1, prop_2, prop_3) in perms: + perms = permutations(["outline_color", "outline_style", "outline_width"]) + for prop_1, prop_2, prop_3 in perms: kwargs = {prop_1: 1, prop_2: 2, prop_3: 3} outline = Outline(**kwargs) self.assertEqual(getattr(outline, prop_1), kwargs[prop_1]) @@ -154,17 +158,17 @@ def test_shorthand_outline_valid_set_values(self): self.assertEqual(getattr(outline, prop_3), kwargs[prop_3]) def test_shorthand_outline_equality(self): - perms = permutations(['outline_color', 'outline_style', 'outline_width']) - for (prop_1, prop_2, prop_3) in perms: + perms = permutations(["outline_color", "outline_style", "outline_width"]) + for prop_1, prop_2, prop_3 in perms: kwargs = {prop_1: 1, prop_2: 2, prop_3: 3} outline1 = Outline(**kwargs) outline2 = Outline(**kwargs) self.assertEqual(outline1, outline2) def test_shorthand_outline_valid_to_dict(self): - expected_output = ['outline_color', 'outline_style', 'outline_width'] + expected_output = ["outline_color", "outline_style", "outline_width"] perms = permutations(expected_output) - for (prop_1, prop_2, prop_3) in perms: + for prop_1, prop_2, prop_3 in perms: kwargs = {prop_1: 1, prop_2: 2, prop_3: 3} outline = Outline(**kwargs) self.assertEqual(outline.to_dict(), kwargs) @@ -172,7 +176,7 @@ def test_shorthand_outline_valid_to_dict(self): # Invalid cases def test_shorthand_outline_invalid_kwargs(self): with self.assertRaises(ValueError): - Outline(foobar='foobar') + Outline(foobar="foobar") class TestShorthandBorder(TestCase): @@ -180,36 +184,47 @@ class TestShorthandBorder(TestCase): def test_shorthand_boder_valid_empty(self): for wrapper_class in [Border, BorderBottom, BorderLeft, BorderRight, BorderTop]: wrapper = wrapper_class() - self.assertEqual(str(wrapper), '') - self.assertEqual(repr(wrapper), wrapper_class.__name__ + '()') + self.assertEqual(str(wrapper), "") + self.assertEqual(repr(wrapper), wrapper_class.__name__ + "()") def test_shorthand_outline_valid_1_kwargs(self): - for direction, wrapper_class in {'': Border, - 'bottom_': BorderBottom, - 'left_': BorderLeft, - 'right_': BorderRight, - 'top_': BorderTop}.items(): - - for property_name in ['border_{direction}color'.format(direction=direction), - 'border_{direction}style'.format(direction=direction), - 'border_{direction}width'.format(direction=direction)]: + for direction, wrapper_class in { + "": Border, + "bottom_": BorderBottom, + "left_": BorderLeft, + "right_": BorderRight, + "top_": BorderTop, + }.items(): + + for property_name in [ + f"border_{direction}color", + f"border_{direction}style", + f"border_{direction}width", + ]: wrapper = wrapper_class(**{property_name: 1}) - self.assertEqual(str(wrapper), '1') + self.assertEqual(str(wrapper), "1") self.assertEqual(getattr(wrapper, property_name), 1) def test_shorthand_outline_valid_2_kwargs(self): - for direction, wrapper_class in {'': Border, - 'bottom_': BorderBottom, - 'left_': BorderLeft, - 'right_': BorderRight, - 'top_': BorderTop}.items(): - - perms = permutations(['border_{direction}color'.format(direction=direction), - 'border_{direction}style'.format(direction=direction), - 'border_{direction}width'.format(direction=direction)], 2) - - for (prop_1, prop_2) in perms: + for direction, wrapper_class in { + "": Border, + "bottom_": BorderBottom, + "left_": BorderLeft, + "right_": BorderRight, + "top_": BorderTop, + }.items(): + + perms = permutations( + [ + f"border_{direction}color", + f"border_{direction}style", + f"border_{direction}width", + ], + 2, + ) + + for prop_1, prop_2 in perms: kwargs = OrderedDict() # This is to guarantee the proper order @@ -221,20 +236,28 @@ def test_shorthand_outline_valid_2_kwargs(self): kwargs[prop_2] = 2 wrapper = wrapper_class(**kwargs) - self.assertEqual(str(wrapper), ' '.join(str(v[1]) for v in kwargs.items())) + self.assertEqual( + str(wrapper), " ".join(str(v[1]) for v in kwargs.items()) + ) def test_shorthand_outline_valid_3_kwargs(self): - for direction, wrapper_class in {'': Border, - 'bottom_': BorderBottom, - 'left_': BorderLeft, - 'right_': BorderRight, - 'top_': BorderTop}.items(): - - perms = permutations(['border_{direction}color'.format(direction=direction), - 'border_{direction}style'.format(direction=direction), - 'border_{direction}width'.format(direction=direction)]) - - for (prop_1, prop_2, prop_3) in perms: + for direction, wrapper_class in { + "": Border, + "bottom_": BorderBottom, + "left_": BorderLeft, + "right_": BorderRight, + "top_": BorderTop, + }.items(): + + perms = permutations( + [ + f"border_{direction}color", + f"border_{direction}style", + f"border_{direction}width", + ] + ) + + for prop_1, prop_2, prop_3 in perms: kwargs = OrderedDict() # This is to guarantee the proper order @@ -242,20 +265,28 @@ def test_shorthand_outline_valid_3_kwargs(self): kwargs[property_name] = idx + 1 wrapper = wrapper_class(**kwargs) - self.assertEqual(str(wrapper), ' '.join(str(v[1]) for v in kwargs.items())) + self.assertEqual( + str(wrapper), " ".join(str(v[1]) for v in kwargs.items()) + ) def test_shorthand_outline_valid_get_values(self): - for direction, wrapper_class in {'': Border, - 'bottom_': BorderBottom, - 'left_': BorderLeft, - 'right_': BorderRight, - 'top_': BorderTop}.items(): - - perms = permutations(['border_{direction}color'.format(direction=direction), - 'border_{direction}style'.format(direction=direction), - 'border_{direction}width'.format(direction=direction)]) - - for (prop_1, prop_2, prop_3) in perms: + for direction, wrapper_class in { + "": Border, + "bottom_": BorderBottom, + "left_": BorderLeft, + "right_": BorderRight, + "top_": BorderTop, + }.items(): + + perms = permutations( + [ + f"border_{direction}color", + f"border_{direction}style", + f"border_{direction}width", + ] + ) + + for prop_1, prop_2, prop_3 in perms: kwargs = OrderedDict() # This is to guarantee the proper order @@ -268,17 +299,23 @@ def test_shorthand_outline_valid_get_values(self): self.assertEqual(getattr(wrapper, prop_3), kwargs[prop_3]) def test_shorthand_outline_valid_set_values(self): - for direction, wrapper_class in {'': Border, - 'bottom_': BorderBottom, - 'left_': BorderLeft, - 'right_': BorderRight, - 'top_': BorderTop}.items(): - - perms = permutations(['border_{direction}color'.format(direction=direction), - 'border_{direction}style'.format(direction=direction), - 'border_{direction}width'.format(direction=direction)]) - - for (prop_1, prop_2, prop_3) in perms: + for direction, wrapper_class in { + "": Border, + "bottom_": BorderBottom, + "left_": BorderLeft, + "right_": BorderRight, + "top_": BorderTop, + }.items(): + + perms = permutations( + [ + f"border_{direction}color", + f"border_{direction}style", + f"border_{direction}width", + ] + ) + + for prop_1, prop_2, prop_3 in perms: kwargs = OrderedDict() # This is to guarantee the proper order @@ -291,17 +328,23 @@ def test_shorthand_outline_valid_set_values(self): self.assertEqual(getattr(wrapper, prop_3), kwargs[prop_3]) def test_shorthand_outline_equality(self): - for direction, wrapper_class in {'': Border, - 'bottom_': BorderBottom, - 'left_': BorderLeft, - 'right_': BorderRight, - 'top_': BorderTop}.items(): - - perms = permutations(['border_{direction}color'.format(direction=direction), - 'border_{direction}style'.format(direction=direction), - 'border_{direction}width'.format(direction=direction)]) - - for (prop_1, prop_2, prop_3) in perms: + for direction, wrapper_class in { + "": Border, + "bottom_": BorderBottom, + "left_": BorderLeft, + "right_": BorderRight, + "top_": BorderTop, + }.items(): + + perms = permutations( + [ + f"border_{direction}color", + f"border_{direction}style", + f"border_{direction}width", + ] + ) + + for prop_1, prop_2, prop_3 in perms: kwargs = OrderedDict() # This is to guarantee the proper order @@ -313,17 +356,23 @@ def test_shorthand_outline_equality(self): self.assertEqual(wrapper1, wrapper2) def test_shorthand_outline_valid_to_dict(self): - for direction, wrapper_class in {'': Border, - 'bottom_': BorderBottom, - 'left_': BorderLeft, - 'right_': BorderRight, - 'top_': BorderTop}.items(): - - perms = permutations(['border_{direction}color'.format(direction=direction), - 'border_{direction}style'.format(direction=direction), - 'border_{direction}width'.format(direction=direction)]) - - for (prop_1, prop_2, prop_3) in perms: + for direction, wrapper_class in { + "": Border, + "bottom_": BorderBottom, + "left_": BorderLeft, + "right_": BorderRight, + "top_": BorderTop, + }.items(): + + perms = permutations( + [ + f"border_{direction}color", + f"border_{direction}style", + f"border_{direction}width", + ] + ) + + for prop_1, prop_2, prop_3 in perms: kwargs = OrderedDict() # This is to guarantee the proper order @@ -337,7 +386,7 @@ def test_shorthand_outline_valid_to_dict(self): def test_shorthand_outline_invalid_kwargs(self): for wrapper_class in [Border, BorderBottom, BorderLeft, BorderRight, BorderTop]: with self.assertRaises(ValueError): - wrapper_class(foobar='foobar') + wrapper_class(foobar="foobar") class ImmutableListTests(TestCase): @@ -345,8 +394,8 @@ class ImmutableListTests(TestCase): def test_immutable_list_initial(self): # Check initial ilist = ImmutableList() - self.assertEqual(str(ilist), '') - self.assertEqual(repr(ilist), 'ImmutableList()') + self.assertEqual(str(ilist), "") + self.assertEqual(repr(ilist), "ImmutableList()") self.assertEqual(len(ilist), 0) def test_immutable_list_creation(self): @@ -357,50 +406,50 @@ def test_immutable_list_creation(self): self.assertEqual(len(ilist), 1) # Check values - ilist = ImmutableList(['1', '2']) + ilist = ImmutableList(["1", "2"]) self.assertEqual(str(ilist), "1, 2") self.assertEqual(repr(ilist), "ImmutableList(['1', '2'])") self.assertEqual(len(ilist), 2) def test_immutable_list_get_item(self): # Check get item - ilist = ImmutableList(['1', '2']) - self.assertEqual(ilist[0], '1') - self.assertEqual(ilist[-1], '2') + ilist = ImmutableList(["1", "2"]) + self.assertEqual(ilist[0], "1") + self.assertEqual(ilist[-1], "2") def test_immutable_list_set_item(self): # Check immutable ilist = ImmutableList() with self.assertRaises(TypeError): - ilist[0] = 'initial' + ilist[0] = "initial" def test_immutable_list_equality(self): # Check equality - ilist1 = ImmutableList(['1', 2]) - ilist2 = ImmutableList(['1', 2]) - ilist3 = ImmutableList([2, '1']) + ilist1 = ImmutableList(["1", 2]) + ilist2 = ImmutableList(["1", 2]) + ilist3 = ImmutableList([2, "1"]) self.assertEqual(ilist1, ilist2) self.assertNotEqual(ilist1, ilist3) def test_immutable_list_hash(self): # Check hash - ilist1 = ImmutableList(['1', 2]) - ilist2 = ImmutableList(['1', 2]) + ilist1 = ImmutableList(["1", 2]) + ilist2 = ImmutableList(["1", 2]) self.assertEqual(hash(ilist1), hash(ilist2)) def test_immutable_list_id(self): # Check id - ilist1 = ImmutableList(['1', 2]) - ilist2 = ImmutableList(['1', 2]) + ilist1 = ImmutableList(["1", 2]) + ilist2 = ImmutableList(["1", 2]) self.assertNotEqual(id(ilist1), id(ilist2)) self.assertNotEqual(id(ilist1), id(ilist1.copy())) self.assertNotEqual(id(ilist2), id(ilist1.copy())) def test_immutable_list_copy(self): # Check copy - ilist1 = ImmutableList(['1', 2]) - ilist2 = ImmutableList(['1', 2]) + ilist1 = ImmutableList(["1", 2]) + ilist2 = ImmutableList(["1", 2]) self.assertEqual(hash(ilist2), hash(ilist1.copy())) self.assertEqual(ilist1, ilist1.copy()) @@ -411,8 +460,8 @@ class CursorTests(TestCase): def test_cursor_initial(self): # Check initial ilist = Cursor() - self.assertEqual(str(ilist), '') - self.assertEqual(repr(ilist), 'Cursor()') + self.assertEqual(str(ilist), "") + self.assertEqual(repr(ilist), "Cursor()") self.assertEqual(len(ilist), 0) def test_cursor_creation(self): @@ -423,7 +472,7 @@ def test_cursor_creation(self): self.assertEqual(len(ilist), 1) # Check values - ilist = Cursor(['1', '2']) + ilist = Cursor(["1", "2"]) self.assertEqual(str(ilist), "1, 2") self.assertEqual(repr(ilist), "Cursor(['1', '2'])") self.assertEqual(len(ilist), 2) diff --git a/tests/utils.py b/tests/utils.py index a4828a4da..a83e72899 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -22,9 +22,9 @@ def fixed_size(self, value): }[value] -class TestNode: +class ExampleNode: def __init__(self, name=None, style=None, children=None): - self.name = name if name else 'div' + self.name = name if name else "div" self.parent = None self.children = [] if children: @@ -36,28 +36,30 @@ def __init__(self, name=None, style=None, children=None): self.style = style.copy(self) if style else CSS() def __repr__(self): - return '<{}:{} {}>'.format(self.name, id(self), str(self.layout)) + return f"<{self.name}:{id(self)} {str(self.layout)}>" def build_document(data, parent=None): - if 'tag' in data: - node = TestNode(name=data['tag']) + if "tag" in data: + node = ExampleNode(name=data["tag"]) node.parent = parent - node.style.update(**{ - attr: value - for attr, value in data['style'].items() - if hasattr(node.style, attr) - }) - - if 'children' in data: - for child in data['children']: + node.style.update( + **{ + attr: value + for attr, value in data["style"].items() + if hasattr(node.style, attr) + } + ) + + if "children" in data: + for child in data["children"]: subdocument = build_document(child, parent=node) if subdocument: node.children.append(subdocument) else: node = None # # TODO - add proper handling for anonymous boxes. - # node = TestNode(name='') + # node = ExampleNode(name='') # node.intrinsic.width = ... # node.intrinsic.height = ... return node @@ -66,28 +68,37 @@ def build_document(data, parent=None): def summarize(node): if node.layout: layout = { - 'content': { - 'position': (node.layout.absolute_content_left, node.layout.absolute_content_top), - 'size': (node.layout.content_width, node.layout.content_height), + "content": { + "position": ( + node.layout.absolute_content_left, + node.layout.absolute_content_top, + ), + "size": (node.layout.content_width, node.layout.content_height), }, - 'padding_box': { - 'position': (node.layout.absolute_padding_box_left, node.layout.absolute_padding_box_top), - 'size': (node.layout.padding_box_width, node.layout.padding_box_height), + "padding_box": { + "position": ( + node.layout.absolute_padding_box_left, + node.layout.absolute_padding_box_top, + ), + "size": (node.layout.padding_box_width, node.layout.padding_box_height), }, - 'border_box': { - 'position': (node.layout.absolute_border_box_left, node.layout.absolute_border_box_top), - 'size': (node.layout.border_box_width, node.layout.border_box_height), + "border_box": { + "position": ( + node.layout.absolute_border_box_left, + node.layout.absolute_border_box_top, + ), + "size": (node.layout.border_box_width, node.layout.border_box_height), }, } if node.name: - layout['tag'] = node.name + layout["tag"] = node.name children = [] for child in node.children: sublayout = summarize(child) if sublayout: children.append(sublayout) if children: - layout['children'] = children + layout["children"] = children else: layout = None # # TODO - add proper handling for anonymous boxes. @@ -97,21 +108,21 @@ def summarize(node): def clean_layout(layout): - if 'tag' in layout: + if "tag" in layout: cleaned = { key: { - 'position': (layout[key]['position'][0], layout[key]['position'][1]), - 'size': (layout[key]['size'][0], layout[key]['size'][1]), + "position": (layout[key]["position"][0], layout[key]["position"][1]), + "size": (layout[key]["size"][0], layout[key]["size"][1]), } - for key in ['content', 'padding_box', 'border_box'] + for key in ["content", "padding_box", "border_box"] } children = [] - for child in layout.get('children', []): + for child in layout.get("children", []): sublayout = clean_layout(child) if sublayout: children.append(sublayout) if children: - cleaned['children'] = children + cleaned["children"] = children else: cleaned = None @@ -124,16 +135,15 @@ def clean_layout(layout): def output_layout(layout, depth=1): - if 'tag' in layout: + if "tag" in layout: return ( - ' ' * depth - + '* {tag}{n[content][size][0]}x{n[content][size][1]}' - ' @ ({n[content][position][0]}, {n[content][position][1]})' - '\n'.format( - n=layout, - tag=('<' + layout['tag'] + '> ') if 'tag' in layout else '', - # text=(": '" + layout['text'] + "'") if 'text' in layout else '' - ) + " " * depth + "* {tag}{n[content][size][0]}x{n[content][size][1]}" + " @ ({n[content][position][0]}, {n[content][position][1]})" + "\n".format( + n=layout, + tag=("<" + layout["tag"] + "> ") if "tag" in layout else "", + # text=(": '" + layout['text'] + "'") if 'text' in layout else '' + ) # + ' ' * depth # + ' padding: {n[padding_box][size][0]}x{n[padding_box][size][1]}' # ' @ ({n[padding_box][position][0]}, {n[padding_box][position][1]})' @@ -142,17 +152,16 @@ def output_layout(layout, depth=1): # + ' border: {n[border_box][size][0]}x{n[border_box][size][1]}' # ' @ ({n[border_box][position][0]}, {n[border_box][position][1]})' # '\n'.format(n=layout) - + ''.join( - output_layout(child, depth=depth + 1) - for child in layout.get('children', []) - ) if layout else '' - + ('\n' if layout and layout.get('children', None) and depth > 1 else '') + + "".join( + output_layout(child, depth=depth + 1) + for child in layout.get("children", []) + ) + if layout + else "" + + ("\n" if layout and layout.get("children", None) and depth > 1 else "") ) else: - return ( - ' ' * depth - + "* '{text}'\n".format(text=layout['text'].strip()) - ) + return " " * depth + "* '{text}'\n".format(text=layout["text"].strip()) class LayoutTestCase(TestCase): @@ -161,202 +170,222 @@ def setUp(self): self.display = Display(dpi=96, width=1024, height=768) def layout_node(self, node): - root = TestNode(style=CSS(display=BLOCK), children=[node]) + root = ExampleNode(style=CSS(display=BLOCK), children=[node]) layout(self.display, root) def _assertLayout(self, actual, expected, output, depth=0): tolerance = 0.05 found_problem = False - tag = ('<' + expected['tag'] + '> ') if 'tag' in expected else '' + tag = ("<" + expected["tag"] + "> ") if "tag" in expected else "" output.append( - ' ' - + ' ' * depth - + '* {tag}{n[size][0]}x{n[size][1]}' - ' @ ({n[position][0]}, {n[position][1]})'.format( - n=expected['content'], - tag=tag, - ) + " " + " " * depth + "* {tag}{n[size][0]}x{n[size][1]}" + " @ ({n[position][0]}, {n[position][1]})".format( + n=expected["content"], + tag=tag, + ) ) try: self.assertAlmostEqual( - expected['content']['size'][0], actual.layout.content_width, - delta=tolerance + expected["content"]["size"][0], + actual.layout.content_width, + delta=tolerance, ) self.assertAlmostEqual( - expected['content']['size'][1], actual.layout.content_height, - delta=tolerance + expected["content"]["size"][1], + actual.layout.content_height, + delta=tolerance, ) self.assertAlmostEqual( - expected['content']['position'][0], actual.layout.absolute_content_left, - delta=tolerance + expected["content"]["position"][0], + actual.layout.absolute_content_left, + delta=tolerance, ) self.assertAlmostEqual( - expected['content']['position'][1], actual.layout.absolute_content_top, - delta=tolerance + expected["content"]["position"][1], + actual.layout.absolute_content_top, + delta=tolerance, ) except AssertionError: found_problem = True output.append( - '>> ' - + ' ' * depth - + ' ' * len(tag) - + ' {n.content_width}x{n.content_height}' - ' @ ({n.absolute_content_left}, {n.absolute_content_top})'.format( + ">> " + + " " * depth + + " " * len(tag) + + " {n.content_width}x{n.content_height}" + " @ ({n.absolute_content_left}, {n.absolute_content_top})".format( n=actual.layout ) ) output.append( - ' ' - + ' ' * depth - + ' ' * len(tag) - + ' padding: {n[size][0]}x{n[size][1]}' - ' @ ({n[position][0]}, {n[position][1]})'.format( - n=expected['padding_box'] - ) + " " + + " " * depth + + " " * len(tag) + + " padding: {n[size][0]}x{n[size][1]}" + " @ ({n[position][0]}, {n[position][1]})".format(n=expected["padding_box"]) ) try: self.assertAlmostEqual( - expected['padding_box']['size'][0], actual.layout.padding_box_width, delta=tolerance + expected["padding_box"]["size"][0], + actual.layout.padding_box_width, + delta=tolerance, ) self.assertAlmostEqual( - expected['padding_box']['size'][1], actual.layout.padding_box_height, delta=tolerance + expected["padding_box"]["size"][1], + actual.layout.padding_box_height, + delta=tolerance, ) self.assertAlmostEqual( - expected['padding_box']['position'][0], actual.layout.absolute_padding_box_left, delta=tolerance + expected["padding_box"]["position"][0], + actual.layout.absolute_padding_box_left, + delta=tolerance, ) self.assertAlmostEqual( - expected['padding_box']['position'][1], actual.layout.absolute_padding_box_top, delta=tolerance + expected["padding_box"]["position"][1], + actual.layout.absolute_padding_box_top, + delta=tolerance, ) except AssertionError: found_problem = True output.append( - '>> ' - + ' ' * depth - + ' ' * len(tag) - + ' padding: {n.padding_box_width}x{n.padding_box_height}' - ' @ ({n.absolute_padding_box_left}, {n.absolute_padding_box_top})'.format( + ">> " + + " " * depth + + " " * len(tag) + + " padding: {n.padding_box_width}x{n.padding_box_height}" + " @ ({n.absolute_padding_box_left}, {n.absolute_padding_box_top})".format( n=actual.layout ) ) output.append( - ' ' - + ' ' * depth - + ' ' * len(tag) - + ' border: {n[size][0]}x{n[size][1]}' - ' @ ({n[position][0]}, {n[position][1]})'.format( - n=expected['border_box'] - ) + " " + + " " * depth + + " " * len(tag) + + " border: {n[size][0]}x{n[size][1]}" + " @ ({n[position][0]}, {n[position][1]})".format(n=expected["border_box"]) ) try: self.assertAlmostEqual( - expected['border_box']['size'][0], actual.layout.border_box_width, delta=tolerance + expected["border_box"]["size"][0], + actual.layout.border_box_width, + delta=tolerance, ) self.assertAlmostEqual( - expected['border_box']['size'][1], actual.layout.border_box_height, delta=tolerance + expected["border_box"]["size"][1], + actual.layout.border_box_height, + delta=tolerance, ) self.assertAlmostEqual( - expected['border_box']['position'][0], actual.layout.absolute_border_box_left, delta=tolerance + expected["border_box"]["position"][0], + actual.layout.absolute_border_box_left, + delta=tolerance, ) self.assertAlmostEqual( - expected['border_box']['position'][1], actual.layout.absolute_border_box_top, delta=tolerance + expected["border_box"]["position"][1], + actual.layout.absolute_border_box_top, + delta=tolerance, ) except AssertionError: found_problem = True output.append( - '>> ' - + ' ' * depth - + ' ' * len(tag) - + ' border: {n.border_box_width}x{n.border_box_height}' - ' @ ({n.absolute_border_box_left}, {n.absolute_border_box_top})'.format( + ">> " + + " " * depth + + " " * len(tag) + + " border: {n.border_box_width}x{n.border_box_height}" + " @ ({n.absolute_border_box_left}, {n.absolute_border_box_top})".format( n=actual.layout ) ) - expected_children = expected.pop('children', []) + expected_children = expected.pop("children", []) n_actual = len(actual.children) n_expected = len(expected_children) if n_actual == n_expected: for actual_child, expected_child in zip(actual.children, expected_children): - child_problem = self._assertLayout(actual_child, expected_child, output, depth=depth+1) + child_problem = self._assertLayout( + actual_child, expected_child, output, depth=depth + 1 + ) found_problem = found_problem or child_problem else: found_problem = True output.append( - '>> ' - + ' ' * depth - + ' Found {} children, expected {}'.format( - n_actual, n_expected - ) + ">> " + + " " * depth + + f" Found {n_actual} children, expected {n_expected}" ) return found_problem - def assertLayout(self, actual, expected, extra=''): - output = ['\n', '~' * 80] + def assertLayout(self, actual, expected, extra=""): + output = ["\n", "~" * 80] problems = self._assertLayout(actual, expected, output) - output.append('~' * 80) + output.append("~" * 80) output.append(extra) if problems: - self.fail('\n'.join(output)) + self.fail("\n".join(output)) class W3CTestCase(LayoutTestCase): @classmethod def find_tests(cls, test_filename, group): dirname = os.path.dirname(test_filename) - data_dir = os.path.join(dirname, 'data') - ref_dir = os.path.join(dirname, 'ref') + data_dir = os.path.join(dirname, "data") + ref_dir = os.path.join(dirname, "ref") # Read the not_implemented file. expected_failures = set() - not_implemented_file = os.path.join(dirname, 'not_implemented') + not_implemented_file = os.path.join(dirname, "not_implemented") try: with open(not_implemented_file) as f: - expected_failures.update({ - 'test_' + line.strip().replace('-', '_') - for line in f - if line.strip() - }) - except IOError: + expected_failures.update( + { + "test_" + line.strip().replace("-", "_") + for line in f + if line.strip() + } + ) + except OSError: pass - not_compliant = os.path.join(dirname, 'not_compliant') + not_compliant = os.path.join(dirname, "not_compliant") try: with open(not_compliant) as f: - expected_failures.update({ - 'test_' + line.strip().replace('-', '_') - for line in f - if line.strip() - }) - except IOError: + expected_failures.update( + { + "test_" + line.strip().replace("-", "_") + for line in f + if line.strip() + } + ) + except OSError: pass # Read the not_valid test file. ignore = set() - not_valid_file = os.path.join(dirname, 'not_valid') + not_valid_file = os.path.join(dirname, "not_valid") try: with open(not_valid_file) as f: - ignore.update({ - 'test_' + line.strip().replace('-', '_') - for line in f - if line.strip() - }) - except IOError: + ignore.update( + { + "test_" + line.strip().replace("-", "_") + for line in f + if line.strip() + } + ) + except OSError: pass # Closure for building test cases for a given input file. def make_test(test_dir, filename): css_test_name = os.path.splitext(filename)[0] css_test_module = os.path.basename(os.path.dirname(test_dir)) - if css_test_module == 'CSS2': - css_test_module = 'css21' - test_name = 'test_' + css_test_name.replace('-', '_') + if css_test_module == "CSS2": + css_test_module = "css21" + test_name = "test_" + css_test_name.replace("-", "_") with open(os.path.join(data_dir, filename)) as f: input_data = json.load(f) @@ -365,41 +394,36 @@ def make_test(test_dir, filename): reference = json.load(f) extra = [] - if input_data['help']: - extra.append('\n'.join('See {}'.format(h) for h in input_data['help'])) - extra.append('') + if input_data["help"]: + extra.append("\n".join(f"See {h}" for h in input_data["help"])) + extra.append("") extra.append( - 'Test: http://test.csswg.org/harness/test/{}_dev/single/{}/'.format( - css_test_module, - css_test_name + "Test: http://test.csswg.org/harness/test/{}_dev/single/{}/".format( + css_test_module, css_test_name ) ) # The actual test method. Builds a document, lays it out, # and checks against the reference rendering. def test_method(self): - root = build_document(input_data['test_case']) + root = build_document(input_data["test_case"]) layout(self.display, root, standard=HTML4) - self.assertLayout( - root, - reference, - '\n' + '\n'.join(extra) - ) + self.assertLayout(root, reference, "\n" + "\n".join(extra)) # Annotate the method with any helper text. doc = [] - if input_data['assert']: - doc.append(input_data['assert']) + if input_data["assert"]: + doc.append(input_data["assert"]) else: - doc.append('Test ' + os.path.splitext(filename)[0].replace('-', '_')) + doc.append("Test " + os.path.splitext(filename)[0].replace("-", "_")) - doc.append('') + doc.append("") doc.extend(extra) - test_method.__doc__ = '\n'.join(doc) + test_method.__doc__ = "\n".join(doc) # If the method is on the expected_failures list, # decorate the method. @@ -413,10 +437,10 @@ def test_method(self): # on the ignore list. tests = {} for filename in os.listdir(data_dir): - if group.endswith('-'): - found = '-'.join(filename.split('-')[:-1]) == group[:-1] + if group.endswith("-"): + found = "-".join(filename.split("-")[:-1]) == group[:-1] else: - found = '-'.join(filename.split('.')[:-1]) == group + found = "-".join(filename.split(".")[:-1]) == group if found: test_name, test_method = make_test(dirname, filename) diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-001.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-001.json index 19b508a5f..275db137c 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-001.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-001.json @@ -112,4 +112,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004a.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004a.json index d992d9e20..355ea1b0b 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004a.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004a.json @@ -16,4 +16,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004b.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004b.json index d992d9e20..355ea1b0b 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004b.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004b.json @@ -16,4 +16,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004c.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004c.json index d992d9e20..355ea1b0b 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004c.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004c.json @@ -16,4 +16,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004d.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004d.json index d992d9e20..355ea1b0b 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004d.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004d.json @@ -16,4 +16,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004e.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004e.json index 9f8a9c18f..d0dc550f3 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004e.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004e.json @@ -52,4 +52,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004f.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004f.json index 9f8a9c18f..d0dc550f3 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004f.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-004f.json @@ -52,4 +52,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005a.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005a.json index a53e95bc3..14a5a62f6 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005a.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005a.json @@ -16,4 +16,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-005-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005b.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005b.json index a53e95bc3..14a5a62f6 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005b.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005b.json @@ -16,4 +16,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-005-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005c.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005c.json index a53e95bc3..14a5a62f6 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005c.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005c.json @@ -16,4 +16,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-005-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005d.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005d.json index a53e95bc3..14a5a62f6 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005d.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-005d.json @@ -16,4 +16,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-005-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-007.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-007.json index 21bdfa5d0..6df665c92 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-007.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-007.json @@ -40,4 +40,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009a.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009a.json index 47e162363..cae96ee78 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009a.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009a.json @@ -16,4 +16,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-009-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009b.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009b.json index 47e162363..cae96ee78 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009b.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009b.json @@ -16,4 +16,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-009-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009e.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009e.json index f740fbf9f..e353b60c0 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009e.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009e.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-009-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009f.json b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009f.json index 5cc32d08a..969057191 100644 --- a/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009f.json +++ b/tests/web_platform/CSS2/abspos/data/abspos-containing-block-initial-009f.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "matches": "abspos-containing-block-initial-009-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-001.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-001.json index e5cf0f319..7cbc0919b 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-001.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-001.json @@ -229,4 +229,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004a.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004a.json index bec8e0f09..8c95d06e9 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004a.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004a.json @@ -44,4 +44,4 @@ 118 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004b.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004b.json index bec8e0f09..8c95d06e9 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004b.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004b.json @@ -44,4 +44,4 @@ 118 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004c.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004c.json index bec8e0f09..8c95d06e9 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004c.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004c.json @@ -44,4 +44,4 @@ 118 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004d.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004d.json index bec8e0f09..8c95d06e9 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004d.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004d.json @@ -44,4 +44,4 @@ 118 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004e.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004e.json index 6a63f1c8b..edd32b754 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004e.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004e.json @@ -44,4 +44,4 @@ 110 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004f.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004f.json index 6a63f1c8b..edd32b754 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004f.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-004f.json @@ -44,4 +44,4 @@ 110 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005a.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005a.json index d745a1c62..ab4f11b20 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005a.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005a.json @@ -44,4 +44,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005b.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005b.json index d745a1c62..ab4f11b20 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005b.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005b.json @@ -44,4 +44,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005c.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005c.json index d745a1c62..ab4f11b20 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005c.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005c.json @@ -44,4 +44,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005d.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005d.json index d745a1c62..ab4f11b20 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005d.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-005d.json @@ -44,4 +44,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-007.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-007.json index cf283f2b5..f01c2c075 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-007.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-007.json @@ -44,4 +44,4 @@ 170 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009a.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009a.json index 5edf008b5..9ffddffb7 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009a.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009a.json @@ -44,4 +44,4 @@ 68 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009b.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009b.json index 5edf008b5..9ffddffb7 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009b.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009b.json @@ -44,4 +44,4 @@ 68 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009e.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009e.json index 0a7e623a8..d3fccd26a 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009e.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009e.json @@ -44,4 +44,4 @@ 60 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009f.json b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009f.json index 0a7e623a8..d3fccd26a 100644 --- a/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009f.json +++ b/tests/web_platform/CSS2/abspos/ref/abspos-containing-block-initial-009f.json @@ -44,4 +44,4 @@ 60 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/abspos/test_abspos_containing_block_initial.py b/tests/web_platform/CSS2/abspos/test_abspos_containing_block_initial.py index 512bffb81..48711302b 100644 --- a/tests/web_platform/CSS2/abspos/test_abspos_containing_block_initial.py +++ b/tests/web_platform/CSS2/abspos/test_abspos_containing_block_initial.py @@ -2,4 +2,4 @@ class TestAbsposContainingBlockInitial(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'abspos-containing-block-initial-')) + vars().update(W3CTestCase.find_tests(__file__, "abspos-containing-block-initial-")) diff --git a/tests/web_platform/CSS2/box/data/ltr-basic.json b/tests/web_platform/CSS2/box/data/ltr-basic.json index 199c226ed..64866506a 100644 --- a/tests/web_platform/CSS2/box/data/ltr-basic.json +++ b/tests/web_platform/CSS2/box/data/ltr-basic.json @@ -70,4 +70,4 @@ "http://www.w3.org/TR/CSS21/box.html#bidi-box-model" ], "matches": "left-ltr-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/data/ltr-ib.json b/tests/web_platform/CSS2/box/data/ltr-ib.json index 814e74b41..8c7b9762e 100644 --- a/tests/web_platform/CSS2/box/data/ltr-ib.json +++ b/tests/web_platform/CSS2/box/data/ltr-ib.json @@ -73,4 +73,4 @@ "http://www.w3.org/TR/CSS21/box.html#bidi-box-model" ], "matches": "left-ltr-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/data/ltr-span-only-ib.json b/tests/web_platform/CSS2/box/data/ltr-span-only-ib.json index f9bde6df8..71defd17b 100644 --- a/tests/web_platform/CSS2/box/data/ltr-span-only-ib.json +++ b/tests/web_platform/CSS2/box/data/ltr-span-only-ib.json @@ -75,4 +75,4 @@ "http://www.w3.org/TR/CSS21/box.html#bidi-box-model" ], "matches": "right-ltr-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/data/ltr-span-only.json b/tests/web_platform/CSS2/box/data/ltr-span-only.json index c5d9bc675..03c486698 100644 --- a/tests/web_platform/CSS2/box/data/ltr-span-only.json +++ b/tests/web_platform/CSS2/box/data/ltr-span-only.json @@ -72,4 +72,4 @@ "http://www.w3.org/TR/CSS21/box.html#bidi-box-model" ], "matches": "right-ltr-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/data/rtl-basic.json b/tests/web_platform/CSS2/box/data/rtl-basic.json index 1d6b5f40c..2c61c8990 100644 --- a/tests/web_platform/CSS2/box/data/rtl-basic.json +++ b/tests/web_platform/CSS2/box/data/rtl-basic.json @@ -71,4 +71,4 @@ "http://www.w3.org/TR/CSS21/box.html#bidi-box-model" ], "matches": "right-rtl-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/data/rtl-ib.json b/tests/web_platform/CSS2/box/data/rtl-ib.json index 6f3750a11..4c748d940 100644 --- a/tests/web_platform/CSS2/box/data/rtl-ib.json +++ b/tests/web_platform/CSS2/box/data/rtl-ib.json @@ -74,4 +74,4 @@ "http://www.w3.org/TR/CSS21/box.html#bidi-box-model" ], "matches": "right-rtl-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/data/rtl-linebreak.json b/tests/web_platform/CSS2/box/data/rtl-linebreak.json index ba927bb6c..e77a884ad 100644 --- a/tests/web_platform/CSS2/box/data/rtl-linebreak.json +++ b/tests/web_platform/CSS2/box/data/rtl-linebreak.json @@ -76,4 +76,4 @@ "http://www.w3.org/TR/CSS21/box.html#bidi-box-model" ], "matches": "rtl-linebreak-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/data/rtl-span-only-ib.json b/tests/web_platform/CSS2/box/data/rtl-span-only-ib.json index 3db82d4c3..4c8793d67 100644 --- a/tests/web_platform/CSS2/box/data/rtl-span-only-ib.json +++ b/tests/web_platform/CSS2/box/data/rtl-span-only-ib.json @@ -74,4 +74,4 @@ "http://www.w3.org/TR/CSS21/box.html#bidi-box-model" ], "matches": "left-rtl-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/data/rtl-span-only.json b/tests/web_platform/CSS2/box/data/rtl-span-only.json index 87aed1d62..6fbfcf7fa 100644 --- a/tests/web_platform/CSS2/box/data/rtl-span-only.json +++ b/tests/web_platform/CSS2/box/data/rtl-span-only.json @@ -71,4 +71,4 @@ "http://www.w3.org/TR/CSS21/box.html#bidi-box-model" ], "matches": "left-rtl-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/ref/ltr-basic.json b/tests/web_platform/CSS2/box/ref/ltr-basic.json index a867e2e6e..699965e43 100644 --- a/tests/web_platform/CSS2/box/ref/ltr-basic.json +++ b/tests/web_platform/CSS2/box/ref/ltr-basic.json @@ -201,4 +201,4 @@ 36 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/ref/ltr-ib.json b/tests/web_platform/CSS2/box/ref/ltr-ib.json index 6ff19a422..de4e41f09 100644 --- a/tests/web_platform/CSS2/box/ref/ltr-ib.json +++ b/tests/web_platform/CSS2/box/ref/ltr-ib.json @@ -201,4 +201,4 @@ 36 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/ref/ltr-span-only-ib.json b/tests/web_platform/CSS2/box/ref/ltr-span-only-ib.json index fb6c40d22..4d3abfbf9 100644 --- a/tests/web_platform/CSS2/box/ref/ltr-span-only-ib.json +++ b/tests/web_platform/CSS2/box/ref/ltr-span-only-ib.json @@ -201,4 +201,4 @@ 36 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/ref/ltr-span-only.json b/tests/web_platform/CSS2/box/ref/ltr-span-only.json index 4955fb0ff..62b643631 100644 --- a/tests/web_platform/CSS2/box/ref/ltr-span-only.json +++ b/tests/web_platform/CSS2/box/ref/ltr-span-only.json @@ -201,4 +201,4 @@ 36 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/ref/rtl-basic.json b/tests/web_platform/CSS2/box/ref/rtl-basic.json index 7cd367068..de36ce619 100644 --- a/tests/web_platform/CSS2/box/ref/rtl-basic.json +++ b/tests/web_platform/CSS2/box/ref/rtl-basic.json @@ -201,4 +201,4 @@ 36 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/ref/rtl-ib.json b/tests/web_platform/CSS2/box/ref/rtl-ib.json index af99f2b14..daa865533 100644 --- a/tests/web_platform/CSS2/box/ref/rtl-ib.json +++ b/tests/web_platform/CSS2/box/ref/rtl-ib.json @@ -201,4 +201,4 @@ 36 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/ref/rtl-linebreak.json b/tests/web_platform/CSS2/box/ref/rtl-linebreak.json index 89d2ddfe7..85281ef20 100644 --- a/tests/web_platform/CSS2/box/ref/rtl-linebreak.json +++ b/tests/web_platform/CSS2/box/ref/rtl-linebreak.json @@ -208,4 +208,4 @@ 90 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/ref/rtl-span-only-ib.json b/tests/web_platform/CSS2/box/ref/rtl-span-only-ib.json index ba1dca0eb..614a4f1fa 100644 --- a/tests/web_platform/CSS2/box/ref/rtl-span-only-ib.json +++ b/tests/web_platform/CSS2/box/ref/rtl-span-only-ib.json @@ -201,4 +201,4 @@ 36 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/ref/rtl-span-only.json b/tests/web_platform/CSS2/box/ref/rtl-span-only.json index dec3d45fb..6a4d55f1d 100644 --- a/tests/web_platform/CSS2/box/ref/rtl-span-only.json +++ b/tests/web_platform/CSS2/box/ref/rtl-span-only.json @@ -201,4 +201,4 @@ 36 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box/test_ltr_basic.py b/tests/web_platform/CSS2/box/test_ltr_basic.py index d95d6677a..401ec412c 100644 --- a/tests/web_platform/CSS2/box/test_ltr_basic.py +++ b/tests/web_platform/CSS2/box/test_ltr_basic.py @@ -2,4 +2,4 @@ class TestLtrBasic(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ltr-basic')) + vars().update(W3CTestCase.find_tests(__file__, "ltr-basic")) diff --git a/tests/web_platform/CSS2/box/test_ltr_ib.py b/tests/web_platform/CSS2/box/test_ltr_ib.py index 9f43cf103..e39d6b35b 100644 --- a/tests/web_platform/CSS2/box/test_ltr_ib.py +++ b/tests/web_platform/CSS2/box/test_ltr_ib.py @@ -2,4 +2,4 @@ class TestLtrIb(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ltr-ib')) + vars().update(W3CTestCase.find_tests(__file__, "ltr-ib")) diff --git a/tests/web_platform/CSS2/box/test_ltr_span_only.py b/tests/web_platform/CSS2/box/test_ltr_span_only.py index 0316c57c3..1659bab72 100644 --- a/tests/web_platform/CSS2/box/test_ltr_span_only.py +++ b/tests/web_platform/CSS2/box/test_ltr_span_only.py @@ -2,4 +2,4 @@ class TestLtrSpanOnly(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ltr-span-only')) + vars().update(W3CTestCase.find_tests(__file__, "ltr-span-only")) diff --git a/tests/web_platform/CSS2/box/test_ltr_span_only_ib.py b/tests/web_platform/CSS2/box/test_ltr_span_only_ib.py index 7638a0671..36bcc519a 100644 --- a/tests/web_platform/CSS2/box/test_ltr_span_only_ib.py +++ b/tests/web_platform/CSS2/box/test_ltr_span_only_ib.py @@ -2,4 +2,4 @@ class TestLtrSpanOnlyIb(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ltr-span-only-ib')) + vars().update(W3CTestCase.find_tests(__file__, "ltr-span-only-ib")) diff --git a/tests/web_platform/CSS2/box/test_rtl_basic.py b/tests/web_platform/CSS2/box/test_rtl_basic.py index 141790296..094c0c6c0 100644 --- a/tests/web_platform/CSS2/box/test_rtl_basic.py +++ b/tests/web_platform/CSS2/box/test_rtl_basic.py @@ -2,4 +2,4 @@ class TestRtlBasic(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'rtl-basic')) + vars().update(W3CTestCase.find_tests(__file__, "rtl-basic")) diff --git a/tests/web_platform/CSS2/box/test_rtl_ib.py b/tests/web_platform/CSS2/box/test_rtl_ib.py index 6aa318ecd..c251d7185 100644 --- a/tests/web_platform/CSS2/box/test_rtl_ib.py +++ b/tests/web_platform/CSS2/box/test_rtl_ib.py @@ -2,4 +2,4 @@ class TestRtlIb(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'rtl-ib')) + vars().update(W3CTestCase.find_tests(__file__, "rtl-ib")) diff --git a/tests/web_platform/CSS2/box/test_rtl_linebreak.py b/tests/web_platform/CSS2/box/test_rtl_linebreak.py index 0e0b3e42d..6bab285a1 100644 --- a/tests/web_platform/CSS2/box/test_rtl_linebreak.py +++ b/tests/web_platform/CSS2/box/test_rtl_linebreak.py @@ -2,4 +2,4 @@ class TestRtlLinebreak(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'rtl-linebreak')) + vars().update(W3CTestCase.find_tests(__file__, "rtl-linebreak")) diff --git a/tests/web_platform/CSS2/box/test_rtl_span_only.py b/tests/web_platform/CSS2/box/test_rtl_span_only.py index 9908de8b2..4f144d0cb 100644 --- a/tests/web_platform/CSS2/box/test_rtl_span_only.py +++ b/tests/web_platform/CSS2/box/test_rtl_span_only.py @@ -2,4 +2,4 @@ class TestRtlSpanOnly(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'rtl-span-only')) + vars().update(W3CTestCase.find_tests(__file__, "rtl-span-only")) diff --git a/tests/web_platform/CSS2/box/test_rtl_span_only_ib.py b/tests/web_platform/CSS2/box/test_rtl_span_only_ib.py index 214b502cc..dfaaf60d3 100644 --- a/tests/web_platform/CSS2/box/test_rtl_span_only_ib.py +++ b/tests/web_platform/CSS2/box/test_rtl_span_only_ib.py @@ -2,4 +2,4 @@ class TestRtlSpanOnlyIb(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'rtl-span-only-ib')) + vars().update(W3CTestCase.find_tests(__file__, "rtl-span-only-ib")) diff --git a/tests/web_platform/CSS2/box_display/data/anonymous-box-generation-001.json b/tests/web_platform/CSS2/box_display/data/anonymous-box-generation-001.json index effaa5a23..39b6a6a7c 100644 --- a/tests/web_platform/CSS2/box_display/data/anonymous-box-generation-001.json +++ b/tests/web_platform/CSS2/box_display/data/anonymous-box-generation-001.json @@ -51,4 +51,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": "Block boxes with inline content followed by a block box generate an anonymous block box around the inline content." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/anonymous-boxes-inheritance-001.json b/tests/web_platform/CSS2/box_display/data/anonymous-boxes-inheritance-001.json index 2ad935fff..36d1d3d19 100644 --- a/tests/web_platform/CSS2/box_display/data/anonymous-boxes-inheritance-001.json +++ b/tests/web_platform/CSS2/box_display/data/anonymous-boxes-inheritance-001.json @@ -57,4 +57,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": "Anonymous boxes inherit property values from their non-anonymous box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/anonymous-inline-whitespace-001.json b/tests/web_platform/CSS2/box_display/data/anonymous-inline-whitespace-001.json index 179f8622c..93069842f 100644 --- a/tests/web_platform/CSS2/box_display/data/anonymous-inline-whitespace-001.json +++ b/tests/web_platform/CSS2/box_display/data/anonymous-inline-whitespace-001.json @@ -35,4 +35,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous" ], "assert": "White space is collapsed according to the 'white-space' property and does not generate an anonymous inline box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/block-in-inline-001.json b/tests/web_platform/CSS2/box_display/data/block-in-inline-001.json index 615761d6a..2ed8d4573 100644 --- a/tests/web_platform/CSS2/box_display/data/block-in-inline-001.json +++ b/tests/web_platform/CSS2/box_display/data/block-in-inline-001.json @@ -237,4 +237,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": "When an inline box contains a block box, the inline box is broken around the block." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/block-in-inline-002.json b/tests/web_platform/CSS2/box_display/data/block-in-inline-002.json index db8172df2..3f38e25a2 100644 --- a/tests/web_platform/CSS2/box_display/data/block-in-inline-002.json +++ b/tests/web_platform/CSS2/box_display/data/block-in-inline-002.json @@ -223,4 +223,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": "When an inline box contains a block box, the inline box is broken around the box and its background is drawn only behind the inline's pieces, not behind the block." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/block-in-inline-003.json b/tests/web_platform/CSS2/box_display/data/block-in-inline-003.json index e091feff5..0eb7bbe2a 100644 --- a/tests/web_platform/CSS2/box_display/data/block-in-inline-003.json +++ b/tests/web_platform/CSS2/box_display/data/block-in-inline-003.json @@ -61,4 +61,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "When an inline box contains a block box, the inline box is broken around the box and its pieces, if empty, will not show any background." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/block-in-inline-004.json b/tests/web_platform/CSS2/box_display/data/block-in-inline-004.json index aae7d2796..1dc22fe59 100644 --- a/tests/web_platform/CSS2/box_display/data/block-in-inline-004.json +++ b/tests/web_platform/CSS2/box_display/data/block-in-inline-004.json @@ -57,4 +57,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "A block that splits an inline still inherits from the inline, even in dynamic cases." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/block-in-inline-007.json b/tests/web_platform/CSS2/box_display/data/block-in-inline-007.json index 6917fe3a6..15deea50e 100644 --- a/tests/web_platform/CSS2/box_display/data/block-in-inline-007.json +++ b/tests/web_platform/CSS2/box_display/data/block-in-inline-007.json @@ -181,4 +181,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "When an inline box contains block boxes, the inline box is broken around the blocks." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/block-in-inline-008.json b/tests/web_platform/CSS2/box_display/data/block-in-inline-008.json index 9c253ea78..0fc93c355 100644 --- a/tests/web_platform/CSS2/box_display/data/block-in-inline-008.json +++ b/tests/web_platform/CSS2/box_display/data/block-in-inline-008.json @@ -75,4 +75,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/block-in-inline-relpos-001.json b/tests/web_platform/CSS2/box_display/data/block-in-inline-relpos-001.json index 4f9594578..f2e49416b 100644 --- a/tests/web_platform/CSS2/box_display/data/block-in-inline-relpos-001.json +++ b/tests/web_platform/CSS2/box_display/data/block-in-inline-relpos-001.json @@ -231,4 +231,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": "When such an inline box is affected by relative positioning, the relative positioning also affects the block-level box contained in the inline box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/block-in-inline-relpos-002.json b/tests/web_platform/CSS2/box_display/data/block-in-inline-relpos-002.json index 3908f4137..11be00019 100644 --- a/tests/web_platform/CSS2/box_display/data/block-in-inline-relpos-002.json +++ b/tests/web_platform/CSS2/box_display/data/block-in-inline-relpos-002.json @@ -277,4 +277,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": "When such an inline box is affected by relative positioning, the relative positioning also affects the block-level box contained in the inline box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/box-generation-001.json b/tests/web_platform/CSS2/box_display/data/box-generation-001.json index 6886bf6f1..4e30b52d9 100644 --- a/tests/web_platform/CSS2/box_display/data/box-generation-001.json +++ b/tests/web_platform/CSS2/box_display/data/box-generation-001.json @@ -94,4 +94,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#block-boxes" ], "assert": "Block boxes can reside within a principal block box established by a block-level element; inline boxes are outside of the principal block box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/box-generation-002.json b/tests/web_platform/CSS2/box_display/data/box-generation-002.json index b4e2bf355..5979a6b60 100644 --- a/tests/web_platform/CSS2/box_display/data/box-generation-002.json +++ b/tests/web_platform/CSS2/box_display/data/box-generation-002.json @@ -95,4 +95,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#block-boxes" ], "assert": "Inline boxes can reside within a principal block box established by a block-level element; block boxes are outside of the principal block box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/box-generation-003.json b/tests/web_platform/CSS2/box_display/data/box-generation-003.json index ffd9c6e6a..64b86917c 100644 --- a/tests/web_platform/CSS2/box_display/data/box-generation-003.json +++ b/tests/web_platform/CSS2/box_display/data/box-generation-003.json @@ -40,4 +40,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#block-boxes" ], "assert": "Some block-level elements (i.e. 'list-item' elements) can generate additional boxes outside the principal block box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-001.json b/tests/web_platform/CSS2/box_display/data/containing-block-001.json index d14d0e131..5fd38c155 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-001.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-001.json @@ -58,4 +58,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "If the element's position is 'relative', the containing block is formed by the content edge of the nearest block-level ancestor box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-002.json b/tests/web_platform/CSS2/box_display/data/containing-block-002.json index 411298b06..6912575df 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-002.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-002.json @@ -76,4 +76,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "If the element's position is 'relative', the containing block is formed by the content edge of the nearest table cell ancestor box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-003.json b/tests/web_platform/CSS2/box_display/data/containing-block-003.json index fb27b0485..850d6d709 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-003.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-003.json @@ -64,4 +64,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "If the element's position is 'relative', the containing block is formed by the content edge of the nearest inline-block ancestor box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-004.json b/tests/web_platform/CSS2/box_display/data/containing-block-004.json index 38b8af1a0..019afb057 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-004.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-004.json @@ -58,4 +58,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "If the element's position is 'static', the containing block is formed by the content edge of the nearest block-level ancestor box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-005.json b/tests/web_platform/CSS2/box_display/data/containing-block-005.json index e0caa96fe..d5b115704 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-005.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-005.json @@ -76,4 +76,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "If the element's position is 'static', the containing block is formed by the content edge of the nearest table cell ancestor box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-006.json b/tests/web_platform/CSS2/box_display/data/containing-block-006.json index db5a78dca..f9718c1c7 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-006.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-006.json @@ -58,4 +58,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "If the element's position is 'static', the containing block is formed by the content edge of the nearest inline-block ancestor box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-007.json b/tests/web_platform/CSS2/box_display/data/containing-block-007.json index aa721fb80..c4d318145 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-007.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-007.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "The containing block is established by the viewport when an element uses fixed positioning." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-008.json b/tests/web_platform/CSS2/box_display/data/containing-block-008.json index d344fa473..9e1e8f649 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-008.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-008.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "If the element has 'position: absolute', the containing block is established by the nearest positioned ancestor." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-009.json b/tests/web_platform/CSS2/box_display/data/containing-block-009.json index 96dffb86a..a7a3aff34 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-009.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-009.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "If the element has 'position: absolute', the containing block is established by the nearest positioned ancestor." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-010.json b/tests/web_platform/CSS2/box_display/data/containing-block-010.json index 2ff14ab38..1ef5c6366 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-010.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-010.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "If the element has 'position: absolute', the containing block is established by the nearest positioned ancestor." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-011.json b/tests/web_platform/CSS2/box_display/data/containing-block-011.json index a9f473540..cfc38289a 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-011.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-011.json @@ -75,4 +75,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "If the ancestor is inline-level, positioned absolute, and direction is left-to-right, the top/left of the containing block determines the top/left padding edges of the first box generated by the ancestor." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-013.json b/tests/web_platform/CSS2/box_display/data/containing-block-013.json index 5eb777561..473e8a704 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-013.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-013.json @@ -75,4 +75,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "If the ancestor is inline-level, positioned absolute, and direction is left-to-right, the top/left of the containing block determines the top/left padding edges of the first box generated by the ancestor." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-015.json b/tests/web_platform/CSS2/box_display/data/containing-block-015.json index e337286c4..e7c10378c 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-015.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-015.json @@ -75,4 +75,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "If the ancestor is inline-level, positioned absolute, and direction is left-to-right, the top/left of the containing block determines the top/left padding edges of the first box generated by the ancestor." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-017.json b/tests/web_platform/CSS2/box_display/data/containing-block-017.json index ab7f98681..5576eea70 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-017.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-017.json @@ -183,4 +183,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "The containing block of an absolutely positioned block-level element is formed by the padding edge of its nearest (closest) positioned ancestor element." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-018.json b/tests/web_platform/CSS2/box_display/data/containing-block-018.json index 985d12e8f..1386140f4 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-018.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-018.json @@ -179,4 +179,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "The containing block of an absolutely positioned block-level element is formed by the padding edge of its nearest (closest) positioned ancestor element." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-019.json b/tests/web_platform/CSS2/box_display/data/containing-block-019.json index b7d53ba61..9c7c478a9 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-019.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-019.json @@ -79,4 +79,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "When the nearest (closest within document containment hierarchy) positioned ancestor of an absolutely positioned element is a block-level element, then the containing block of such absolutely positioned element is formed by the padding edge of such nearest positioned ancestor." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-020.json b/tests/web_platform/CSS2/box_display/data/containing-block-020.json index 3bd9dae20..bf9f984d1 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-020.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-020.json @@ -79,4 +79,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "When the nearest (closest within document containment hierarchy) positioned ancestor of an absolutely positioned element is a block-level element, then the containing block of such absolutely positioned element is formed by the padding edge of such nearest (closest) positioned ancestor." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-021.json b/tests/web_platform/CSS2/box_display/data/containing-block-021.json index 3eb74f378..c9c5849eb 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-021.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-021.json @@ -79,4 +79,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "When the nearest (closest within document containment hierarchy) positioned ancestor of an absolutely positioned element is a block-level element, then the containing block of such absolutely positioned element is formed by the padding edge of such nearest positioned ancestor." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-022.json b/tests/web_platform/CSS2/box_display/data/containing-block-022.json index 18b466533..1e715b703 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-022.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-022.json @@ -79,4 +79,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "When the nearest (closest within document containment hierarchy) positioned ancestor of an absolutely positioned element is a block-level element, then the containing block of such absolutely positioned element is formed by the padding edge of such nearest positioned ancestor." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-023.json b/tests/web_platform/CSS2/box_display/data/containing-block-023.json index 330803e03..751ba0ec5 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-023.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-023.json @@ -65,4 +65,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "When there are no positioned ancestors, then the initial containing block is used." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-024.json b/tests/web_platform/CSS2/box_display/data/containing-block-024.json index fb9e5855a..615941b4f 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-024.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-024.json @@ -58,4 +58,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "An absolutely positioned element ignores page breaks in paged media." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-025.json b/tests/web_platform/CSS2/box_display/data/containing-block-025.json index 1ef29b3e8..9a52596ed 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-025.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-025.json @@ -58,4 +58,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": "An absolutely positioned element positioned beyond the boundaries of the page being laid out can be omitted, rendered on the current page or on a following page." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-026.json b/tests/web_platform/CSS2/box_display/data/containing-block-026.json index 65b178a13..d29568d78 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-026.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-026.json @@ -57,4 +57,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#containing-block" ], "assert": "An element's position is based on the position of its containing block." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-027.json b/tests/web_platform/CSS2/box_display/data/containing-block-027.json index 78d2fd32a..13e9d93c5 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-027.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-027.json @@ -59,4 +59,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#containing-block" ], "assert": "Content may overflow containing blocks." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-028.json b/tests/web_platform/CSS2/box_display/data/containing-block-028.json index bcb1d9480..c9bd6547c 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-028.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-028.json @@ -61,4 +61,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#block-boxes" ], "assert": "Principal block boxes establish a containing block for descendant boxes." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-029.json b/tests/web_platform/CSS2/box_display/data/containing-block-029.json index cdff6752e..9a84138d1 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-029.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-029.json @@ -59,4 +59,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#block-boxes" ], "assert": "Principal block boxes establish a containing block for generated content." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/containing-block-030.json b/tests/web_platform/CSS2/box_display/data/containing-block-030.json index 35dc75a95..395dac94e 100644 --- a/tests/web_platform/CSS2/box_display/data/containing-block-030.json +++ b/tests/web_platform/CSS2/box_display/data/containing-block-030.json @@ -40,4 +40,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#containing-block" ], "assert": "Content may overflow containing blocks." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/delete-block-in-inlines-beginning-001.json b/tests/web_platform/CSS2/box_display/data/delete-block-in-inlines-beginning-001.json index 61fd8d267..f3c6bf900 100644 --- a/tests/web_platform/CSS2/box_display/data/delete-block-in-inlines-beginning-001.json +++ b/tests/web_platform/CSS2/box_display/data/delete-block-in-inlines-beginning-001.json @@ -101,4 +101,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/delete-block-in-inlines-end-001.json b/tests/web_platform/CSS2/box_display/data/delete-block-in-inlines-end-001.json index 61fd8d267..f3c6bf900 100644 --- a/tests/web_platform/CSS2/box_display/data/delete-block-in-inlines-end-001.json +++ b/tests/web_platform/CSS2/box_display/data/delete-block-in-inlines-end-001.json @@ -101,4 +101,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/delete-block-in-inlines-middle-001.json b/tests/web_platform/CSS2/box_display/data/delete-block-in-inlines-middle-001.json index 61fd8d267..f3c6bf900 100644 --- a/tests/web_platform/CSS2/box_display/data/delete-block-in-inlines-middle-001.json +++ b/tests/web_platform/CSS2/box_display/data/delete-block-in-inlines-middle-001.json @@ -101,4 +101,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-beginning-001.json b/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-beginning-001.json index 6bf1583e7..e9532f99d 100644 --- a/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-beginning-001.json +++ b/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-beginning-001.json @@ -135,4 +135,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-end-001.json b/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-end-001.json index 6bf1583e7..e9532f99d 100644 --- a/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-end-001.json +++ b/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-end-001.json @@ -135,4 +135,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-middle-001.json b/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-middle-001.json index 6bf1583e7..e9532f99d 100644 --- a/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-middle-001.json +++ b/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-middle-001.json @@ -135,4 +135,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-middle-002.json b/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-middle-002.json index 28679f899..6955b7227 100644 --- a/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-middle-002.json +++ b/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-middle-002.json @@ -161,4 +161,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-middle-003.json b/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-middle-003.json index 28679f899..6955b7227 100644 --- a/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-middle-003.json +++ b/tests/web_platform/CSS2/box_display/data/delete-inline-in-blocks-middle-003.json @@ -161,4 +161,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/descendant-display-none-001.json b/tests/web_platform/CSS2/box_display/data/descendant-display-none-001.json index 98f5f4a26..0e46a0296 100644 --- a/tests/web_platform/CSS2/box_display/data/descendant-display-none-001.json +++ b/tests/web_platform/CSS2/box_display/data/descendant-display-none-001.json @@ -46,4 +46,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "Descendant elements do not get generated when parent is 'display: none'." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/descendant-display-override-001.json b/tests/web_platform/CSS2/box_display/data/descendant-display-override-001.json index f20b36818..c02da3931 100644 --- a/tests/web_platform/CSS2/box_display/data/descendant-display-override-001.json +++ b/tests/web_platform/CSS2/box_display/data/descendant-display-override-001.json @@ -46,4 +46,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "Descendant elements cannot override the parent's setting of the 'display' property when set to 'none'." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-001.json b/tests/web_platform/CSS2/box_display/data/display-001.json index 4bb9fe88f..e8cde8a88 100644 --- a/tests/web_platform/CSS2/box_display/data/display-001.json +++ b/tests/web_platform/CSS2/box_display/data/display-001.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'inline' behaves in layout as an inline element." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-002.json b/tests/web_platform/CSS2/box_display/data/display-002.json index f2cf4d205..fd6b1d32d 100644 --- a/tests/web_platform/CSS2/box_display/data/display-002.json +++ b/tests/web_platform/CSS2/box_display/data/display-002.json @@ -51,4 +51,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'block' behaves in layout as a block." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-003.json b/tests/web_platform/CSS2/box_display/data/display-003.json index b8bbe9279..49ead8e55 100644 --- a/tests/web_platform/CSS2/box_display/data/display-003.json +++ b/tests/web_platform/CSS2/box_display/data/display-003.json @@ -39,4 +39,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'list-item' behaves in layout as a list item block." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-005.json b/tests/web_platform/CSS2/box_display/data/display-005.json index 8e910aa1b..051f5f499 100644 --- a/tests/web_platform/CSS2/box_display/data/display-005.json +++ b/tests/web_platform/CSS2/box_display/data/display-005.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'inline-block' is formatted in layout as an inline-level element: it creates a new block formatting context for its descendants but it is laid out, flowed as an inline-level element. An inline-block does not begin on a new line and does not require to begin on a new line." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-006.json b/tests/web_platform/CSS2/box_display/data/display-006.json index 8976774bd..411041762 100644 --- a/tests/web_platform/CSS2/box_display/data/display-006.json +++ b/tests/web_platform/CSS2/box_display/data/display-006.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'table' behaves in layout as a table." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-007.json b/tests/web_platform/CSS2/box_display/data/display-007.json index 7d6fe3ae2..15ca1bda7 100644 --- a/tests/web_platform/CSS2/box_display/data/display-007.json +++ b/tests/web_platform/CSS2/box_display/data/display-007.json @@ -75,4 +75,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'inline-table' behaves in layout as an inline table." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-008.json b/tests/web_platform/CSS2/box_display/data/display-008.json index 68bbac9af..4c1645b58 100644 --- a/tests/web_platform/CSS2/box_display/data/display-008.json +++ b/tests/web_platform/CSS2/box_display/data/display-008.json @@ -116,4 +116,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'table-row-group' behaves in layout as a table row group." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-009.json b/tests/web_platform/CSS2/box_display/data/display-009.json index 3ecb8e075..9890d9bb5 100644 --- a/tests/web_platform/CSS2/box_display/data/display-009.json +++ b/tests/web_platform/CSS2/box_display/data/display-009.json @@ -125,4 +125,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'table-header-group' behaves in layout as a table header group." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-010.json b/tests/web_platform/CSS2/box_display/data/display-010.json index 6819c2758..8b316817b 100644 --- a/tests/web_platform/CSS2/box_display/data/display-010.json +++ b/tests/web_platform/CSS2/box_display/data/display-010.json @@ -83,4 +83,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'table-footer-group' behaves in layout as a table footer group." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-011.json b/tests/web_platform/CSS2/box_display/data/display-011.json index 38c53703c..19ae925e6 100644 --- a/tests/web_platform/CSS2/box_display/data/display-011.json +++ b/tests/web_platform/CSS2/box_display/data/display-011.json @@ -67,4 +67,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'table-row' behaves in layout as a table row." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-012.json b/tests/web_platform/CSS2/box_display/data/display-012.json index aa2adc45d..24180b238 100644 --- a/tests/web_platform/CSS2/box_display/data/display-012.json +++ b/tests/web_platform/CSS2/box_display/data/display-012.json @@ -75,4 +75,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'table-column-group' behaves in layout as a table column group." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-013.json b/tests/web_platform/CSS2/box_display/data/display-013.json index dc7581e12..7ce00f193 100644 --- a/tests/web_platform/CSS2/box_display/data/display-013.json +++ b/tests/web_platform/CSS2/box_display/data/display-013.json @@ -75,4 +75,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'table-column' behaves in layout as a table column." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-014.json b/tests/web_platform/CSS2/box_display/data/display-014.json index cdad9f1ec..f0f6ab93a 100644 --- a/tests/web_platform/CSS2/box_display/data/display-014.json +++ b/tests/web_platform/CSS2/box_display/data/display-014.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'table-cell' behaves in layout as a table cell." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-015.json b/tests/web_platform/CSS2/box_display/data/display-015.json index 4ad7868e2..780965cd9 100644 --- a/tests/web_platform/CSS2/box_display/data/display-015.json +++ b/tests/web_platform/CSS2/box_display/data/display-015.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'table-caption' behaves in layout as a table caption." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-016.json b/tests/web_platform/CSS2/box_display/data/display-016.json index 184371f12..31d96a0d1 100644 --- a/tests/web_platform/CSS2/box_display/data/display-016.json +++ b/tests/web_platform/CSS2/box_display/data/display-016.json @@ -32,4 +32,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'none' has no layout." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-017.json b/tests/web_platform/CSS2/box_display/data/display-017.json index 4fefc5d48..00edbe0a8 100644 --- a/tests/web_platform/CSS2/box_display/data/display-017.json +++ b/tests/web_platform/CSS2/box_display/data/display-017.json @@ -51,4 +51,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The property 'display' set to 'inherit' can inherit its layout behavior from a parent container." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-018.json b/tests/web_platform/CSS2/box_display/data/display-018.json index 9f484f916..5b3fd5097 100644 --- a/tests/web_platform/CSS2/box_display/data/display-018.json +++ b/tests/web_platform/CSS2/box_display/data/display-018.json @@ -140,4 +140,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "When an element with its property 'display' set to 'inline', then it makes its box laid out horizontally, beginning at the top of its containing block without beginning on a new line and without requiring to begin on a new line. Elements with 'display' set to 'inline' are laid out horizontally, one after the other, in the line box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-applies-to-001.json b/tests/web_platform/CSS2/box_display/data/display-applies-to-001.json index 4d0d5ad26..7f75e1b4a 100644 --- a/tests/web_platform/CSS2/box_display/data/display-applies-to-001.json +++ b/tests/web_platform/CSS2/box_display/data/display-applies-to-001.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "Display set to 'inline' applies the correct rendering behavior for the 'a' element." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-applies-to-002.json b/tests/web_platform/CSS2/box_display/data/display-applies-to-002.json index b7ea5fcfe..c78d5180c 100644 --- a/tests/web_platform/CSS2/box_display/data/display-applies-to-002.json +++ b/tests/web_platform/CSS2/box_display/data/display-applies-to-002.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "Display set to 'inline' applies the correct rendering behavior for the 'abbr' element." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-change-001.json b/tests/web_platform/CSS2/box_display/data/display-change-001.json index ed4785bc9..be948893d 100644 --- a/tests/web_platform/CSS2/box_display/data/display-change-001.json +++ b/tests/web_platform/CSS2/box_display/data/display-change-001.json @@ -75,4 +75,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-initial-001.json b/tests/web_platform/CSS2/box_display/data/display-initial-001.json index de3cd8d70..0c0f768d0 100644 --- a/tests/web_platform/CSS2/box_display/data/display-initial-001.json +++ b/tests/web_platform/CSS2/box_display/data/display-initial-001.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "The initial display value for all elements is 'inline'." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-none-001.json b/tests/web_platform/CSS2/box_display/data/display-none-001.json index 9805c92cb..f3be94bfc 100644 --- a/tests/web_platform/CSS2/box_display/data/display-none-001.json +++ b/tests/web_platform/CSS2/box_display/data/display-none-001.json @@ -41,4 +41,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#dis-pos-flo" ], "assert": "Elements set to 'display: none' do not render even if element is positioned absolute." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-none-002.json b/tests/web_platform/CSS2/box_display/data/display-none-002.json index 0b20ddcec..b39fbdf06 100644 --- a/tests/web_platform/CSS2/box_display/data/display-none-002.json +++ b/tests/web_platform/CSS2/box_display/data/display-none-002.json @@ -41,4 +41,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#dis-pos-flo" ], "assert": "Elements set to 'display: none' do not render even if element is positioned fixed." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/display-none-003.json b/tests/web_platform/CSS2/box_display/data/display-none-003.json index 8d43ac39f..6bfa0d884 100644 --- a/tests/web_platform/CSS2/box_display/data/display-none-003.json +++ b/tests/web_platform/CSS2/box_display/data/display-none-003.json @@ -41,4 +41,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#dis-pos-flo" ], "assert": "Elements set to 'display: none' do not render even if element is floated." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-begin-001.json b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-begin-001.json index 7b20b656a..8e868c372 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-begin-001.json +++ b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-begin-001.json @@ -349,4 +349,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-begin-002.json b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-begin-002.json index b1c4f773b..523ed2f4d 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-begin-002.json +++ b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-begin-002.json @@ -349,4 +349,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-begin-003.json b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-begin-003.json index 1ee96972d..b8adc9db6 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-begin-003.json +++ b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-begin-003.json @@ -349,4 +349,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-end-001.json b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-end-001.json index 2d19ea168..2f9a2a217 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-end-001.json +++ b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-end-001.json @@ -349,4 +349,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-end-002.json b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-end-002.json index de9ca14c7..4ad64b63c 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-end-002.json +++ b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-end-002.json @@ -349,4 +349,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-end-003.json b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-end-003.json index e9e6baf0f..fea0774ed 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-end-003.json +++ b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-end-003.json @@ -349,4 +349,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-middle-001.json b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-middle-001.json index 540f7af19..a0cd220e2 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-middle-001.json +++ b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-middle-001.json @@ -349,4 +349,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-middle-002.json b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-middle-002.json index 28a607c10..4920ce99e 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-middle-002.json +++ b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-middle-002.json @@ -349,4 +349,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-middle-003.json b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-middle-003.json index 8847f8c7f..dce9007d2 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-middle-003.json +++ b/tests/web_platform/CSS2/box_display/data/insert-block-in-blocks-n-inlines-middle-003.json @@ -349,4 +349,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-block-in-inlines-beginning-001.json b/tests/web_platform/CSS2/box_display/data/insert-block-in-inlines-beginning-001.json index 1a140f603..cc272756a 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-block-in-inlines-beginning-001.json +++ b/tests/web_platform/CSS2/box_display/data/insert-block-in-inlines-beginning-001.json @@ -147,4 +147,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-block-in-inlines-end-001.json b/tests/web_platform/CSS2/box_display/data/insert-block-in-inlines-end-001.json index 1874c926d..936e190b9 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-block-in-inlines-end-001.json +++ b/tests/web_platform/CSS2/box_display/data/insert-block-in-inlines-end-001.json @@ -147,4 +147,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-block-in-inlines-middle-001.json b/tests/web_platform/CSS2/box_display/data/insert-block-in-inlines-middle-001.json index 7dfd357f1..593388742 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-block-in-inlines-middle-001.json +++ b/tests/web_platform/CSS2/box_display/data/insert-block-in-inlines-middle-001.json @@ -151,4 +151,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-beginning-001.json b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-beginning-001.json index c3045ab91..a97c8e804 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-beginning-001.json +++ b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-beginning-001.json @@ -169,4 +169,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-end-001.json b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-end-001.json index 4979801a4..8b268f6cb 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-end-001.json +++ b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-end-001.json @@ -169,4 +169,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-middle-001.json b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-middle-001.json index 1ac4ebe8a..a7009df8b 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-middle-001.json +++ b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-middle-001.json @@ -195,4 +195,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-middle-002.json b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-middle-002.json index 806255300..c2c090b28 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-middle-002.json +++ b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-middle-002.json @@ -195,4 +195,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-begin-001.json b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-begin-001.json index f4f14479b..8283b23d8 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-begin-001.json +++ b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-begin-001.json @@ -233,4 +233,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-begin-002.json b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-begin-002.json index 081241d69..2ce409306 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-begin-002.json +++ b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-begin-002.json @@ -237,4 +237,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-begin-003.json b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-begin-003.json index 908ee3050..5bc1fa6e1 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-begin-003.json +++ b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-begin-003.json @@ -233,4 +233,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-end-001.json b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-end-001.json index 8205f007c..3c9dd0497 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-end-001.json +++ b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-end-001.json @@ -233,4 +233,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-end-002.json b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-end-002.json index 62b8f417e..f0755046c 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-end-002.json +++ b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-end-002.json @@ -237,4 +237,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-end-003.json b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-end-003.json index a7933d1d6..cdb90621d 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-end-003.json +++ b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-end-003.json @@ -233,4 +233,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-middle-001.json b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-middle-001.json index f1d055b5a..c72e1e36f 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-middle-001.json +++ b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-middle-001.json @@ -233,4 +233,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-middle-002.json b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-middle-002.json index 8650f154e..0a04c9e24 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-middle-002.json +++ b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-middle-002.json @@ -237,4 +237,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-middle-003.json b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-middle-003.json index c94f6abc8..72e091008 100644 --- a/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-middle-003.json +++ b/tests/web_platform/CSS2/box_display/data/insert-inline-in-blocks-n-inlines-middle-003.json @@ -233,4 +233,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/root-box-002.json b/tests/web_platform/CSS2/box_display/data/root-box-002.json index 1f3280678..40c883c31 100644 --- a/tests/web_platform/CSS2/box_display/data/root-box-002.json +++ b/tests/web_platform/CSS2/box_display/data/root-box-002.json @@ -128,4 +128,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": "HTML elements can be set to other display property values - like sub-table elements just like in this testcase - in order to behave like another element." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/root-box-003.json b/tests/web_platform/CSS2/box_display/data/root-box-003.json index ddf030376..d806cdf74 100644 --- a/tests/web_platform/CSS2/box_display/data/root-box-003.json +++ b/tests/web_platform/CSS2/box_display/data/root-box-003.json @@ -45,4 +45,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/root-canvas-001.json b/tests/web_platform/CSS2/box_display/data/root-canvas-001.json index 71bd5b743..feea02944 100644 --- a/tests/web_platform/CSS2/box_display/data/root-canvas-001.json +++ b/tests/web_platform/CSS2/box_display/data/root-canvas-001.json @@ -102,4 +102,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details" ], "assert": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/viewport-001.json b/tests/web_platform/CSS2/box_display/data/viewport-001.json index 8ff049e08..54ffb5caa 100644 --- a/tests/web_platform/CSS2/box_display/data/viewport-001.json +++ b/tests/web_platform/CSS2/box_display/data/viewport-001.json @@ -34,4 +34,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#viewport" ], "assert": "Resizing the viewport may change the layout of page." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/viewport-002.json b/tests/web_platform/CSS2/box_display/data/viewport-002.json index 5642766c3..d2a6c8ff0 100644 --- a/tests/web_platform/CSS2/box_display/data/viewport-002.json +++ b/tests/web_platform/CSS2/box_display/data/viewport-002.json @@ -31,4 +31,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#viewport" ], "assert": "Scrolling mechanism should be available when canvas is larger than viewport." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/viewport-003.json b/tests/web_platform/CSS2/box_display/data/viewport-003.json index 61632e790..33e6042fd 100644 --- a/tests/web_platform/CSS2/box_display/data/viewport-003.json +++ b/tests/web_platform/CSS2/box_display/data/viewport-003.json @@ -32,4 +32,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#viewport" ], "assert": "Scrolling mechanism should be available when canvas is larger than viewport even when page is set to right-to-left." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/data/viewport-004.json b/tests/web_platform/CSS2/box_display/data/viewport-004.json index 567b06045..2297b04bf 100644 --- a/tests/web_platform/CSS2/box_display/data/viewport-004.json +++ b/tests/web_platform/CSS2/box_display/data/viewport-004.json @@ -66,4 +66,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#viewport" ], "assert": "User agents may render more than one canvas." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/anonymous-box-generation-001.json b/tests/web_platform/CSS2/box_display/ref/anonymous-box-generation-001.json index 7b1fa4efa..7298d0dc1 100644 --- a/tests/web_platform/CSS2/box_display/ref/anonymous-box-generation-001.json +++ b/tests/web_platform/CSS2/box_display/ref/anonymous-box-generation-001.json @@ -146,4 +146,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/anonymous-boxes-inheritance-001.json b/tests/web_platform/CSS2/box_display/ref/anonymous-boxes-inheritance-001.json index 8e5660f58..4b911266d 100644 --- a/tests/web_platform/CSS2/box_display/ref/anonymous-boxes-inheritance-001.json +++ b/tests/web_platform/CSS2/box_display/ref/anonymous-boxes-inheritance-001.json @@ -148,4 +148,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/anonymous-inline-whitespace-001.json b/tests/web_platform/CSS2/box_display/ref/anonymous-inline-whitespace-001.json index cfc5ae725..966f8b001 100644 --- a/tests/web_platform/CSS2/box_display/ref/anonymous-inline-whitespace-001.json +++ b/tests/web_platform/CSS2/box_display/ref/anonymous-inline-whitespace-001.json @@ -92,4 +92,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/block-in-inline-001.json b/tests/web_platform/CSS2/box_display/ref/block-in-inline-001.json index ec79f8334..73b7b69c9 100644 --- a/tests/web_platform/CSS2/box_display/ref/block-in-inline-001.json +++ b/tests/web_platform/CSS2/box_display/ref/block-in-inline-001.json @@ -491,4 +491,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/block-in-inline-002.json b/tests/web_platform/CSS2/box_display/ref/block-in-inline-002.json index ec79f8334..73b7b69c9 100644 --- a/tests/web_platform/CSS2/box_display/ref/block-in-inline-002.json +++ b/tests/web_platform/CSS2/box_display/ref/block-in-inline-002.json @@ -491,4 +491,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/block-in-inline-003.json b/tests/web_platform/CSS2/box_display/ref/block-in-inline-003.json index 648938f39..6367c41b7 100644 --- a/tests/web_platform/CSS2/box_display/ref/block-in-inline-003.json +++ b/tests/web_platform/CSS2/box_display/ref/block-in-inline-003.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/block-in-inline-004.json b/tests/web_platform/CSS2/box_display/ref/block-in-inline-004.json index c8673a5b3..2e483e677 100644 --- a/tests/web_platform/CSS2/box_display/ref/block-in-inline-004.json +++ b/tests/web_platform/CSS2/box_display/ref/block-in-inline-004.json @@ -203,4 +203,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/block-in-inline-007.json b/tests/web_platform/CSS2/box_display/ref/block-in-inline-007.json index 0f2ffa11d..29fd03903 100644 --- a/tests/web_platform/CSS2/box_display/ref/block-in-inline-007.json +++ b/tests/web_platform/CSS2/box_display/ref/block-in-inline-007.json @@ -594,4 +594,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/block-in-inline-008.json b/tests/web_platform/CSS2/box_display/ref/block-in-inline-008.json index 24f038e57..6779400f9 100644 --- a/tests/web_platform/CSS2/box_display/ref/block-in-inline-008.json +++ b/tests/web_platform/CSS2/box_display/ref/block-in-inline-008.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/block-in-inline-relpos-001.json b/tests/web_platform/CSS2/box_display/ref/block-in-inline-relpos-001.json index 6a2702b19..04126618e 100644 --- a/tests/web_platform/CSS2/box_display/ref/block-in-inline-relpos-001.json +++ b/tests/web_platform/CSS2/box_display/ref/block-in-inline-relpos-001.json @@ -423,4 +423,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/block-in-inline-relpos-002.json b/tests/web_platform/CSS2/box_display/ref/block-in-inline-relpos-002.json index 001e5a70f..c2e921aed 100644 --- a/tests/web_platform/CSS2/box_display/ref/block-in-inline-relpos-002.json +++ b/tests/web_platform/CSS2/box_display/ref/block-in-inline-relpos-002.json @@ -559,4 +559,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/box-generation-001.json b/tests/web_platform/CSS2/box_display/ref/box-generation-001.json index 6ae44d3fb..6c5736acb 100644 --- a/tests/web_platform/CSS2/box_display/ref/box-generation-001.json +++ b/tests/web_platform/CSS2/box_display/ref/box-generation-001.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/box-generation-002.json b/tests/web_platform/CSS2/box_display/ref/box-generation-002.json index c424f1077..ac5b62cbe 100644 --- a/tests/web_platform/CSS2/box_display/ref/box-generation-002.json +++ b/tests/web_platform/CSS2/box_display/ref/box-generation-002.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/box-generation-003.json b/tests/web_platform/CSS2/box_display/ref/box-generation-003.json index dbe17a588..0d6b0267e 100644 --- a/tests/web_platform/CSS2/box_display/ref/box-generation-003.json +++ b/tests/web_platform/CSS2/box_display/ref/box-generation-003.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-001.json b/tests/web_platform/CSS2/box_display/ref/containing-block-001.json index 60f31195f..fbff21249 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-001.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-001.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-002.json b/tests/web_platform/CSS2/box_display/ref/containing-block-002.json index 19f83a2d3..eb975a3e4 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-002.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-002.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-003.json b/tests/web_platform/CSS2/box_display/ref/containing-block-003.json index 0ac473eac..24a9e82f4 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-003.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-003.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-004.json b/tests/web_platform/CSS2/box_display/ref/containing-block-004.json index 60f31195f..fbff21249 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-004.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-004.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-005.json b/tests/web_platform/CSS2/box_display/ref/containing-block-005.json index 19f83a2d3..eb975a3e4 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-005.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-005.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-006.json b/tests/web_platform/CSS2/box_display/ref/containing-block-006.json index c768f9115..dc6f888cc 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-006.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-006.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-007.json b/tests/web_platform/CSS2/box_display/ref/containing-block-007.json index 9d5381aac..b9c8c2158 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-007.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-007.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-008.json b/tests/web_platform/CSS2/box_display/ref/containing-block-008.json index 35e3f1aef..08c75fafd 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-008.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-008.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-009.json b/tests/web_platform/CSS2/box_display/ref/containing-block-009.json index fcc70923f..d71f64cc9 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-009.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-009.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-010.json b/tests/web_platform/CSS2/box_display/ref/containing-block-010.json index 35e3f1aef..08c75fafd 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-010.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-010.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-011.json b/tests/web_platform/CSS2/box_display/ref/containing-block-011.json index 379a58627..a79c8ca24 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-011.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-011.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-013.json b/tests/web_platform/CSS2/box_display/ref/containing-block-013.json index b02fd429e..36c4b6480 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-013.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-013.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-015.json b/tests/web_platform/CSS2/box_display/ref/containing-block-015.json index b02fd429e..36c4b6480 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-015.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-015.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-017.json b/tests/web_platform/CSS2/box_display/ref/containing-block-017.json index 118da4ba9..e0a8bf4df 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-017.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-017.json @@ -439,4 +439,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-018.json b/tests/web_platform/CSS2/box_display/ref/containing-block-018.json index e1b7f3d6a..ac986543b 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-018.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-018.json @@ -471,4 +471,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-019.json b/tests/web_platform/CSS2/box_display/ref/containing-block-019.json index ac40882f6..a40a7c149 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-019.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-019.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-020.json b/tests/web_platform/CSS2/box_display/ref/containing-block-020.json index 31ca64f6e..4ed66e3bd 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-020.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-020.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-021.json b/tests/web_platform/CSS2/box_display/ref/containing-block-021.json index ac40882f6..a40a7c149 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-021.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-021.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-022.json b/tests/web_platform/CSS2/box_display/ref/containing-block-022.json index 31ca64f6e..4ed66e3bd 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-022.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-022.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-023.json b/tests/web_platform/CSS2/box_display/ref/containing-block-023.json index 087e1029b..8794b7d5e 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-023.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-023.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-024.json b/tests/web_platform/CSS2/box_display/ref/containing-block-024.json index 68fbeca2e..6365f8f33 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-024.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-024.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-025.json b/tests/web_platform/CSS2/box_display/ref/containing-block-025.json index f364e48f2..4cf921e14 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-025.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-025.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-026.json b/tests/web_platform/CSS2/box_display/ref/containing-block-026.json index e58212572..5aa86c1d6 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-026.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-026.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-027.json b/tests/web_platform/CSS2/box_display/ref/containing-block-027.json index 13beeadfe..3231598aa 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-027.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-027.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-028.json b/tests/web_platform/CSS2/box_display/ref/containing-block-028.json index a3d303eaa..1919a79ee 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-028.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-028.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-029.json b/tests/web_platform/CSS2/box_display/ref/containing-block-029.json index 7c22639d8..01bbd7cd4 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-029.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-029.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/containing-block-030.json b/tests/web_platform/CSS2/box_display/ref/containing-block-030.json index 18faa0119..c88b73741 100644 --- a/tests/web_platform/CSS2/box_display/ref/containing-block-030.json +++ b/tests/web_platform/CSS2/box_display/ref/containing-block-030.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/delete-block-in-inlines-beginning-001.json b/tests/web_platform/CSS2/box_display/ref/delete-block-in-inlines-beginning-001.json index fa5899521..cc7c082bb 100644 --- a/tests/web_platform/CSS2/box_display/ref/delete-block-in-inlines-beginning-001.json +++ b/tests/web_platform/CSS2/box_display/ref/delete-block-in-inlines-beginning-001.json @@ -299,4 +299,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/delete-block-in-inlines-end-001.json b/tests/web_platform/CSS2/box_display/ref/delete-block-in-inlines-end-001.json index 0570618bb..18db6a147 100644 --- a/tests/web_platform/CSS2/box_display/ref/delete-block-in-inlines-end-001.json +++ b/tests/web_platform/CSS2/box_display/ref/delete-block-in-inlines-end-001.json @@ -299,4 +299,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/delete-block-in-inlines-middle-001.json b/tests/web_platform/CSS2/box_display/ref/delete-block-in-inlines-middle-001.json index fe0b65842..3505a8af4 100644 --- a/tests/web_platform/CSS2/box_display/ref/delete-block-in-inlines-middle-001.json +++ b/tests/web_platform/CSS2/box_display/ref/delete-block-in-inlines-middle-001.json @@ -299,4 +299,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-beginning-001.json b/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-beginning-001.json index 848792b61..66e6fe260 100644 --- a/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-beginning-001.json +++ b/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-beginning-001.json @@ -347,4 +347,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-end-001.json b/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-end-001.json index 848792b61..66e6fe260 100644 --- a/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-end-001.json +++ b/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-end-001.json @@ -347,4 +347,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-middle-001.json b/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-middle-001.json index 45cfa8fc2..d53dbbd47 100644 --- a/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-middle-001.json +++ b/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-middle-001.json @@ -347,4 +347,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-middle-002.json b/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-middle-002.json index 93d975182..34c00f48a 100644 --- a/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-middle-002.json +++ b/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-middle-002.json @@ -429,4 +429,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-middle-003.json b/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-middle-003.json index 93d975182..34c00f48a 100644 --- a/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-middle-003.json +++ b/tests/web_platform/CSS2/box_display/ref/delete-inline-in-blocks-middle-003.json @@ -429,4 +429,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/descendant-display-none-001.json b/tests/web_platform/CSS2/box_display/ref/descendant-display-none-001.json index 31c9db5f0..d6ec7ad84 100644 --- a/tests/web_platform/CSS2/box_display/ref/descendant-display-none-001.json +++ b/tests/web_platform/CSS2/box_display/ref/descendant-display-none-001.json @@ -44,4 +44,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/descendant-display-override-001.json b/tests/web_platform/CSS2/box_display/ref/descendant-display-override-001.json index 31c9db5f0..d6ec7ad84 100644 --- a/tests/web_platform/CSS2/box_display/ref/descendant-display-override-001.json +++ b/tests/web_platform/CSS2/box_display/ref/descendant-display-override-001.json @@ -44,4 +44,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-001.json b/tests/web_platform/CSS2/box_display/ref/display-001.json index 13d8890ba..a2c28d7c3 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-001.json +++ b/tests/web_platform/CSS2/box_display/ref/display-001.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-002.json b/tests/web_platform/CSS2/box_display/ref/display-002.json index a411110a0..dd972b4c5 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-002.json +++ b/tests/web_platform/CSS2/box_display/ref/display-002.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-003.json b/tests/web_platform/CSS2/box_display/ref/display-003.json index 8e0f647ea..95e81b7cb 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-003.json +++ b/tests/web_platform/CSS2/box_display/ref/display-003.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-005.json b/tests/web_platform/CSS2/box_display/ref/display-005.json index d67f76f5d..b7ab1dbc0 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-005.json +++ b/tests/web_platform/CSS2/box_display/ref/display-005.json @@ -148,4 +148,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-006.json b/tests/web_platform/CSS2/box_display/ref/display-006.json index d2ae33db4..e07112a83 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-006.json +++ b/tests/web_platform/CSS2/box_display/ref/display-006.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-007.json b/tests/web_platform/CSS2/box_display/ref/display-007.json index 0ca98c077..c841b237e 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-007.json +++ b/tests/web_platform/CSS2/box_display/ref/display-007.json @@ -292,4 +292,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-008.json b/tests/web_platform/CSS2/box_display/ref/display-008.json index 7e417ac72..f3574dad1 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-008.json +++ b/tests/web_platform/CSS2/box_display/ref/display-008.json @@ -429,4 +429,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-009.json b/tests/web_platform/CSS2/box_display/ref/display-009.json index 6d524b33f..3bb04baf6 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-009.json +++ b/tests/web_platform/CSS2/box_display/ref/display-009.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-010.json b/tests/web_platform/CSS2/box_display/ref/display-010.json index 326986810..b84ab3c87 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-010.json +++ b/tests/web_platform/CSS2/box_display/ref/display-010.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-011.json b/tests/web_platform/CSS2/box_display/ref/display-011.json index e443768d9..59f690658 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-011.json +++ b/tests/web_platform/CSS2/box_display/ref/display-011.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-012.json b/tests/web_platform/CSS2/box_display/ref/display-012.json index ced3e0744..ae5fa1c8e 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-012.json +++ b/tests/web_platform/CSS2/box_display/ref/display-012.json @@ -329,4 +329,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-013.json b/tests/web_platform/CSS2/box_display/ref/display-013.json index ced3e0744..ae5fa1c8e 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-013.json +++ b/tests/web_platform/CSS2/box_display/ref/display-013.json @@ -329,4 +329,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-014.json b/tests/web_platform/CSS2/box_display/ref/display-014.json index d2ae33db4..e07112a83 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-014.json +++ b/tests/web_platform/CSS2/box_display/ref/display-014.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-015.json b/tests/web_platform/CSS2/box_display/ref/display-015.json index 9f5668150..eac98b024 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-015.json +++ b/tests/web_platform/CSS2/box_display/ref/display-015.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-016.json b/tests/web_platform/CSS2/box_display/ref/display-016.json index 31c9db5f0..d6ec7ad84 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-016.json +++ b/tests/web_platform/CSS2/box_display/ref/display-016.json @@ -44,4 +44,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-017.json b/tests/web_platform/CSS2/box_display/ref/display-017.json index a411110a0..dd972b4c5 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-017.json +++ b/tests/web_platform/CSS2/box_display/ref/display-017.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-018.json b/tests/web_platform/CSS2/box_display/ref/display-018.json index 0ef0986f0..a9248a9fd 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-018.json +++ b/tests/web_platform/CSS2/box_display/ref/display-018.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-applies-to-001.json b/tests/web_platform/CSS2/box_display/ref/display-applies-to-001.json index 8d15f127f..6a6c78a18 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-applies-to-001.json +++ b/tests/web_platform/CSS2/box_display/ref/display-applies-to-001.json @@ -155,4 +155,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-applies-to-002.json b/tests/web_platform/CSS2/box_display/ref/display-applies-to-002.json index f031ddb04..6ce450745 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-applies-to-002.json +++ b/tests/web_platform/CSS2/box_display/ref/display-applies-to-002.json @@ -155,4 +155,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-change-001.json b/tests/web_platform/CSS2/box_display/ref/display-change-001.json index b4022a4e9..d834f4fe0 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-change-001.json +++ b/tests/web_platform/CSS2/box_display/ref/display-change-001.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-initial-001.json b/tests/web_platform/CSS2/box_display/ref/display-initial-001.json index 17e4a2eb0..563a6bcfb 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-initial-001.json +++ b/tests/web_platform/CSS2/box_display/ref/display-initial-001.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-none-001.json b/tests/web_platform/CSS2/box_display/ref/display-none-001.json index 31c9db5f0..d6ec7ad84 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-none-001.json +++ b/tests/web_platform/CSS2/box_display/ref/display-none-001.json @@ -44,4 +44,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-none-002.json b/tests/web_platform/CSS2/box_display/ref/display-none-002.json index 31c9db5f0..d6ec7ad84 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-none-002.json +++ b/tests/web_platform/CSS2/box_display/ref/display-none-002.json @@ -44,4 +44,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/display-none-003.json b/tests/web_platform/CSS2/box_display/ref/display-none-003.json index 31c9db5f0..d6ec7ad84 100644 --- a/tests/web_platform/CSS2/box_display/ref/display-none-003.json +++ b/tests/web_platform/CSS2/box_display/ref/display-none-003.json @@ -44,4 +44,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-begin-001.json b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-begin-001.json index 38e0b89ee..adb6cd895 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-begin-001.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-begin-001.json @@ -1005,4 +1005,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-begin-002.json b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-begin-002.json index f379a4231..332a0869a 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-begin-002.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-begin-002.json @@ -1005,4 +1005,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-begin-003.json b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-begin-003.json index b7cc8b1a7..a085d540a 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-begin-003.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-begin-003.json @@ -1005,4 +1005,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-end-001.json b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-end-001.json index 7f8554632..8af6ee782 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-end-001.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-end-001.json @@ -1005,4 +1005,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-end-002.json b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-end-002.json index 16e2603ef..5865fa817 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-end-002.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-end-002.json @@ -1005,4 +1005,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-end-003.json b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-end-003.json index 62eefe031..cab032928 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-end-003.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-end-003.json @@ -1005,4 +1005,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-middle-001.json b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-middle-001.json index d37535cf8..e4cc4a589 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-middle-001.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-middle-001.json @@ -1005,4 +1005,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-middle-002.json b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-middle-002.json index 91abec4af..eba39ce85 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-middle-002.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-middle-002.json @@ -1005,4 +1005,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-middle-003.json b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-middle-003.json index 78c9d0aee..c6f9b2a93 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-middle-003.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-block-in-blocks-n-inlines-middle-003.json @@ -1005,4 +1005,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-block-in-inlines-beginning-001.json b/tests/web_platform/CSS2/box_display/ref/insert-block-in-inlines-beginning-001.json index e5f4e9f89..0342a0021 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-block-in-inlines-beginning-001.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-block-in-inlines-beginning-001.json @@ -402,4 +402,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-block-in-inlines-end-001.json b/tests/web_platform/CSS2/box_display/ref/insert-block-in-inlines-end-001.json index 1c1b6385b..fe1f6dd28 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-block-in-inlines-end-001.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-block-in-inlines-end-001.json @@ -402,4 +402,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-block-in-inlines-middle-001.json b/tests/web_platform/CSS2/box_display/ref/insert-block-in-inlines-middle-001.json index d6a5b4680..4210f6ccb 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-block-in-inlines-middle-001.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-block-in-inlines-middle-001.json @@ -409,4 +409,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-beginning-001.json b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-beginning-001.json index 3b01aa745..fc366d44a 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-beginning-001.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-beginning-001.json @@ -443,4 +443,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-end-001.json b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-end-001.json index 27be18ac2..45712d495 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-end-001.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-end-001.json @@ -443,4 +443,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-middle-001.json b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-middle-001.json index 925ac679a..a12b2b7fc 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-middle-001.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-middle-001.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-middle-002.json b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-middle-002.json index e006e04bc..e73ef25f0 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-middle-002.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-middle-002.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-begin-001.json b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-begin-001.json index aed00213b..792f15fd5 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-begin-001.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-begin-001.json @@ -738,4 +738,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-begin-002.json b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-begin-002.json index 877062d1e..eab0d7740 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-begin-002.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-begin-002.json @@ -745,4 +745,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-begin-003.json b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-begin-003.json index 8637ac176..0c79bda38 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-begin-003.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-begin-003.json @@ -738,4 +738,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-end-001.json b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-end-001.json index 8d82eccb2..7805a850a 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-end-001.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-end-001.json @@ -738,4 +738,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-end-002.json b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-end-002.json index 9610ec982..abfc62687 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-end-002.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-end-002.json @@ -745,4 +745,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-end-003.json b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-end-003.json index df1309b39..7b42ec2dd 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-end-003.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-end-003.json @@ -738,4 +738,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-middle-001.json b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-middle-001.json index 6d608f77d..f83a82936 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-middle-001.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-middle-001.json @@ -738,4 +738,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-middle-002.json b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-middle-002.json index 32f8f7415..c3f75a0db 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-middle-002.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-middle-002.json @@ -745,4 +745,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-middle-003.json b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-middle-003.json index a8fca79a2..5d355480d 100644 --- a/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-middle-003.json +++ b/tests/web_platform/CSS2/box_display/ref/insert-inline-in-blocks-n-inlines-middle-003.json @@ -738,4 +738,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/root-box-002.json b/tests/web_platform/CSS2/box_display/ref/root-box-002.json index 8fb3e1a0b..14db7c4e5 100644 --- a/tests/web_platform/CSS2/box_display/ref/root-box-002.json +++ b/tests/web_platform/CSS2/box_display/ref/root-box-002.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/root-box-003.json b/tests/web_platform/CSS2/box_display/ref/root-box-003.json index b5ae612a0..6dab157fa 100644 --- a/tests/web_platform/CSS2/box_display/ref/root-box-003.json +++ b/tests/web_platform/CSS2/box_display/ref/root-box-003.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/root-canvas-001.json b/tests/web_platform/CSS2/box_display/ref/root-canvas-001.json index 1d2212025..22ba68f3c 100644 --- a/tests/web_platform/CSS2/box_display/ref/root-canvas-001.json +++ b/tests/web_platform/CSS2/box_display/ref/root-canvas-001.json @@ -148,4 +148,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/viewport-001.json b/tests/web_platform/CSS2/box_display/ref/viewport-001.json index 0a32c6b2d..b7b55922c 100644 --- a/tests/web_platform/CSS2/box_display/ref/viewport-001.json +++ b/tests/web_platform/CSS2/box_display/ref/viewport-001.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/viewport-002.json b/tests/web_platform/CSS2/box_display/ref/viewport-002.json index b6f714164..0e55c5fba 100644 --- a/tests/web_platform/CSS2/box_display/ref/viewport-002.json +++ b/tests/web_platform/CSS2/box_display/ref/viewport-002.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/viewport-003.json b/tests/web_platform/CSS2/box_display/ref/viewport-003.json index b6f714164..0e55c5fba 100644 --- a/tests/web_platform/CSS2/box_display/ref/viewport-003.json +++ b/tests/web_platform/CSS2/box_display/ref/viewport-003.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/ref/viewport-004.json b/tests/web_platform/CSS2/box_display/ref/viewport-004.json index efd6ce10a..d593edd94 100644 --- a/tests/web_platform/CSS2/box_display/ref/viewport-004.json +++ b/tests/web_platform/CSS2/box_display/ref/viewport-004.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/box_display/test_anonymous_box_generation.py b/tests/web_platform/CSS2/box_display/test_anonymous_box_generation.py index 390e858c7..e6bf6c792 100644 --- a/tests/web_platform/CSS2/box_display/test_anonymous_box_generation.py +++ b/tests/web_platform/CSS2/box_display/test_anonymous_box_generation.py @@ -2,4 +2,4 @@ class TestAnonymousBoxGeneration(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'anonymous-box-generation-')) + vars().update(W3CTestCase.find_tests(__file__, "anonymous-box-generation-")) diff --git a/tests/web_platform/CSS2/box_display/test_anonymous_boxes_inheritance.py b/tests/web_platform/CSS2/box_display/test_anonymous_boxes_inheritance.py index 41dafa209..b8f659115 100644 --- a/tests/web_platform/CSS2/box_display/test_anonymous_boxes_inheritance.py +++ b/tests/web_platform/CSS2/box_display/test_anonymous_boxes_inheritance.py @@ -2,4 +2,4 @@ class TestAnonymousBoxesInheritance(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'anonymous-boxes-inheritance-')) + vars().update(W3CTestCase.find_tests(__file__, "anonymous-boxes-inheritance-")) diff --git a/tests/web_platform/CSS2/box_display/test_anonymous_inline_whitespace.py b/tests/web_platform/CSS2/box_display/test_anonymous_inline_whitespace.py index 22293da62..027c91835 100644 --- a/tests/web_platform/CSS2/box_display/test_anonymous_inline_whitespace.py +++ b/tests/web_platform/CSS2/box_display/test_anonymous_inline_whitespace.py @@ -2,4 +2,4 @@ class TestAnonymousInlineWhitespace(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'anonymous-inline-whitespace-')) + vars().update(W3CTestCase.find_tests(__file__, "anonymous-inline-whitespace-")) diff --git a/tests/web_platform/CSS2/box_display/test_block_in_inline.py b/tests/web_platform/CSS2/box_display/test_block_in_inline.py index 4cc710538..d7ddca5be 100644 --- a/tests/web_platform/CSS2/box_display/test_block_in_inline.py +++ b/tests/web_platform/CSS2/box_display/test_block_in_inline.py @@ -2,4 +2,4 @@ class TestBlockInInline(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-")) diff --git a/tests/web_platform/CSS2/box_display/test_block_in_inline_relpos.py b/tests/web_platform/CSS2/box_display/test_block_in_inline_relpos.py index f3304ebed..91b0878a5 100644 --- a/tests/web_platform/CSS2/box_display/test_block_in_inline_relpos.py +++ b/tests/web_platform/CSS2/box_display/test_block_in_inline_relpos.py @@ -2,4 +2,4 @@ class TestBlockInInlineRelpos(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-relpos-')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-relpos-")) diff --git a/tests/web_platform/CSS2/box_display/test_box_generation.py b/tests/web_platform/CSS2/box_display/test_box_generation.py index 9ea9e7b1b..cd1190a75 100644 --- a/tests/web_platform/CSS2/box_display/test_box_generation.py +++ b/tests/web_platform/CSS2/box_display/test_box_generation.py @@ -2,4 +2,4 @@ class TestBoxGeneration(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'box-generation-')) + vars().update(W3CTestCase.find_tests(__file__, "box-generation-")) diff --git a/tests/web_platform/CSS2/box_display/test_containing_block.py b/tests/web_platform/CSS2/box_display/test_containing_block.py index 9baa38efa..7c7090e86 100644 --- a/tests/web_platform/CSS2/box_display/test_containing_block.py +++ b/tests/web_platform/CSS2/box_display/test_containing_block.py @@ -2,4 +2,4 @@ class TestContainingBlock(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'containing-block-')) + vars().update(W3CTestCase.find_tests(__file__, "containing-block-")) diff --git a/tests/web_platform/CSS2/box_display/test_delete_block_in_inlines_beginning.py b/tests/web_platform/CSS2/box_display/test_delete_block_in_inlines_beginning.py index ff8155d5b..6aa440a5f 100644 --- a/tests/web_platform/CSS2/box_display/test_delete_block_in_inlines_beginning.py +++ b/tests/web_platform/CSS2/box_display/test_delete_block_in_inlines_beginning.py @@ -2,4 +2,6 @@ class TestDeleteBlockInInlinesBeginning(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'delete-block-in-inlines-beginning-')) + vars().update( + W3CTestCase.find_tests(__file__, "delete-block-in-inlines-beginning-") + ) diff --git a/tests/web_platform/CSS2/box_display/test_delete_block_in_inlines_end.py b/tests/web_platform/CSS2/box_display/test_delete_block_in_inlines_end.py index f4ced2050..e3735c182 100644 --- a/tests/web_platform/CSS2/box_display/test_delete_block_in_inlines_end.py +++ b/tests/web_platform/CSS2/box_display/test_delete_block_in_inlines_end.py @@ -2,4 +2,4 @@ class TestDeleteBlockInInlinesEnd(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'delete-block-in-inlines-end-')) + vars().update(W3CTestCase.find_tests(__file__, "delete-block-in-inlines-end-")) diff --git a/tests/web_platform/CSS2/box_display/test_delete_block_in_inlines_middle.py b/tests/web_platform/CSS2/box_display/test_delete_block_in_inlines_middle.py index 806ae7044..eda4519a1 100644 --- a/tests/web_platform/CSS2/box_display/test_delete_block_in_inlines_middle.py +++ b/tests/web_platform/CSS2/box_display/test_delete_block_in_inlines_middle.py @@ -2,4 +2,4 @@ class TestDeleteBlockInInlinesMiddle(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'delete-block-in-inlines-middle-')) + vars().update(W3CTestCase.find_tests(__file__, "delete-block-in-inlines-middle-")) diff --git a/tests/web_platform/CSS2/box_display/test_delete_inline_in_blocks_beginning.py b/tests/web_platform/CSS2/box_display/test_delete_inline_in_blocks_beginning.py index 01ee4182f..84ef3e348 100644 --- a/tests/web_platform/CSS2/box_display/test_delete_inline_in_blocks_beginning.py +++ b/tests/web_platform/CSS2/box_display/test_delete_inline_in_blocks_beginning.py @@ -2,4 +2,6 @@ class TestDeleteInlineInBlocksBeginning(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'delete-inline-in-blocks-beginning-')) + vars().update( + W3CTestCase.find_tests(__file__, "delete-inline-in-blocks-beginning-") + ) diff --git a/tests/web_platform/CSS2/box_display/test_delete_inline_in_blocks_end.py b/tests/web_platform/CSS2/box_display/test_delete_inline_in_blocks_end.py index f33790840..a782c318a 100644 --- a/tests/web_platform/CSS2/box_display/test_delete_inline_in_blocks_end.py +++ b/tests/web_platform/CSS2/box_display/test_delete_inline_in_blocks_end.py @@ -2,4 +2,4 @@ class TestDeleteInlineInBlocksEnd(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'delete-inline-in-blocks-end-')) + vars().update(W3CTestCase.find_tests(__file__, "delete-inline-in-blocks-end-")) diff --git a/tests/web_platform/CSS2/box_display/test_delete_inline_in_blocks_middle.py b/tests/web_platform/CSS2/box_display/test_delete_inline_in_blocks_middle.py index 17be9df03..b9657ddce 100644 --- a/tests/web_platform/CSS2/box_display/test_delete_inline_in_blocks_middle.py +++ b/tests/web_platform/CSS2/box_display/test_delete_inline_in_blocks_middle.py @@ -2,4 +2,4 @@ class TestDeleteInlineInBlocksMiddle(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'delete-inline-in-blocks-middle-')) + vars().update(W3CTestCase.find_tests(__file__, "delete-inline-in-blocks-middle-")) diff --git a/tests/web_platform/CSS2/box_display/test_descendant_display_none.py b/tests/web_platform/CSS2/box_display/test_descendant_display_none.py index 33c3750fd..e4289402f 100644 --- a/tests/web_platform/CSS2/box_display/test_descendant_display_none.py +++ b/tests/web_platform/CSS2/box_display/test_descendant_display_none.py @@ -2,4 +2,4 @@ class TestDescendantDisplayNone(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'descendant-display-none-')) + vars().update(W3CTestCase.find_tests(__file__, "descendant-display-none-")) diff --git a/tests/web_platform/CSS2/box_display/test_descendant_display_override.py b/tests/web_platform/CSS2/box_display/test_descendant_display_override.py index 40d1c29f5..5386c6cc1 100644 --- a/tests/web_platform/CSS2/box_display/test_descendant_display_override.py +++ b/tests/web_platform/CSS2/box_display/test_descendant_display_override.py @@ -2,4 +2,4 @@ class TestDescendantDisplayOverride(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'descendant-display-override-')) + vars().update(W3CTestCase.find_tests(__file__, "descendant-display-override-")) diff --git a/tests/web_platform/CSS2/box_display/test_display.py b/tests/web_platform/CSS2/box_display/test_display.py index 84d99359d..34608fb94 100644 --- a/tests/web_platform/CSS2/box_display/test_display.py +++ b/tests/web_platform/CSS2/box_display/test_display.py @@ -2,4 +2,4 @@ class TestDisplay(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'display-')) + vars().update(W3CTestCase.find_tests(__file__, "display-")) diff --git a/tests/web_platform/CSS2/box_display/test_display_applies_to.py b/tests/web_platform/CSS2/box_display/test_display_applies_to.py index 44fce86fc..2c2f3be24 100644 --- a/tests/web_platform/CSS2/box_display/test_display_applies_to.py +++ b/tests/web_platform/CSS2/box_display/test_display_applies_to.py @@ -2,4 +2,4 @@ class TestDisplayAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'display-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "display-applies-to-")) diff --git a/tests/web_platform/CSS2/box_display/test_display_change.py b/tests/web_platform/CSS2/box_display/test_display_change.py index fa938d64d..614fde037 100644 --- a/tests/web_platform/CSS2/box_display/test_display_change.py +++ b/tests/web_platform/CSS2/box_display/test_display_change.py @@ -2,4 +2,4 @@ class TestDisplayChange(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'display-change-')) + vars().update(W3CTestCase.find_tests(__file__, "display-change-")) diff --git a/tests/web_platform/CSS2/box_display/test_display_initial.py b/tests/web_platform/CSS2/box_display/test_display_initial.py index 9b0d9cc70..7ac6547fa 100644 --- a/tests/web_platform/CSS2/box_display/test_display_initial.py +++ b/tests/web_platform/CSS2/box_display/test_display_initial.py @@ -2,4 +2,4 @@ class TestDisplayInitial(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'display-initial-')) + vars().update(W3CTestCase.find_tests(__file__, "display-initial-")) diff --git a/tests/web_platform/CSS2/box_display/test_display_none.py b/tests/web_platform/CSS2/box_display/test_display_none.py index 383b23541..11c7b965e 100644 --- a/tests/web_platform/CSS2/box_display/test_display_none.py +++ b/tests/web_platform/CSS2/box_display/test_display_none.py @@ -2,4 +2,4 @@ class TestDisplayNone(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'display-none-')) + vars().update(W3CTestCase.find_tests(__file__, "display-none-")) diff --git a/tests/web_platform/CSS2/box_display/test_insert_block_in_blocks_n_inlines_begin.py b/tests/web_platform/CSS2/box_display/test_insert_block_in_blocks_n_inlines_begin.py index 4a45bf10d..8ca0c878a 100644 --- a/tests/web_platform/CSS2/box_display/test_insert_block_in_blocks_n_inlines_begin.py +++ b/tests/web_platform/CSS2/box_display/test_insert_block_in_blocks_n_inlines_begin.py @@ -2,4 +2,6 @@ class TestInsertBlockInBlocksNInlinesBegin(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'insert-block-in-blocks-n-inlines-begin-')) + vars().update( + W3CTestCase.find_tests(__file__, "insert-block-in-blocks-n-inlines-begin-") + ) diff --git a/tests/web_platform/CSS2/box_display/test_insert_block_in_blocks_n_inlines_end.py b/tests/web_platform/CSS2/box_display/test_insert_block_in_blocks_n_inlines_end.py index 1d0008695..2bd9b4458 100644 --- a/tests/web_platform/CSS2/box_display/test_insert_block_in_blocks_n_inlines_end.py +++ b/tests/web_platform/CSS2/box_display/test_insert_block_in_blocks_n_inlines_end.py @@ -2,4 +2,6 @@ class TestInsertBlockInBlocksNInlinesEnd(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'insert-block-in-blocks-n-inlines-end-')) + vars().update( + W3CTestCase.find_tests(__file__, "insert-block-in-blocks-n-inlines-end-") + ) diff --git a/tests/web_platform/CSS2/box_display/test_insert_block_in_blocks_n_inlines_middle.py b/tests/web_platform/CSS2/box_display/test_insert_block_in_blocks_n_inlines_middle.py index a71789a3b..2c684681d 100644 --- a/tests/web_platform/CSS2/box_display/test_insert_block_in_blocks_n_inlines_middle.py +++ b/tests/web_platform/CSS2/box_display/test_insert_block_in_blocks_n_inlines_middle.py @@ -2,4 +2,6 @@ class TestInsertBlockInBlocksNInlinesMiddle(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'insert-block-in-blocks-n-inlines-middle-')) + vars().update( + W3CTestCase.find_tests(__file__, "insert-block-in-blocks-n-inlines-middle-") + ) diff --git a/tests/web_platform/CSS2/box_display/test_insert_block_in_inlines_beginning.py b/tests/web_platform/CSS2/box_display/test_insert_block_in_inlines_beginning.py index 444bdb639..23f0b5471 100644 --- a/tests/web_platform/CSS2/box_display/test_insert_block_in_inlines_beginning.py +++ b/tests/web_platform/CSS2/box_display/test_insert_block_in_inlines_beginning.py @@ -2,4 +2,6 @@ class TestInsertBlockInInlinesBeginning(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'insert-block-in-inlines-beginning-')) + vars().update( + W3CTestCase.find_tests(__file__, "insert-block-in-inlines-beginning-") + ) diff --git a/tests/web_platform/CSS2/box_display/test_insert_block_in_inlines_end.py b/tests/web_platform/CSS2/box_display/test_insert_block_in_inlines_end.py index 20643ca57..789a115b3 100644 --- a/tests/web_platform/CSS2/box_display/test_insert_block_in_inlines_end.py +++ b/tests/web_platform/CSS2/box_display/test_insert_block_in_inlines_end.py @@ -2,4 +2,4 @@ class TestInsertBlockInInlinesEnd(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'insert-block-in-inlines-end-')) + vars().update(W3CTestCase.find_tests(__file__, "insert-block-in-inlines-end-")) diff --git a/tests/web_platform/CSS2/box_display/test_insert_block_in_inlines_middle.py b/tests/web_platform/CSS2/box_display/test_insert_block_in_inlines_middle.py index 84464837b..239a808f9 100644 --- a/tests/web_platform/CSS2/box_display/test_insert_block_in_inlines_middle.py +++ b/tests/web_platform/CSS2/box_display/test_insert_block_in_inlines_middle.py @@ -2,4 +2,4 @@ class TestInsertBlockInInlinesMiddle(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'insert-block-in-inlines-middle-')) + vars().update(W3CTestCase.find_tests(__file__, "insert-block-in-inlines-middle-")) diff --git a/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_beginning.py b/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_beginning.py index c99c5c6d3..413b3cc11 100644 --- a/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_beginning.py +++ b/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_beginning.py @@ -2,4 +2,6 @@ class TestInsertInlineInBlocksBeginning(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'insert-inline-in-blocks-beginning-')) + vars().update( + W3CTestCase.find_tests(__file__, "insert-inline-in-blocks-beginning-") + ) diff --git a/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_end.py b/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_end.py index 46572874b..04cf6e86c 100644 --- a/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_end.py +++ b/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_end.py @@ -2,4 +2,4 @@ class TestInsertInlineInBlocksEnd(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'insert-inline-in-blocks-end-')) + vars().update(W3CTestCase.find_tests(__file__, "insert-inline-in-blocks-end-")) diff --git a/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_middle.py b/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_middle.py index 774019e54..d9ad2760f 100644 --- a/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_middle.py +++ b/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_middle.py @@ -2,4 +2,4 @@ class TestInsertInlineInBlocksMiddle(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'insert-inline-in-blocks-middle-')) + vars().update(W3CTestCase.find_tests(__file__, "insert-inline-in-blocks-middle-")) diff --git a/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_n_inlines_begin.py b/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_n_inlines_begin.py index e09d78980..1327e673c 100644 --- a/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_n_inlines_begin.py +++ b/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_n_inlines_begin.py @@ -2,4 +2,6 @@ class TestInsertInlineInBlocksNInlinesBegin(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'insert-inline-in-blocks-n-inlines-begin-')) + vars().update( + W3CTestCase.find_tests(__file__, "insert-inline-in-blocks-n-inlines-begin-") + ) diff --git a/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_n_inlines_end.py b/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_n_inlines_end.py index 4eee9b500..3cd9c322d 100644 --- a/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_n_inlines_end.py +++ b/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_n_inlines_end.py @@ -2,4 +2,6 @@ class TestInsertInlineInBlocksNInlinesEnd(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'insert-inline-in-blocks-n-inlines-end-')) + vars().update( + W3CTestCase.find_tests(__file__, "insert-inline-in-blocks-n-inlines-end-") + ) diff --git a/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_n_inlines_middle.py b/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_n_inlines_middle.py index 58ea8de0c..4144ca3df 100644 --- a/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_n_inlines_middle.py +++ b/tests/web_platform/CSS2/box_display/test_insert_inline_in_blocks_n_inlines_middle.py @@ -2,4 +2,6 @@ class TestInsertInlineInBlocksNInlinesMiddle(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'insert-inline-in-blocks-n-inlines-middle-')) + vars().update( + W3CTestCase.find_tests(__file__, "insert-inline-in-blocks-n-inlines-middle-") + ) diff --git a/tests/web_platform/CSS2/box_display/test_root_box.py b/tests/web_platform/CSS2/box_display/test_root_box.py index 00cab833e..e06406dca 100644 --- a/tests/web_platform/CSS2/box_display/test_root_box.py +++ b/tests/web_platform/CSS2/box_display/test_root_box.py @@ -2,4 +2,4 @@ class TestRootBox(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'root-box-')) + vars().update(W3CTestCase.find_tests(__file__, "root-box-")) diff --git a/tests/web_platform/CSS2/box_display/test_root_canvas.py b/tests/web_platform/CSS2/box_display/test_root_canvas.py index 6aa0d9006..a96c13689 100644 --- a/tests/web_platform/CSS2/box_display/test_root_canvas.py +++ b/tests/web_platform/CSS2/box_display/test_root_canvas.py @@ -2,4 +2,4 @@ class TestRootCanvas(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'root-canvas-')) + vars().update(W3CTestCase.find_tests(__file__, "root-canvas-")) diff --git a/tests/web_platform/CSS2/box_display/test_viewport.py b/tests/web_platform/CSS2/box_display/test_viewport.py index d704a322a..22586da3a 100644 --- a/tests/web_platform/CSS2/box_display/test_viewport.py +++ b/tests/web_platform/CSS2/box_display/test_viewport.py @@ -2,4 +2,4 @@ class TestViewport(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'viewport-')) + vars().update(W3CTestCase.find_tests(__file__, "viewport-")) diff --git a/tests/web_platform/CSS2/linebox/data/border-padding-bleed-001.json b/tests/web_platform/CSS2/linebox/data/border-padding-bleed-001.json index 720dd0af0..9cc9a9d00 100644 --- a/tests/web_platform/CSS2/linebox/data/border-padding-bleed-001.json +++ b/tests/web_platform/CSS2/linebox/data/border-padding-bleed-001.json @@ -58,4 +58,4 @@ }, "assert": "Although margins, borders and padding of inline non-replaced elements do not enter into the line box calculation, they are still rendered around inline boxes. This means that if the height specified by 'line-height' (40px in this testcase) is equal to the content height (40px in this testcase) of contained boxes, then background-color of padding-top area and border-top may 'bleed' into the adjoining preceding line box. Since line boxes are rendered in document order, this causes padding-top and border-top of 2nd line box (the span element in this testcase) to be painted over border-bottom and padding-bottom of inline boxes of previous line and, in this testcase, over the 1st line box.", "matches": "border-padding-bleed-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/border-padding-bleed-002.json b/tests/web_platform/CSS2/linebox/data/border-padding-bleed-002.json index 1d3d9fa9f..d863c4b50 100644 --- a/tests/web_platform/CSS2/linebox/data/border-padding-bleed-002.json +++ b/tests/web_platform/CSS2/linebox/data/border-padding-bleed-002.json @@ -55,4 +55,4 @@ }, "assert": "Although margins, borders and padding of inline non-replaced elements do not enter into the line box calculation, they are still rendered around inline boxes. This means that if the height specified by 'line-height' (40px in this testcase) is equal to the content height (40px in this testcase) of contained boxes, then background-color of padding-top area and border-top may 'bleed' into the adjoining preceding line box. Since line boxes are rendered in document order, this causes padding-top of 2nd line box (the span element in this testcase) to be painted over border-bottom and padding-bottom of inline boxes of previous line and, in this testcase, over the 1st line box.", "matches": "border-padding-bleed-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/border-padding-bleed-003.json b/tests/web_platform/CSS2/linebox/data/border-padding-bleed-003.json index 1212f6445..441b2580a 100644 --- a/tests/web_platform/CSS2/linebox/data/border-padding-bleed-003.json +++ b/tests/web_platform/CSS2/linebox/data/border-padding-bleed-003.json @@ -56,4 +56,4 @@ }, "assert": "Although margins, borders and padding of inline non-replaced elements do not enter into the line box calculation, they are still rendered around inline boxes. This means that if the height specified by 'line-height' (40px in this testcase) is equal to the content height (40px in this testcase) of contained boxes, then background-color of padding-top area and border-top may 'bleed' into the adjoining preceding line box. Since line boxes are rendered in document order, this causes border-top of 2nd line box (the span element in this testcase) to be painted over border-bottom and padding-bottom of inline boxes of previous line and, in this testcase, over the 1st line box.", "matches": "border-padding-bleed-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/empty-inline-001.json b/tests/web_platform/CSS2/linebox/data/empty-inline-001.json index 44f60c18f..df8a1bc69 100644 --- a/tests/web_platform/CSS2/linebox/data/empty-inline-001.json +++ b/tests/web_platform/CSS2/linebox/data/empty-inline-001.json @@ -42,4 +42,4 @@ }, "assert": "Empty inline elements create a zero-height line box.", "matches": "../reference/ref-if-there-is-no-red.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/empty-inline-002.json b/tests/web_platform/CSS2/linebox/data/empty-inline-002.json index d6c7a04cc..fc916b4b7 100644 --- a/tests/web_platform/CSS2/linebox/data/empty-inline-002.json +++ b/tests/web_platform/CSS2/linebox/data/empty-inline-002.json @@ -198,4 +198,4 @@ }, "assert": "Empty inline elements still influence calculation just like elements with content.", "matches": "empty-inline-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/empty-inline-003.json b/tests/web_platform/CSS2/linebox/data/empty-inline-003.json index 59140cd20..2ff711641 100644 --- a/tests/web_platform/CSS2/linebox/data/empty-inline-003.json +++ b/tests/web_platform/CSS2/linebox/data/empty-inline-003.json @@ -69,4 +69,4 @@ }, "assert": "The line-height of an empty inline element influences the height of a line containing it with some other content", "matches": "empty-inline-003-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-box-001.json b/tests/web_platform/CSS2/linebox/data/inline-box-001.json index 8a838279a..ebd6f8105 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-box-001.json +++ b/tests/web_platform/CSS2/linebox/data/inline-box-001.json @@ -75,4 +75,4 @@ }, "assert": "Inline boxes that contain block boxes will break up the inline content around the block box.", "matches": "inline-box-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-box-002.json b/tests/web_platform/CSS2/linebox/data/inline-box-002.json index 79ab0b63c..543f8bf9a 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-box-002.json +++ b/tests/web_platform/CSS2/linebox/data/inline-box-002.json @@ -92,4 +92,4 @@ }, "assert": "Block boxes within inline boxes are also affected by relative positioning on the inline box.", "matches": "inline-box-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-001.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-001.json index ef9f47468..91e956a41 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-001.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-001.json @@ -83,4 +83,4 @@ }, "assert": "Inline boxes are laid out horizontally or one after the other starting at the top of the containing block.", "matches": "inline-formatting-context-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-002.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-002.json index ab2c0d671..b79a4ae77 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-002.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-002.json @@ -62,4 +62,4 @@ }, "assert": "Horizontal left margins are respected between inline boxes.", "matches": "inline-formatting-context-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-003.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-003.json index 6e3136153..ca193b483 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-003.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-003.json @@ -62,4 +62,4 @@ }, "assert": "Horizontal right margins are respected between inline boxes.", "matches": "inline-formatting-context-003-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-004.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-004.json index 51d490193..ebf73ec0b 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-004.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-004.json @@ -42,4 +42,4 @@ }, "assert": "Left borders are respected between inline boxes.", "matches": "inline-formatting-context-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-005.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-005.json index 868977052..f1757dac0 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-005.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-005.json @@ -42,4 +42,4 @@ }, "assert": "Right borders are respected between inline boxes.", "matches": "inline-formatting-context-003-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-006.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-006.json index a021c779a..e8bcffa82 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-006.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-006.json @@ -60,4 +60,4 @@ }, "assert": "Left padding are respected between inline boxes.", "matches": "inline-formatting-context-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-007.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-007.json index 0ba4afb1d..c23e2f80f 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-007.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-007.json @@ -60,4 +60,4 @@ }, "assert": "Right padding are respected between inline boxes.", "matches": "inline-formatting-context-003-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-008.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-008.json index 761cb6625..0e53636a4 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-008.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-008.json @@ -58,4 +58,4 @@ }, "assert": "Inline element width is determined by the containing block.", "matches": "inline-formatting-context-008-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-009.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-009.json index 35fde4d34..5aedc4dc0 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-009.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-009.json @@ -79,4 +79,4 @@ }, "assert": "Inline element width is determined by the containing block and any floated elements.", "matches": "inline-formatting-context-009-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010.json index 19878b2e1..2e3750c46 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010.json @@ -82,4 +82,4 @@ }, "assert": "A line box is always tall enough to contain all the boxes in the line.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010b.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010b.json index b64853761..db1cb1498 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010b.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010b.json @@ -213,4 +213,4 @@ }, "assert": "A line box is always tall enough for all of the boxes it contains. A line box can be as tall as the tallest inline non-replaced box it contains.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010c.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010c.json index 88fc0e73d..4c67307ac 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010c.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010c.json @@ -109,4 +109,4 @@ }, "assert": "The line box height is given by the distance between the uppermost box top and the lowermost box bottom. The line box height is not necessarly given by the height of the tallest inline box contained in the line box.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010d.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010d.json index e525970be..48c388148 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010d.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-010d.json @@ -61,4 +61,4 @@ }, "assert": "The line box height is given by the distance between the uppermost box top and the lowermost box bottom. The line box height is not necessarly given by the height of the tallest inline box contained in the line box.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-011.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-011.json index 9aa4b0dbb..e93206337 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-011.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-011.json @@ -101,4 +101,4 @@ }, "assert": "The 'vertical-align' property determines the vertical alignment of a box within a line box.", "matches": "inline-formatting-context-011-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-012.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-012.json index 23f727c60..bd6d1df48 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-012.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-012.json @@ -51,4 +51,4 @@ }, "assert": "Inline boxes stack vertically when they do not fit within an element horizontally.", "matches": "../generated-content/after-content-display-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-013.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-013.json index 57ec996f0..4867ba836 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-013.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-013.json @@ -104,4 +104,4 @@ }, "assert": "Line boxes are stacked with no vertical separation and they never overlap.", "matches": "inline-formatting-context-013-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-014.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-014.json index 995367217..e29694d86 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-014.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-014.json @@ -71,4 +71,4 @@ }, "assert": "Line boxes span the entire width of a container unless constrained by floats.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-015.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-015.json index 128544d22..0f7660cbe 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-015.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-015.json @@ -77,4 +77,4 @@ }, "assert": "Line boxes adjust for floated elements.", "matches": "inline-formatting-context-015-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-016.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-016.json index fcda5e3c0..d9de3410e 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-016.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-016.json @@ -65,4 +65,4 @@ }, "assert": "When the inline box is wider than the line boxes the 'text-align' property is used to align the line boxes.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-017.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-017.json index 2eb31022f..46f61ed9a 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-017.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-017.json @@ -51,4 +51,4 @@ }, "assert": "If 'text-align' is set to 'justify' the user agent may stretch spaces and/or words.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-018.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-018.json index 6daf847c8..87d2730f7 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-018.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-018.json @@ -61,4 +61,4 @@ }, "assert": "If 'text-align' is set to 'justify' the user agent does not stretch spaces and/or words when the 'display' property is set to 'inline-table'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-019.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-019.json index f166f820e..ba018b939 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-019.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-019.json @@ -61,4 +61,4 @@ }, "assert": "If 'text-align' is set to 'justify' the user agent does not stretch spaces and/or words when the 'display' property is set to 'inline-block'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-020.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-020.json index a9875b126..470a2df64 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-020.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-020.json @@ -54,4 +54,4 @@ }, "assert": "Inline boxes are split onto additional lines if the line box does not fit within the width.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-021.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-021.json index 7abc0ca18..64e3dd002 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-021.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-021.json @@ -49,4 +49,4 @@ }, "assert": "If inline boxes cannot be split (i.e.: white-space: nowrap) then the inline box overflows the line box.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-022.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-022.json index 9c9452ecc..c785513d8 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-022.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-022.json @@ -82,4 +82,4 @@ }, "assert": "Margins, borders and padding have no visual effect when inline boxes are split.", "matches": "inline-formatting-context-022-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-023.json b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-023.json index 4772e102d..34b00f309 100644 --- a/tests/web_platform/CSS2/linebox/data/inline-formatting-context-023.json +++ b/tests/web_platform/CSS2/linebox/data/inline-formatting-context-023.json @@ -64,4 +64,4 @@ }, "assert": "Additional inline boxes can be created for the bidirectional text.", "matches": "inline-formatting-context-023-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/leading-001.json b/tests/web_platform/CSS2/linebox/data/leading-001.json index 251661a69..977ae4b2d 100644 --- a/tests/web_platform/CSS2/linebox/data/leading-001.json +++ b/tests/web_platform/CSS2/linebox/data/leading-001.json @@ -56,4 +56,4 @@ }, "assert": "Line-height can be different from the content area so space is above and below.", "matches": "leading-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-box-height-001.json b/tests/web_platform/CSS2/linebox/data/line-box-height-001.json index a8bba07d1..8b8b204d9 100644 --- a/tests/web_platform/CSS2/linebox/data/line-box-height-001.json +++ b/tests/web_platform/CSS2/linebox/data/line-box-height-001.json @@ -82,4 +82,4 @@ }, "assert": "The 'line-height' property sets the initial height but that height is increased if the content height is larger.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-box-height-002.json b/tests/web_platform/CSS2/linebox/data/line-box-height-002.json index 5ea3ce05a..4eded4d07 100644 --- a/tests/web_platform/CSS2/linebox/data/line-box-height-002.json +++ b/tests/web_platform/CSS2/linebox/data/line-box-height-002.json @@ -57,4 +57,4 @@ }, "assert": "The 'line-height' property doe not set the height for inline replaced elements. The height of the replaced element sets the line-height'.", "matches": "line-box-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-001.json b/tests/web_platform/CSS2/linebox/data/line-height-001.json index e20ab8ebf..16486169b 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-001.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-001.json @@ -125,4 +125,4 @@ }, "assert": "The 'line-height' property sets a minimum minus one length value in pixels.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-002.json b/tests/web_platform/CSS2/linebox/data/line-height-002.json index 4c977f426..7fbcf586b 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-002.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-002.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum length value in pixels.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-003.json b/tests/web_platform/CSS2/linebox/data/line-height-003.json index 986056628..7bb0c3ccf 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-003.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-003.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum plus one length value in pixels.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-004.json b/tests/web_platform/CSS2/linebox/data/line-height-004.json index 38cc389f1..480ec0757 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-004.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-004.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a negative zero length value in pixels.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-005.json b/tests/web_platform/CSS2/linebox/data/line-height-005.json index ea5d6689a..e0325655c 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-005.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-005.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive zero length value in pixels.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-006.json b/tests/web_platform/CSS2/linebox/data/line-height-006.json index 94cc01cbc..187592584 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-006.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-006.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a nominal length value in pixels.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-007.json b/tests/web_platform/CSS2/linebox/data/line-height-007.json index 6e574d4fc..cc0dbcb81 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-007.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-007.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive nominal length value in pixels.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-012.json b/tests/web_platform/CSS2/linebox/data/line-height-012.json index 9f69375d5..f126fec7d 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-012.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-012.json @@ -125,4 +125,4 @@ }, "assert": "The 'line-height' property sets a minimum minus one length value in points.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-013.json b/tests/web_platform/CSS2/linebox/data/line-height-013.json index 765e68bb8..1a22d65ae 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-013.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-013.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum length value in points.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-014.json b/tests/web_platform/CSS2/linebox/data/line-height-014.json index 19a01ed8a..631766f76 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-014.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-014.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum plus one length value in points.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-015.json b/tests/web_platform/CSS2/linebox/data/line-height-015.json index b83fb597f..d7f25c1b8 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-015.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-015.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a negative zero length value in points.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-016.json b/tests/web_platform/CSS2/linebox/data/line-height-016.json index 1b8a34818..6306ec837 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-016.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-016.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive zero length value in points.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-017.json b/tests/web_platform/CSS2/linebox/data/line-height-017.json index 6f426402c..22f7fc683 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-017.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-017.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a nominal length value in points.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-018.json b/tests/web_platform/CSS2/linebox/data/line-height-018.json index 6495b4b1d..7cd328907 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-018.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-018.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive nominal length value in points.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-023.json b/tests/web_platform/CSS2/linebox/data/line-height-023.json index 944f47be4..a1ab5de4b 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-023.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-023.json @@ -125,4 +125,4 @@ }, "assert": "The 'line-height' property sets a minimum minus one length value in picas.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-024.json b/tests/web_platform/CSS2/linebox/data/line-height-024.json index 01aee0a87..5cc479976 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-024.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-024.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum length value in picas.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-025.json b/tests/web_platform/CSS2/linebox/data/line-height-025.json index 946efb59f..4424988d4 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-025.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-025.json @@ -127,4 +127,4 @@ }, "assert": "The 'line-height' property sets a minimum plus one length value in picas.", "matches": "line-height-025-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-026.json b/tests/web_platform/CSS2/linebox/data/line-height-026.json index d9e88657a..d8a48c2cc 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-026.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-026.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a negative zero length value in picas.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-027.json b/tests/web_platform/CSS2/linebox/data/line-height-027.json index bf6528535..7ea9bed9b 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-027.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-027.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive zero length value in picas.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-028.json b/tests/web_platform/CSS2/linebox/data/line-height-028.json index d6bb8dff6..dc5fe4566 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-028.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-028.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a nominal length value in picas.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-029.json b/tests/web_platform/CSS2/linebox/data/line-height-029.json index 878d3b454..306a5eaf5 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-029.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-029.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive nominal length value in picas.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-034.json b/tests/web_platform/CSS2/linebox/data/line-height-034.json index 80556bd72..87a326df5 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-034.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-034.json @@ -125,4 +125,4 @@ }, "assert": "The 'line-height' property sets a minimum minus one length value in centimeters.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-035.json b/tests/web_platform/CSS2/linebox/data/line-height-035.json index 6d5cded23..0ee55a89e 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-035.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-035.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum length value in centimeters.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-036.json b/tests/web_platform/CSS2/linebox/data/line-height-036.json index c6b1deb0c..223b212f9 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-036.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-036.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum plus one length value in centimeters.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-037.json b/tests/web_platform/CSS2/linebox/data/line-height-037.json index 712052738..2ad4f26fd 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-037.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-037.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a negative zero length value in centimeters.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-038.json b/tests/web_platform/CSS2/linebox/data/line-height-038.json index e4b90a245..09d969541 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-038.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-038.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive zero length value in centimeters.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-039.json b/tests/web_platform/CSS2/linebox/data/line-height-039.json index 8ecb3597d..af075d801 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-039.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-039.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a nominal length value in centimeters.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-040.json b/tests/web_platform/CSS2/linebox/data/line-height-040.json index f5ff57af7..de49ed6ed 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-040.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-040.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive nominal length value in centimeters.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-045.json b/tests/web_platform/CSS2/linebox/data/line-height-045.json index 278313aa8..7c00cf941 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-045.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-045.json @@ -125,4 +125,4 @@ }, "assert": "The 'line-height' property sets a minimum minus one length value in millimeters.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-046.json b/tests/web_platform/CSS2/linebox/data/line-height-046.json index 74acb6d5e..575d80c61 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-046.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-046.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum length value in millimeters.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-047.json b/tests/web_platform/CSS2/linebox/data/line-height-047.json index 0d1bc8dd2..629060110 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-047.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-047.json @@ -127,4 +127,4 @@ }, "assert": "The 'line-height' property sets a minimum plus one length value in millimeters.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-048.json b/tests/web_platform/CSS2/linebox/data/line-height-048.json index 1c88157ef..b0b0049ce 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-048.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-048.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a negative zero length value in millimeters.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-049.json b/tests/web_platform/CSS2/linebox/data/line-height-049.json index cc47d69df..cd9b73fdc 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-049.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-049.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive zero length value in millimeters.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-050.json b/tests/web_platform/CSS2/linebox/data/line-height-050.json index 43d399279..0cd9c15de 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-050.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-050.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a nominal length value in millimeters.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-051.json b/tests/web_platform/CSS2/linebox/data/line-height-051.json index 1e4ac66c4..78dc03e00 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-051.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-051.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive nominal length value in millimeters.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-056.json b/tests/web_platform/CSS2/linebox/data/line-height-056.json index e8ef29d53..a58904149 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-056.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-056.json @@ -125,4 +125,4 @@ }, "assert": "The 'line-height' property sets a minimum minus one length value in inches.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-057.json b/tests/web_platform/CSS2/linebox/data/line-height-057.json index 5bf27d0bd..4d1bdfaf1 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-057.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-057.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum length value in inches.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-058.json b/tests/web_platform/CSS2/linebox/data/line-height-058.json index 93dd679a5..13e3fd8de 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-058.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-058.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum plus one length value in inches.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-059.json b/tests/web_platform/CSS2/linebox/data/line-height-059.json index 72ba7959d..acdfb2887 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-059.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-059.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a negative zero length value in inches.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-060.json b/tests/web_platform/CSS2/linebox/data/line-height-060.json index 98c0e5a3d..1006dcebd 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-060.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-060.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive zero length value in inches.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-061.json b/tests/web_platform/CSS2/linebox/data/line-height-061.json index 1b2ecb626..de1e5f77e 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-061.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-061.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a nominal length value in inches.", "matches": "line-height-061-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-062.json b/tests/web_platform/CSS2/linebox/data/line-height-062.json index 7dd4f143b..31fcd43e7 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-062.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-062.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive nominal length value in inches.", "matches": "line-height-061-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-067.json b/tests/web_platform/CSS2/linebox/data/line-height-067.json index dcded272f..058b5fd50 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-067.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-067.json @@ -125,4 +125,4 @@ }, "assert": "The 'line-height' property sets a minimum minus one length value in 'em' units.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-068.json b/tests/web_platform/CSS2/linebox/data/line-height-068.json index 1baf7e04b..5130d505a 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-068.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-068.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum length value in 'em' units.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-069.json b/tests/web_platform/CSS2/linebox/data/line-height-069.json index 80e396db8..0830b8b90 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-069.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-069.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum plus one length value in 'em' units.", "matches": "line-height-069-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-070.json b/tests/web_platform/CSS2/linebox/data/line-height-070.json index 28b76bdf8..b4f189138 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-070.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-070.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a negative zero length value in 'em' units.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-071.json b/tests/web_platform/CSS2/linebox/data/line-height-071.json index 8635ee590..5f7e2ef9b 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-071.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-071.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive zero length value in 'em' units.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-072.json b/tests/web_platform/CSS2/linebox/data/line-height-072.json index 1cc0dbe2e..edb631dd7 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-072.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-072.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a nominal length value in 'em' units.", "matches": "line-height-072-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-073.json b/tests/web_platform/CSS2/linebox/data/line-height-073.json index fa0f397aa..9ee55c7a6 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-073.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-073.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive nominal length value in 'em' units.", "matches": "line-height-072-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-078.json b/tests/web_platform/CSS2/linebox/data/line-height-078.json index f8020bd19..f7cc7d957 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-078.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-078.json @@ -125,4 +125,4 @@ }, "assert": "The 'line-height' property sets a minimum minus one length value in 'ex' units.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-079.json b/tests/web_platform/CSS2/linebox/data/line-height-079.json index c515ad6f0..fd3e233a2 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-079.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-079.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum length value in 'ex' units.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-080.json b/tests/web_platform/CSS2/linebox/data/line-height-080.json index cd85d7571..a21258216 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-080.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-080.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum plus one length value in 'ex' units.", "matches": "line-height-025-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-081.json b/tests/web_platform/CSS2/linebox/data/line-height-081.json index 9ef2c126b..4f9eee2bb 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-081.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-081.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a negative zero length value in 'ex' units.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-082.json b/tests/web_platform/CSS2/linebox/data/line-height-082.json index 75322c6ca..e1fa61d1a 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-082.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-082.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive zero length value in 'ex' units.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-083.json b/tests/web_platform/CSS2/linebox/data/line-height-083.json index e6271af7a..75b61438c 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-083.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-083.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a nominal length value in 'ex' units.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-084.json b/tests/web_platform/CSS2/linebox/data/line-height-084.json index 29a2286c9..cc5323dcf 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-084.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-084.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive nominal length value in 'ex' units.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-089.json b/tests/web_platform/CSS2/linebox/data/line-height-089.json index 941f6fd22..e030cb9f2 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-089.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-089.json @@ -125,4 +125,4 @@ }, "assert": "The 'line-height' property sets a minimum minus one length value in percentages.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-090.json b/tests/web_platform/CSS2/linebox/data/line-height-090.json index c47274c98..5fa411278 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-090.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-090.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum length value in percentages.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-091.json b/tests/web_platform/CSS2/linebox/data/line-height-091.json index 27cecb59f..ecb6d82cd 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-091.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-091.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum plus one length value in percentages.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-092.json b/tests/web_platform/CSS2/linebox/data/line-height-092.json index f3186c81e..9d95aaeff 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-092.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-092.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a negative zero length value in percentages.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-093.json b/tests/web_platform/CSS2/linebox/data/line-height-093.json index e35410f16..c821e8580 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-093.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-093.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive zero length value in percentages.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-094.json b/tests/web_platform/CSS2/linebox/data/line-height-094.json index 747d45c84..b27011e32 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-094.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-094.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a nominal length value in percentages.", "matches": "line-height-069-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-095.json b/tests/web_platform/CSS2/linebox/data/line-height-095.json index 8832626f4..7684bbb4a 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-095.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-095.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive nominal length value in percentages.", "matches": "line-height-069-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-100.json b/tests/web_platform/CSS2/linebox/data/line-height-100.json index 7b4a6f689..bef712542 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-100.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-100.json @@ -125,4 +125,4 @@ }, "assert": "The 'line-height' property sets a minimum minus one number value.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-101.json b/tests/web_platform/CSS2/linebox/data/line-height-101.json index ff1580eb3..e39c0f6e5 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-101.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-101.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum number value.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-102.json b/tests/web_platform/CSS2/linebox/data/line-height-102.json index 0432a1b55..e846b3829 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-102.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-102.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a minimum plus one number value.", "matches": "line-height-102-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-103.json b/tests/web_platform/CSS2/linebox/data/line-height-103.json index ae4e69305..e143310b0 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-103.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-103.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a negative zero number value.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-104.json b/tests/web_platform/CSS2/linebox/data/line-height-104.json index d0b6f67c9..e7b389c72 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-104.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-104.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive zero number value.", "matches": "line-height-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-105.json b/tests/web_platform/CSS2/linebox/data/line-height-105.json index 14280adb2..512e80d82 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-105.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-105.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a nominal number value.", "matches": "line-height-105-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-106.json b/tests/web_platform/CSS2/linebox/data/line-height-106.json index 6d4720fa9..9ac8aabdc 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-106.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-106.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property sets a positive nominal number value.", "matches": "line-height-105-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-111.json b/tests/web_platform/CSS2/linebox/data/line-height-111.json index 8cdeb2b69..442535e54 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-111.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-111.json @@ -117,4 +117,4 @@ }, "assert": "The 'line-height' property set to 'normal' uses the default line-height.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-112.json b/tests/web_platform/CSS2/linebox/data/line-height-112.json index afc9bae92..1e8595445 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-112.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-112.json @@ -94,4 +94,4 @@ }, "assert": "The 'line-height' property set to 'inherit' uses the default line-height.", "matches": "line-height-006-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-121.json b/tests/web_platform/CSS2/linebox/data/line-height-121.json index 2ff9eb3fc..b0297f7d2 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-121.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-121.json @@ -80,4 +80,4 @@ }, "assert": null, "matches": "line-height-121-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-125.json b/tests/web_platform/CSS2/linebox/data/line-height-125.json index 6da4f1dc4..6d10bc2e8 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-125.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-125.json @@ -84,4 +84,4 @@ }, "assert": null, "matches": "line-height-125-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-126.json b/tests/web_platform/CSS2/linebox/data/line-height-126.json index ada0f2dfc..38a360292 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-126.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-126.json @@ -46,4 +46,4 @@ }, "assert": null, "matches": "line-height-126-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-127.json b/tests/web_platform/CSS2/linebox/data/line-height-127.json index da51498a3..e938ed3bb 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-127.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-127.json @@ -138,4 +138,4 @@ }, "assert": null, "matches": "line-height-127-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-128.json b/tests/web_platform/CSS2/linebox/data/line-height-128.json index 59620ad80..9fa67ff61 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-128.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-128.json @@ -65,4 +65,4 @@ }, "assert": null, "matches": "line-height-128-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-129.json b/tests/web_platform/CSS2/linebox/data/line-height-129.json index abb59a105..1c8f25b3d 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-129.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-129.json @@ -36,4 +36,4 @@ }, "assert": "This test checks the height determination of a line box when such line box is made of a single inline replaced element. In this test, we verify that the margin box of an inline replaced element does indeed determine the line box height. div {line-height: 0px} rule only determines the minimum of the line box height.", "matches": "../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-001.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-001.json index 8d89e9131..87b4b373d 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-001.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-001.json @@ -98,4 +98,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'table-row-group'.", "matches": "line-height-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-002.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-002.json index 9dfd09e41..ad1db3eaa 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-002.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-002.json @@ -98,4 +98,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'table-header-group'.", "matches": "line-height-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-003.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-003.json index c271e6327..b24632ae0 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-003.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-003.json @@ -98,4 +98,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'table-footer-group'.", "matches": "line-height-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-004.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-004.json index 196ad893b..8c61bdd32 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-004.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-004.json @@ -89,4 +89,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'table-row'.", "matches": "line-height-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-005.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-005.json index f8b38b066..62b93c843 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-005.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-005.json @@ -96,4 +96,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'table-column-group'.", "matches": "line-height-applies-to-005-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-006.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-006.json index 60e6ae506..993feaf14 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-006.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-006.json @@ -96,4 +96,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'table-column'.", "matches": "line-height-applies-to-005-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-007.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-007.json index b6452eec5..33eddf962 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-007.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-007.json @@ -89,4 +89,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'table-cell'.", "matches": "line-height-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-008.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-008.json index 5563e8f84..1c3583d93 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-008.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-008.json @@ -108,4 +108,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'inline'.", "matches": "line-height-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-009.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-009.json index 4b7f555af..95ed24068 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-009.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-009.json @@ -69,4 +69,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'block'.", "matches": "line-height-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-010.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-010.json index 0f2581ac7..2c3c2d2db 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-010.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-010.json @@ -70,4 +70,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'list-item'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-012.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-012.json index 1469b866f..f0f8e4ae8 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-012.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-012.json @@ -70,4 +70,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'inline-block'.", "matches": "line-height-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-013.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-013.json index 6d12acaf5..3bc4e6b61 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-013.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-013.json @@ -89,4 +89,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'table'.", "matches": "line-height-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-014.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-014.json index 2af8cabe6..803fb429d 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-014.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-014.json @@ -89,4 +89,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'inline-table'.", "matches": "line-height-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-015.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-015.json index 796c7ec64..81516843e 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-015.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-015.json @@ -97,4 +97,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'table-caption'.", "matches": "line-height-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-016.json b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-016.json index acecb4ab5..e748b4b55 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-applies-to-016.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-applies-to-016.json @@ -58,4 +58,4 @@ }, "assert": "The 'line-height' property applies to elements with 'display' set to 'none'.", "matches": "line-height-applies-to-016-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-bleed-001.json b/tests/web_platform/CSS2/linebox/data/line-height-bleed-001.json index 84fd57f48..0eb78d274 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-bleed-001.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-bleed-001.json @@ -58,4 +58,4 @@ }, "assert": "Glyphs bleed out of the box when 'line-height' is less than the content height and the height of the box is not increased.", "matches": "line-height-bleed-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-bleed-002.json b/tests/web_platform/CSS2/linebox/data/line-height-bleed-002.json index d9c8e753a..c6e82ea6e 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-bleed-002.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-bleed-002.json @@ -46,4 +46,4 @@ }, "assert": "That glyphs bleed out of the box when 'line-height' can overlap adjoining line boxes.", "matches": "line-height-bleed-002-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-bleed-003.json b/tests/web_platform/CSS2/linebox/data/line-height-bleed-003.json index c49a5fd35..c55c4f515 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-bleed-003.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-bleed-003.json @@ -55,4 +55,4 @@ }, "assert": "Line-height can be different from the content area so there is space above and below.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-largest-001.json b/tests/web_platform/CSS2/linebox/data/line-height-largest-001.json index 929d6e847..c8171b8fd 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-largest-001.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-largest-001.json @@ -52,4 +52,4 @@ }, "assert": "The 'line-height' value may use the largest font size when there is more than one font size.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/line-height-normal-recommendation-001.json b/tests/web_platform/CSS2/linebox/data/line-height-normal-recommendation-001.json index 56c5bdab4..d4578afcf 100644 --- a/tests/web_platform/CSS2/linebox/data/line-height-normal-recommendation-001.json +++ b/tests/web_platform/CSS2/linebox/data/line-height-normal-recommendation-001.json @@ -118,4 +118,4 @@ }, "assert": "It is recommended that the 'normal' value for 'line-height' is set to 1.0 or 1.2 'em' units.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-004.json b/tests/web_platform/CSS2/linebox/data/vertical-align-004.json index 2da89f2ab..fae1671ee 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-004.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-004.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a negative zero length value in pixels.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-005.json b/tests/web_platform/CSS2/linebox/data/vertical-align-005.json index 0fafe140d..8e371e470 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-005.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-005.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a zero length value in pixels.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-006.json b/tests/web_platform/CSS2/linebox/data/vertical-align-006.json index febdc08c5..d3d3aebd4 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-006.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-006.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a positive zero length value in pixels.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-007.json b/tests/web_platform/CSS2/linebox/data/vertical-align-007.json index 5764d978d..5ebad7278 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-007.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-007.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a nominal length value in pixels.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-008.json b/tests/web_platform/CSS2/linebox/data/vertical-align-008.json index e346b9d10..5c83cbdd4 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-008.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-008.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a positive nominal length value in pixels.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-016.json b/tests/web_platform/CSS2/linebox/data/vertical-align-016.json index c0918e517..0b1a46b67 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-016.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-016.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a negative zero length value in points.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-017.json b/tests/web_platform/CSS2/linebox/data/vertical-align-017.json index 26a9b8f4a..9bd1d0bf4 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-017.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-017.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a zero length value in points.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-018.json b/tests/web_platform/CSS2/linebox/data/vertical-align-018.json index c0918e517..0b1a46b67 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-018.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-018.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a negative zero length value in points.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-019.json b/tests/web_platform/CSS2/linebox/data/vertical-align-019.json index 88fb9b6be..30293c724 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-019.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-019.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a nominal length value in points.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-020.json b/tests/web_platform/CSS2/linebox/data/vertical-align-020.json index 88fb9b6be..30293c724 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-020.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-020.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a nominal length value in points.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-028.json b/tests/web_platform/CSS2/linebox/data/vertical-align-028.json index 0150fb0ed..f0ab922e9 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-028.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-028.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a negative zero length value in picas.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-029.json b/tests/web_platform/CSS2/linebox/data/vertical-align-029.json index a16edf7bc..8205968fb 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-029.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-029.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a zero length value in picas.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-030.json b/tests/web_platform/CSS2/linebox/data/vertical-align-030.json index 03d0cde88..21fcc7ee8 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-030.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-030.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a positive zero length value in picas.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-031.json b/tests/web_platform/CSS2/linebox/data/vertical-align-031.json index 9ce95c467..6eb2e4816 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-031.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-031.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a nominal length value in picas.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-032.json b/tests/web_platform/CSS2/linebox/data/vertical-align-032.json index 8de2ec5ff..2e4f8a94c 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-032.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-032.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a positive nominal length value in picas.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-040.json b/tests/web_platform/CSS2/linebox/data/vertical-align-040.json index 0470fa436..b61444b58 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-040.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-040.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a negative zero length value in centimeters.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-041.json b/tests/web_platform/CSS2/linebox/data/vertical-align-041.json index 76814507f..9271ac3ef 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-041.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-041.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a zero length value in centimeters.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-042.json b/tests/web_platform/CSS2/linebox/data/vertical-align-042.json index 0441dd42d..ce21692d2 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-042.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-042.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a positive zero length value in centimeters.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-043.json b/tests/web_platform/CSS2/linebox/data/vertical-align-043.json index f0b7933d8..73f7d3fd2 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-043.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-043.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a nominal length value in centimeters.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-044.json b/tests/web_platform/CSS2/linebox/data/vertical-align-044.json index 81a673a26..1b7668d70 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-044.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-044.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a positive nominal length value in centimeters.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-052.json b/tests/web_platform/CSS2/linebox/data/vertical-align-052.json index e187f5b96..0eb61aa0c 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-052.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-052.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a negative zero length value in millimeters.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-053.json b/tests/web_platform/CSS2/linebox/data/vertical-align-053.json index 1e4aadf5f..f4e270cd7 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-053.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-053.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a zero length value in millimeters.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-054.json b/tests/web_platform/CSS2/linebox/data/vertical-align-054.json index 5e1a43cde..5ca85f300 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-054.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-054.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a positive zero length value in millimeters.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-055.json b/tests/web_platform/CSS2/linebox/data/vertical-align-055.json index 27a4b0ec5..8e69f389d 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-055.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-055.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a nominal length value in millimeters.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-056.json b/tests/web_platform/CSS2/linebox/data/vertical-align-056.json index 1169046ca..62040bfa8 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-056.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-056.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a positive nominal length value in millimeters.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-064.json b/tests/web_platform/CSS2/linebox/data/vertical-align-064.json index 77571d082..df0f56e93 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-064.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-064.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a negative zero length value in inches.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-065.json b/tests/web_platform/CSS2/linebox/data/vertical-align-065.json index 96890a4bf..5a568cb8d 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-065.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-065.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a zero length value in inches.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-066.json b/tests/web_platform/CSS2/linebox/data/vertical-align-066.json index 056ddd288..b7e1f025c 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-066.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-066.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a positive zero length value in inches.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-067.json b/tests/web_platform/CSS2/linebox/data/vertical-align-067.json index 53da67014..cda032caa 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-067.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-067.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a nominal length value in inches.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-068.json b/tests/web_platform/CSS2/linebox/data/vertical-align-068.json index c66034c62..cd543a15f 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-068.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-068.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a positive nominal length value in inches.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-076.json b/tests/web_platform/CSS2/linebox/data/vertical-align-076.json index 5e3ccb105..68d029e0e 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-076.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-076.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a negative zero length value in 'em' units.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-077.json b/tests/web_platform/CSS2/linebox/data/vertical-align-077.json index 0ce6bbf2b..0320ee069 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-077.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-077.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a zero length value in 'em' units.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-078.json b/tests/web_platform/CSS2/linebox/data/vertical-align-078.json index 52be2293e..ad1ef9aee 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-078.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-078.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a positive zero length value in 'em' units.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-079.json b/tests/web_platform/CSS2/linebox/data/vertical-align-079.json index 45d8c0dbe..c8d06cd2a 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-079.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-079.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a nominal length value in 'em' units.", "matches": "vertical-align-079-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-080.json b/tests/web_platform/CSS2/linebox/data/vertical-align-080.json index b309e9d7f..2765aadbf 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-080.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-080.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a positive nominal length value in 'em' units.", "matches": "vertical-align-079-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-088.json b/tests/web_platform/CSS2/linebox/data/vertical-align-088.json index ef8380e0b..54d43577f 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-088.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-088.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a negative zero length value in 'ex' units.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-089.json b/tests/web_platform/CSS2/linebox/data/vertical-align-089.json index 293e7d1d0..4385586cb 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-089.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-089.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a zero length value in 'ex' units.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-090.json b/tests/web_platform/CSS2/linebox/data/vertical-align-090.json index 6eb7ad564..9e1559a41 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-090.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-090.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a positive zero length value in 'ex' units.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-091.json b/tests/web_platform/CSS2/linebox/data/vertical-align-091.json index d82585694..11b465311 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-091.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-091.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a nominal length value in 'ex' units.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-092.json b/tests/web_platform/CSS2/linebox/data/vertical-align-092.json index 9c20d6b04..1e637398f 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-092.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-092.json @@ -110,4 +110,4 @@ }, "assert": "The 'vertical-align' property sets a positive nominal length value in 'ex' units.", "matches": "vertical-align-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-100.json b/tests/web_platform/CSS2/linebox/data/vertical-align-100.json index c30b2b4d5..8d33d4e46 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-100.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-100.json @@ -90,4 +90,4 @@ }, "assert": "The 'vertical-align' property sets a negative zero length value in percentages.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-101.json b/tests/web_platform/CSS2/linebox/data/vertical-align-101.json index 1b1e36376..ba5399353 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-101.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-101.json @@ -90,4 +90,4 @@ }, "assert": "The 'vertical-align' property sets a zero length value in percentages.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-102.json b/tests/web_platform/CSS2/linebox/data/vertical-align-102.json index c723989c7..805535441 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-102.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-102.json @@ -90,4 +90,4 @@ }, "assert": "The 'vertical-align' property sets a positive zero length value in percentages.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-103.json b/tests/web_platform/CSS2/linebox/data/vertical-align-103.json index a31605e42..b2431f34d 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-103.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-103.json @@ -118,4 +118,4 @@ }, "assert": "The 'vertical-align' property sets a nominal length value in percentages.", "matches": "vertical-align-103-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-104.json b/tests/web_platform/CSS2/linebox/data/vertical-align-104.json index a3d22f91e..17bc90ed3 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-104.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-104.json @@ -118,4 +118,4 @@ }, "assert": "The 'vertical-align' property sets a positive nominal length value in percentages.", "matches": "vertical-align-103-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-109.json b/tests/web_platform/CSS2/linebox/data/vertical-align-109.json index 41d4eff07..9691edc2e 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-109.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-109.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a negative zero length value with no units.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-110.json b/tests/web_platform/CSS2/linebox/data/vertical-align-110.json index 34d2c834d..9275e4906 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-110.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-110.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a zero length value with no units.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-111.json b/tests/web_platform/CSS2/linebox/data/vertical-align-111.json index f852f8160..a3f591400 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-111.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-111.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property sets a positive zero length value with no units.", "matches": "vertical-align-004-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-112.json b/tests/web_platform/CSS2/linebox/data/vertical-align-112.json index 8bb5f9644..2e6e8a94e 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-112.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-112.json @@ -101,4 +101,4 @@ }, "assert": "The 'vertical-align' property sets the keyword 'baseline'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-113.json b/tests/web_platform/CSS2/linebox/data/vertical-align-113.json index 7d46a5c80..a4516ad82 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-113.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-113.json @@ -101,4 +101,4 @@ }, "assert": "The 'vertical-align' property sets the keyword 'bottom'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-114.json b/tests/web_platform/CSS2/linebox/data/vertical-align-114.json index a5766b8b7..551328759 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-114.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-114.json @@ -101,4 +101,4 @@ }, "assert": "The 'vertical-align' property sets the keyword 'middle'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-115.json b/tests/web_platform/CSS2/linebox/data/vertical-align-115.json index e9edebb9d..a719ae294 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-115.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-115.json @@ -102,4 +102,4 @@ }, "assert": "The 'vertical-align' property sets the keyword 'sub'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-116.json b/tests/web_platform/CSS2/linebox/data/vertical-align-116.json index 46f698932..08dfef324 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-116.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-116.json @@ -102,4 +102,4 @@ }, "assert": "The 'vertical-align' property sets the keyword 'super'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-117.json b/tests/web_platform/CSS2/linebox/data/vertical-align-117.json index 8ac750b5e..48c8462ba 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-117.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-117.json @@ -94,4 +94,4 @@ }, "assert": "The 'vertical-align' property sets the keyword 'text-bottom'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-117a.json b/tests/web_platform/CSS2/linebox/data/vertical-align-117a.json index d1e0d4756..305854cdc 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-117a.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-117a.json @@ -58,4 +58,4 @@ }, "assert": "For inline non-replaced elements (such as the span element in this testcase), the box used for vertical-alignment is the box whose height is the 'line-height' (containing the box's glyphs and the half-leading on each side). 'vertical-align: text-bottom' will align the bottom of such box with the bottom of the parent's content area and not with the bottom of the parent's box.", "matches": "vertical-align-117a-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-118.json b/tests/web_platform/CSS2/linebox/data/vertical-align-118.json index a84491a12..a69735f60 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-118.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-118.json @@ -94,4 +94,4 @@ }, "assert": "The 'vertical-align' property sets the keyword 'text-top'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-118a.json b/tests/web_platform/CSS2/linebox/data/vertical-align-118a.json index 27fe640d0..846e46be5 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-118a.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-118a.json @@ -58,4 +58,4 @@ }, "assert": "For inline non-replaced elements (such as the span element in this testcase), the box used for vertical-alignment is the box whose height is the 'line-height' (containing the box's glyphs and the half-leading on each side). 'vertical-align: text-top' will align the top of such box with the top of the parent's content area and not with the bottom of the parent's box.", "matches": "vertical-align-118a-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-119.json b/tests/web_platform/CSS2/linebox/data/vertical-align-119.json index d20ec28ce..f3393101d 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-119.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-119.json @@ -101,4 +101,4 @@ }, "assert": "The 'vertical-align' property sets the keyword 'top'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-120.json b/tests/web_platform/CSS2/linebox/data/vertical-align-120.json index 229d120a0..cd2611954 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-120.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-120.json @@ -102,4 +102,4 @@ }, "assert": "The 'vertical-align' property sets the keyword 'inherit' and inherits the computed value from the parent element.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-121.json b/tests/web_platform/CSS2/linebox/data/vertical-align-121.json index 96d8185f0..6a14276f2 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-121.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-121.json @@ -98,4 +98,4 @@ }, "assert": null, "matches": "vertical-align-121-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-001.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-001.json index 7d9967926..40f42ec74 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-001.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-001.json @@ -100,4 +100,4 @@ }, "assert": "The 'vertical-align' property does not apply to elements with 'display' set to 'table-row-group'.", "matches": "vertical-align-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-002.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-002.json index 8fc846749..2b5b8c5ff 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-002.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-002.json @@ -100,4 +100,4 @@ }, "assert": "The 'vertical-align' property does not apply to elements with 'display' set to 'table-header-group'.", "matches": "vertical-align-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-003.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-003.json index e249a17a8..d4f615fae 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-003.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-003.json @@ -100,4 +100,4 @@ }, "assert": "The 'vertical-align' property does not apply to elements with 'display' set to 'table-footer-group'.", "matches": "vertical-align-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-004.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-004.json index 191568ff9..aad98235b 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-004.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-004.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property does not apply to elements with 'display' set to 'table-row'.", "matches": "vertical-align-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-005.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-005.json index e3c47dd8f..35ded75c3 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-005.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-005.json @@ -98,4 +98,4 @@ }, "assert": "The 'vertical-align' property does not apply to elements with 'display' set to 'table-column-group'.", "matches": "vertical-align-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-006.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-006.json index 2389fd157..3786fa462 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-006.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-006.json @@ -98,4 +98,4 @@ }, "assert": "The 'vertical-align' property does not apply to elements with 'display' set to 'table-column'.", "matches": "vertical-align-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-007.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-007.json index d964deb96..6cc729fbb 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-007.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-007.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property applies to elements with 'display' set to 'table-cell'.", "matches": "vertical-align-applies-to-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-008.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-008.json index 5a625bc39..ef1cd8000 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-008.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-008.json @@ -98,4 +98,4 @@ }, "assert": "The 'vertical-align' property applies to elements with 'display' set to 'inline'.", "matches": "vertical-align-applies-to-008-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-009.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-009.json index e6d153a1b..ecd0a4a6a 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-009.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-009.json @@ -59,4 +59,4 @@ }, "assert": "The 'vertical-align' property does not apply to elements with 'display' set to 'block'.", "matches": "vertical-align-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-010.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-010.json index 4e070cb07..291633495 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-010.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-010.json @@ -52,4 +52,4 @@ }, "assert": "The 'vertical-align' property does not apply to elements with 'display' set to 'list-item'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-012.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-012.json index d9c62e333..09fb6e7d7 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-012.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-012.json @@ -51,4 +51,4 @@ }, "assert": "The 'vertical-align' property does not apply to elements with 'display' set to 'inline-block'.", "matches": "vertical-align-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-013.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-013.json index 2de2312a2..214a78887 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-013.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-013.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property does not apply to elements with 'display' set to 'table'.", "matches": "vertical-align-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-014.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-014.json index 9d02d34ad..97062bd22 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-014.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-014.json @@ -84,4 +84,4 @@ }, "assert": "The 'vertical-align' property does not apply to elements with 'display' set to 'inline-table'.", "matches": "vertical-align-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-015.json b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-015.json index ef69d0663..491ecc1b7 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-015.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-applies-to-015.json @@ -99,4 +99,4 @@ }, "assert": "The 'vertical-align' property does not apply to elements with 'display' set to 'table-caption'.", "matches": "vertical-align-applies-to-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-001.json b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-001.json index 99322a1ea..2865b9ba5 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-001.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-001.json @@ -62,4 +62,4 @@ }, "assert": "The 'vertical-align' property set to '0%' means the same as the 'baseline'.", "matches": "vertical-align-baseline-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-002.json b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-002.json index 6368259d5..4a0beec8f 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-002.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-002.json @@ -62,4 +62,4 @@ }, "assert": "The 'vertical-align' property set to '0' means the same as the 'baseline'.", "matches": "vertical-align-baseline-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-003.json b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-003.json index 55e2bc445..3ad288b9a 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-003.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-003.json @@ -66,4 +66,4 @@ }, "assert": "The 'vertical-align' property aligns the last line box of 'inline-block' elements with the baseline.", "matches": "vertical-align-baseline-003-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-004.json b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-004.json index 3cb997322..d334cf8c9 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-004.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-004.json @@ -104,4 +104,4 @@ }, "assert": "The 'vertical-align' property aligns an empty 'inline-block' elements' bottom margin edge with the baseline.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-004a.json b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-004a.json index 8253bd3ba..e575c4ca6 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-004a.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-004a.json @@ -60,4 +60,4 @@ }, "assert": "The baseline of an 'inline-block' that has no in-flow line boxes is at its bottom margin edge. The bottom margin edge of an 'inline-block' that has no inflow line boxes will 'sit' on the baseline, will be located on the baseline of such 'inline-block'.", "matches": "vertical-align-baseline-004a-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-005.json b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-005.json index 6b90ba8ba..1367ce24c 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-005.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-005.json @@ -77,4 +77,4 @@ }, "assert": "The 'vertical-align' property aligns an 'inline-block' elements' bottom margin edge with the baseline when 'overflow' is not set to 'visible'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-005a.json b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-005a.json index df8355d55..034edc561 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-005a.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-005a.json @@ -64,4 +64,4 @@ }, "assert": "The baseline of an 'inline-block' whose 'overflow' property has a computed value other than 'visible' is located at its bottom margin edge.", "matches": "vertical-align-baseline-004a-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-006.json b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-006.json index dd0e50a54..13ef88f5d 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-006.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-006.json @@ -51,4 +51,4 @@ }, "assert": "The baseline of an inline element is aligned with the baseline of its child inline-block when 'vertical-align: baseline' is specified on the child.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-006a.json b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-006a.json index 3f8f8cc18..b6e94d557 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-006a.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-006a.json @@ -87,4 +87,4 @@ }, "assert": "The baseline of an (anonymous) inline element is aligned with the baseline of the last line box of an 'inline-block' in the normal flow as 'vertical-align: baseline' is by default applied. In such case, the vertical padding and vertical margin have no influence on the position of the baseline line of an 'inline-block'.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-007.json b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-007.json index d6676e3cb..36c1bb2e7 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-007.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-007.json @@ -44,4 +44,4 @@ }, "assert": "The baseline of a block element is aligned with the baseline of its child inline element when 'vertical-align: baseline' is specified on the child.", "matches": "vertical-align-baseline-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-008.json b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-008.json index ca29afe8f..c1eec6470 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-008.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-008.json @@ -61,4 +61,4 @@ }, "assert": "The baseline of a table cell element is aligned with the baseline of its child inline element when 'vertical-align: baseline' is specified on the child.", "matches": "vertical-align-baseline-008-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-009.json b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-009.json index fb8fa8346..9cb602a18 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-009.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-009.json @@ -51,4 +51,4 @@ }, "assert": "The baseline of a table caption element is aligned with the baseline of its child inline element when 'vertical-align: baseline' is specified on the child.", "matches": "vertical-align-baseline-007-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-010.json b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-010.json index 53fc9ee84..20e8d1f09 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-010.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-baseline-010.json @@ -44,4 +44,4 @@ }, "assert": "The baseline of an inline-block element is aligned with the baseline of its child inline element when 'vertical-align: baseline' is specified on the child.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-boxes-001.json b/tests/web_platform/CSS2/linebox/data/vertical-align-boxes-001.json index 240b747c2..238d48a07 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-boxes-001.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-boxes-001.json @@ -180,4 +180,4 @@ }, "assert": "Vertical alignment aligns the margin box of inline replaced elements.", "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-sub-001.json b/tests/web_platform/CSS2/linebox/data/vertical-align-sub-001.json index ab7163696..0ee0c094c 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-sub-001.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-sub-001.json @@ -55,4 +55,4 @@ }, "assert": "The 'vertical-align' property value 'sub' has no effect on the font-size of an element's text.", "matches": "vertical-align-sub-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/data/vertical-align-super-001.json b/tests/web_platform/CSS2/linebox/data/vertical-align-super-001.json index a5d1b5514..ec7aafdb2 100644 --- a/tests/web_platform/CSS2/linebox/data/vertical-align-super-001.json +++ b/tests/web_platform/CSS2/linebox/data/vertical-align-super-001.json @@ -55,4 +55,4 @@ }, "assert": "The 'vertical-align' property value 'super' has no effect on the font-size of an element's text.", "matches": "vertical-align-sub-001-ref.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/border-padding-bleed-001.json b/tests/web_platform/CSS2/linebox/ref/border-padding-bleed-001.json index 8a4cd2c67..fc5e95328 100644 --- a/tests/web_platform/CSS2/linebox/ref/border-padding-bleed-001.json +++ b/tests/web_platform/CSS2/linebox/ref/border-padding-bleed-001.json @@ -194,4 +194,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/border-padding-bleed-002.json b/tests/web_platform/CSS2/linebox/ref/border-padding-bleed-002.json index a3eed53eb..7b8d8456c 100644 --- a/tests/web_platform/CSS2/linebox/ref/border-padding-bleed-002.json +++ b/tests/web_platform/CSS2/linebox/ref/border-padding-bleed-002.json @@ -194,4 +194,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/border-padding-bleed-003.json b/tests/web_platform/CSS2/linebox/ref/border-padding-bleed-003.json index 6675e9c15..4a45dc205 100644 --- a/tests/web_platform/CSS2/linebox/ref/border-padding-bleed-003.json +++ b/tests/web_platform/CSS2/linebox/ref/border-padding-bleed-003.json @@ -194,4 +194,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/empty-inline-001.json b/tests/web_platform/CSS2/linebox/ref/empty-inline-001.json index 61f48c2d2..91471d6ce 100644 --- a/tests/web_platform/CSS2/linebox/ref/empty-inline-001.json +++ b/tests/web_platform/CSS2/linebox/ref/empty-inline-001.json @@ -139,4 +139,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/empty-inline-002.json b/tests/web_platform/CSS2/linebox/ref/empty-inline-002.json index 22d6b3c05..59b7cf9d6 100644 --- a/tests/web_platform/CSS2/linebox/ref/empty-inline-002.json +++ b/tests/web_platform/CSS2/linebox/ref/empty-inline-002.json @@ -281,4 +281,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/empty-inline-003.json b/tests/web_platform/CSS2/linebox/ref/empty-inline-003.json index 0e3a1244a..56f7239d7 100644 --- a/tests/web_platform/CSS2/linebox/ref/empty-inline-003.json +++ b/tests/web_platform/CSS2/linebox/ref/empty-inline-003.json @@ -242,4 +242,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-box-001.json b/tests/web_platform/CSS2/linebox/ref/inline-box-001.json index 26faa7e59..a8b4f03ac 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-box-001.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-box-001.json @@ -155,4 +155,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-box-002.json b/tests/web_platform/CSS2/linebox/ref/inline-box-002.json index 672467816..773efbb6c 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-box-002.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-box-002.json @@ -203,4 +203,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-001.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-001.json index 64d992536..9943d3843 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-001.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-001.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-002.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-002.json index 84c7b74c8..109e63fb9 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-002.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-002.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-003.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-003.json index 6009fc5ba..9be6fc2b5 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-003.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-003.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-004.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-004.json index 0249cffcc..4c7700e3c 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-004.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-004.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-005.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-005.json index bec116e76..c0d3702a4 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-005.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-005.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-006.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-006.json index 53804dfd7..6bee36ac1 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-006.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-006.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-007.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-007.json index cf0835d6b..cccba4102 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-007.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-007.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-008.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-008.json index 43c2571e9..1fe6fa6e3 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-008.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-008.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-009.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-009.json index a07b501d2..4d1a28dfd 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-009.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-009.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010.json index d88c58001..3cc22bcc9 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010b.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010b.json index fa2ff54c6..5a47d0df0 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010b.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010b.json @@ -462,4 +462,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010c.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010c.json index 804d07f95..99ee4fe30 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010c.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010c.json @@ -338,4 +338,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010d.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010d.json index 71777833d..f8e7d7cf0 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010d.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-010d.json @@ -330,4 +330,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-011.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-011.json index c3030b605..ae66e6fd8 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-011.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-011.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-012.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-012.json index 9bbacbe3c..f3f6f120c 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-012.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-012.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-013.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-013.json index 525bebbed..e54148845 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-013.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-013.json @@ -333,4 +333,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-014.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-014.json index c37b19fbd..77e1a50fb 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-014.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-014.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-015.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-015.json index 109cea41e..d2a59fc77 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-015.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-015.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-016.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-016.json index 647612a0e..cc6c0ea42 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-016.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-016.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-017.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-017.json index c09bb63fd..1bb301241 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-017.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-017.json @@ -148,4 +148,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-018.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-018.json index 5db4b92fc..755f2a1be 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-018.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-018.json @@ -148,4 +148,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-019.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-019.json index 5db4b92fc..755f2a1be 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-019.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-019.json @@ -148,4 +148,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-020.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-020.json index 190dfd3cb..44457f6da 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-020.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-020.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-021.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-021.json index c19756b52..10abb8a9f 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-021.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-021.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-022.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-022.json index 91a2822d5..341aab239 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-022.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-022.json @@ -141,4 +141,4 @@ 40 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-023.json b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-023.json index 5e1e8d962..536de0f5d 100644 --- a/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-023.json +++ b/tests/web_platform/CSS2/linebox/ref/inline-formatting-context-023.json @@ -203,4 +203,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/leading-001.json b/tests/web_platform/CSS2/linebox/ref/leading-001.json index d3506e8cf..d8b5d81df 100644 --- a/tests/web_platform/CSS2/linebox/ref/leading-001.json +++ b/tests/web_platform/CSS2/linebox/ref/leading-001.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-box-height-001.json b/tests/web_platform/CSS2/linebox/ref/line-box-height-001.json index 384bf9eae..2756c5622 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-box-height-001.json +++ b/tests/web_platform/CSS2/linebox/ref/line-box-height-001.json @@ -235,4 +235,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-box-height-002.json b/tests/web_platform/CSS2/linebox/ref/line-box-height-002.json index e07662dc6..fef496c76 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-box-height-002.json +++ b/tests/web_platform/CSS2/linebox/ref/line-box-height-002.json @@ -185,4 +185,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-001.json b/tests/web_platform/CSS2/linebox/ref/line-height-001.json index 79f9dfbe7..e8abe5535 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-001.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-001.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-002.json b/tests/web_platform/CSS2/linebox/ref/line-height-002.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-002.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-002.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-003.json b/tests/web_platform/CSS2/linebox/ref/line-height-003.json index 3fadf1fc6..b037e7e7d 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-003.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-003.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-004.json b/tests/web_platform/CSS2/linebox/ref/line-height-004.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-004.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-004.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-005.json b/tests/web_platform/CSS2/linebox/ref/line-height-005.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-005.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-005.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-006.json b/tests/web_platform/CSS2/linebox/ref/line-height-006.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-006.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-006.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-007.json b/tests/web_platform/CSS2/linebox/ref/line-height-007.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-007.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-007.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-012.json b/tests/web_platform/CSS2/linebox/ref/line-height-012.json index 79f9dfbe7..e8abe5535 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-012.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-012.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-013.json b/tests/web_platform/CSS2/linebox/ref/line-height-013.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-013.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-013.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-014.json b/tests/web_platform/CSS2/linebox/ref/line-height-014.json index 3fadf1fc6..b037e7e7d 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-014.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-014.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-015.json b/tests/web_platform/CSS2/linebox/ref/line-height-015.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-015.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-015.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-016.json b/tests/web_platform/CSS2/linebox/ref/line-height-016.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-016.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-016.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-017.json b/tests/web_platform/CSS2/linebox/ref/line-height-017.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-017.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-017.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-018.json b/tests/web_platform/CSS2/linebox/ref/line-height-018.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-018.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-018.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-023.json b/tests/web_platform/CSS2/linebox/ref/line-height-023.json index 79f9dfbe7..e8abe5535 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-023.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-023.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-024.json b/tests/web_platform/CSS2/linebox/ref/line-height-024.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-024.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-024.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-025.json b/tests/web_platform/CSS2/linebox/ref/line-height-025.json index 0dc320be7..abfe94cd6 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-025.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-025.json @@ -281,4 +281,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-026.json b/tests/web_platform/CSS2/linebox/ref/line-height-026.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-026.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-026.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-027.json b/tests/web_platform/CSS2/linebox/ref/line-height-027.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-027.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-027.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-028.json b/tests/web_platform/CSS2/linebox/ref/line-height-028.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-028.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-028.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-029.json b/tests/web_platform/CSS2/linebox/ref/line-height-029.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-029.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-029.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-034.json b/tests/web_platform/CSS2/linebox/ref/line-height-034.json index 79f9dfbe7..e8abe5535 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-034.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-034.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-035.json b/tests/web_platform/CSS2/linebox/ref/line-height-035.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-035.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-035.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-036.json b/tests/web_platform/CSS2/linebox/ref/line-height-036.json index c28548a18..e88e79c74 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-036.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-036.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-037.json b/tests/web_platform/CSS2/linebox/ref/line-height-037.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-037.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-037.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-038.json b/tests/web_platform/CSS2/linebox/ref/line-height-038.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-038.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-038.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-039.json b/tests/web_platform/CSS2/linebox/ref/line-height-039.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-039.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-039.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-040.json b/tests/web_platform/CSS2/linebox/ref/line-height-040.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-040.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-040.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-045.json b/tests/web_platform/CSS2/linebox/ref/line-height-045.json index 79f9dfbe7..e8abe5535 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-045.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-045.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-046.json b/tests/web_platform/CSS2/linebox/ref/line-height-046.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-046.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-046.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-047.json b/tests/web_platform/CSS2/linebox/ref/line-height-047.json index 99a7f9191..d766e9817 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-047.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-047.json @@ -281,4 +281,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-048.json b/tests/web_platform/CSS2/linebox/ref/line-height-048.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-048.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-048.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-049.json b/tests/web_platform/CSS2/linebox/ref/line-height-049.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-049.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-049.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-050.json b/tests/web_platform/CSS2/linebox/ref/line-height-050.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-050.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-050.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-051.json b/tests/web_platform/CSS2/linebox/ref/line-height-051.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-051.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-051.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-056.json b/tests/web_platform/CSS2/linebox/ref/line-height-056.json index 79f9dfbe7..e8abe5535 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-056.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-056.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-057.json b/tests/web_platform/CSS2/linebox/ref/line-height-057.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-057.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-057.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-058.json b/tests/web_platform/CSS2/linebox/ref/line-height-058.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-058.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-058.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-059.json b/tests/web_platform/CSS2/linebox/ref/line-height-059.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-059.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-059.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-060.json b/tests/web_platform/CSS2/linebox/ref/line-height-060.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-060.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-060.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-061.json b/tests/web_platform/CSS2/linebox/ref/line-height-061.json index d0f57bd7c..3598b009a 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-061.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-061.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-062.json b/tests/web_platform/CSS2/linebox/ref/line-height-062.json index d0f57bd7c..3598b009a 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-062.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-062.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-067.json b/tests/web_platform/CSS2/linebox/ref/line-height-067.json index 79f9dfbe7..e8abe5535 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-067.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-067.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-068.json b/tests/web_platform/CSS2/linebox/ref/line-height-068.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-068.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-068.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-069.json b/tests/web_platform/CSS2/linebox/ref/line-height-069.json index 56265a2ce..754a6a5ed 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-069.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-069.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-070.json b/tests/web_platform/CSS2/linebox/ref/line-height-070.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-070.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-070.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-071.json b/tests/web_platform/CSS2/linebox/ref/line-height-071.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-071.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-071.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-072.json b/tests/web_platform/CSS2/linebox/ref/line-height-072.json index c282753e2..c432521e3 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-072.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-072.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-073.json b/tests/web_platform/CSS2/linebox/ref/line-height-073.json index c282753e2..c432521e3 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-073.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-073.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-078.json b/tests/web_platform/CSS2/linebox/ref/line-height-078.json index 79f9dfbe7..e8abe5535 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-078.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-078.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-079.json b/tests/web_platform/CSS2/linebox/ref/line-height-079.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-079.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-079.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-080.json b/tests/web_platform/CSS2/linebox/ref/line-height-080.json index 0d6506a06..066cd6350 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-080.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-080.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-081.json b/tests/web_platform/CSS2/linebox/ref/line-height-081.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-081.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-081.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-082.json b/tests/web_platform/CSS2/linebox/ref/line-height-082.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-082.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-082.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-083.json b/tests/web_platform/CSS2/linebox/ref/line-height-083.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-083.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-083.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-084.json b/tests/web_platform/CSS2/linebox/ref/line-height-084.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-084.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-084.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-089.json b/tests/web_platform/CSS2/linebox/ref/line-height-089.json index 79f9dfbe7..e8abe5535 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-089.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-089.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-090.json b/tests/web_platform/CSS2/linebox/ref/line-height-090.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-090.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-090.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-091.json b/tests/web_platform/CSS2/linebox/ref/line-height-091.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-091.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-091.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-092.json b/tests/web_platform/CSS2/linebox/ref/line-height-092.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-092.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-092.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-093.json b/tests/web_platform/CSS2/linebox/ref/line-height-093.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-093.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-093.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-094.json b/tests/web_platform/CSS2/linebox/ref/line-height-094.json index 56265a2ce..754a6a5ed 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-094.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-094.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-095.json b/tests/web_platform/CSS2/linebox/ref/line-height-095.json index 56265a2ce..754a6a5ed 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-095.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-095.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-100.json b/tests/web_platform/CSS2/linebox/ref/line-height-100.json index 79f9dfbe7..e8abe5535 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-100.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-100.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-101.json b/tests/web_platform/CSS2/linebox/ref/line-height-101.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-101.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-101.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-102.json b/tests/web_platform/CSS2/linebox/ref/line-height-102.json index 537209cd9..0240998a8 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-102.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-102.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-103.json b/tests/web_platform/CSS2/linebox/ref/line-height-103.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-103.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-103.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-104.json b/tests/web_platform/CSS2/linebox/ref/line-height-104.json index 2442d6e93..3010ac6c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-104.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-104.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-105.json b/tests/web_platform/CSS2/linebox/ref/line-height-105.json index 7b564a369..0998a1ac1 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-105.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-105.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-106.json b/tests/web_platform/CSS2/linebox/ref/line-height-106.json index 7b564a369..0998a1ac1 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-106.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-106.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-111.json b/tests/web_platform/CSS2/linebox/ref/line-height-111.json index a0ddb0ad0..37ab21870 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-111.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-111.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-112.json b/tests/web_platform/CSS2/linebox/ref/line-height-112.json index 25dce30de..052a408bd 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-112.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-112.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-121.json b/tests/web_platform/CSS2/linebox/ref/line-height-121.json index 8051ccc16..21e1b1eb6 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-121.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-121.json @@ -162,4 +162,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-125.json b/tests/web_platform/CSS2/linebox/ref/line-height-125.json index 3586dbff6..dd5b7ae0c 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-125.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-125.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-126.json b/tests/web_platform/CSS2/linebox/ref/line-height-126.json index 3934bcaf8..987e45fa5 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-126.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-126.json @@ -139,4 +139,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-127.json b/tests/web_platform/CSS2/linebox/ref/line-height-127.json index 35bc1da5a..6108cc0e0 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-127.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-127.json @@ -384,4 +384,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-128.json b/tests/web_platform/CSS2/linebox/ref/line-height-128.json index 63747734c..df83789fe 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-128.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-128.json @@ -93,4 +93,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-129.json b/tests/web_platform/CSS2/linebox/ref/line-height-129.json index bf8374292..cd26a23c9 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-129.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-129.json @@ -139,4 +139,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-001.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-001.json index 489e3e641..890716f95 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-001.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-001.json @@ -330,4 +330,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-002.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-002.json index 489e3e641..890716f95 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-002.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-002.json @@ -330,4 +330,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-003.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-003.json index 489e3e641..890716f95 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-003.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-003.json @@ -330,4 +330,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-004.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-004.json index 059aee1d3..96e0bbff8 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-004.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-004.json @@ -282,4 +282,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-005.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-005.json index bedc16fb5..bb65c60d8 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-005.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-005.json @@ -327,4 +327,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-006.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-006.json index bedc16fb5..bb65c60d8 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-006.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-006.json @@ -327,4 +327,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-007.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-007.json index 059aee1d3..96e0bbff8 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-007.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-007.json @@ -282,4 +282,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-008.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-008.json index 5ef2022e5..be7db7a4a 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-008.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-008.json @@ -278,4 +278,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-009.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-009.json index ad2e885ad..75f25f258 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-009.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-009.json @@ -186,4 +186,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-010.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-010.json index 3180325c2..2d13c1de5 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-010.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-010.json @@ -186,4 +186,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-012.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-012.json index 15dcbd1e7..6b0f02ed1 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-012.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-012.json @@ -186,4 +186,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-013.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-013.json index 059aee1d3..96e0bbff8 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-013.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-013.json @@ -282,4 +282,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-014.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-014.json index 059aee1d3..96e0bbff8 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-014.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-014.json @@ -282,4 +282,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-015.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-015.json index c464a7933..bb0bc94fa 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-015.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-015.json @@ -328,4 +328,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-016.json b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-016.json index 704ea705a..83a6d8d96 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-016.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-applies-to-016.json @@ -92,4 +92,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-bleed-001.json b/tests/web_platform/CSS2/linebox/ref/line-height-bleed-001.json index 63da95841..31f42c68f 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-bleed-001.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-bleed-001.json @@ -141,4 +141,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-bleed-002.json b/tests/web_platform/CSS2/linebox/ref/line-height-bleed-002.json index 5104d41f2..cd43be579 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-bleed-002.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-bleed-002.json @@ -141,4 +141,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-bleed-003.json b/tests/web_platform/CSS2/linebox/ref/line-height-bleed-003.json index ead70bf6d..98d3c3822 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-bleed-003.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-bleed-003.json @@ -201,4 +201,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-largest-001.json b/tests/web_platform/CSS2/linebox/ref/line-height-largest-001.json index f5555a225..0a01918c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-largest-001.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-largest-001.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/line-height-normal-recommendation-001.json b/tests/web_platform/CSS2/linebox/ref/line-height-normal-recommendation-001.json index c29bd62ed..d1461f0c3 100644 --- a/tests/web_platform/CSS2/linebox/ref/line-height-normal-recommendation-001.json +++ b/tests/web_platform/CSS2/linebox/ref/line-height-normal-recommendation-001.json @@ -232,4 +232,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-004.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-004.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-004.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-004.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-005.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-005.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-005.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-005.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-006.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-006.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-006.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-006.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-007.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-007.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-007.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-007.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-008.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-008.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-008.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-008.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-016.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-016.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-016.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-016.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-017.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-017.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-017.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-017.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-018.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-018.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-018.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-018.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-019.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-019.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-019.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-019.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-020.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-020.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-020.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-020.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-028.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-028.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-028.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-028.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-029.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-029.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-029.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-029.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-030.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-030.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-030.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-030.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-031.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-031.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-031.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-031.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-032.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-032.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-032.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-032.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-040.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-040.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-040.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-040.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-041.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-041.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-041.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-041.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-042.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-042.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-042.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-042.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-043.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-043.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-043.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-043.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-044.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-044.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-044.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-044.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-052.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-052.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-052.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-052.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-053.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-053.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-053.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-053.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-054.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-054.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-054.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-054.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-055.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-055.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-055.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-055.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-056.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-056.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-056.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-056.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-064.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-064.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-064.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-064.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-065.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-065.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-065.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-065.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-066.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-066.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-066.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-066.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-067.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-067.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-067.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-067.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-068.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-068.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-068.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-068.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-076.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-076.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-076.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-076.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-077.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-077.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-077.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-077.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-078.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-078.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-078.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-078.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-079.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-079.json index b462c63aa..d6c0d9d11 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-079.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-079.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-080.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-080.json index b462c63aa..d6c0d9d11 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-080.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-080.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-088.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-088.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-088.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-088.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-089.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-089.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-089.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-089.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-090.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-090.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-090.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-090.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-091.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-091.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-091.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-091.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-092.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-092.json index 0f05e1011..dcbe9fddd 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-092.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-092.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-100.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-100.json index dcbea806d..15b1353d8 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-100.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-100.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-101.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-101.json index dcbea806d..15b1353d8 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-101.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-101.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-102.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-102.json index dcbea806d..15b1353d8 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-102.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-102.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-103.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-103.json index b2bf34ddb..8385eb362 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-103.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-103.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-104.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-104.json index b2bf34ddb..8385eb362 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-104.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-104.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-109.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-109.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-109.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-109.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-110.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-110.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-110.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-110.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-111.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-111.json index 7017b681a..a2b4b989d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-111.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-111.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-112.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-112.json index 33518455f..651e0ab68 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-112.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-112.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-113.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-113.json index ad362a116..342858b14 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-113.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-113.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-114.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-114.json index 300a483c5..6f0feabd7 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-114.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-114.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-115.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-115.json index 3188a92a1..ccf5ed1bb 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-115.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-115.json @@ -283,4 +283,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-116.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-116.json index e5442e675..cbe0daa94 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-116.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-116.json @@ -283,4 +283,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-117.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-117.json index 39559c139..c80f0470f 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-117.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-117.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-117a.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-117a.json index d8a5b87db..4d9ce8bd4 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-117a.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-117a.json @@ -155,4 +155,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-118.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-118.json index fda350288..bfd71aa5d 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-118.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-118.json @@ -292,4 +292,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-118a.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-118a.json index 3136e55c5..226bea0af 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-118a.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-118a.json @@ -155,4 +155,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-119.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-119.json index b607d18c3..bf0fc6fc5 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-119.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-119.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-120.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-120.json index 300a483c5..6f0feabd7 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-120.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-120.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-121.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-121.json index f01f19b87..e8e0a2eda 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-121.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-121.json @@ -265,4 +265,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-001.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-001.json index adf6efef7..1cca21913 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-001.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-001.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-002.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-002.json index adf6efef7..1cca21913 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-002.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-002.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-003.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-003.json index adf6efef7..1cca21913 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-003.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-003.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-004.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-004.json index ff2559bc8..7d0423de3 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-004.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-004.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-005.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-005.json index f3adf4fa3..cb808b9a3 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-005.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-005.json @@ -235,4 +235,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-006.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-006.json index f3adf4fa3..cb808b9a3 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-006.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-006.json @@ -235,4 +235,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-007.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-007.json index ff2559bc8..7d0423de3 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-007.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-007.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-008.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-008.json index d7e4fa2b0..a467b0931 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-008.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-008.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-009.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-009.json index f822f7a11..17405a00e 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-009.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-009.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-010.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-010.json index c479dd6a1..a25822998 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-010.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-010.json @@ -93,4 +93,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-012.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-012.json index e4a7dab1f..ca7680c0b 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-012.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-012.json @@ -93,4 +93,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-013.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-013.json index ff2559bc8..7d0423de3 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-013.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-013.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-014.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-014.json index ff2559bc8..7d0423de3 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-014.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-014.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-015.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-015.json index 0e3d6ede1..f62b508e4 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-015.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-applies-to-015.json @@ -235,4 +235,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-001.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-001.json index 798cecf35..aa8f27720 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-001.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-001.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-002.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-002.json index 798cecf35..aa8f27720 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-002.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-002.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-003.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-003.json index 7ac31f95c..834022cf3 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-003.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-003.json @@ -203,4 +203,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-004.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-004.json index e2b2511a7..bc1f1cd3c 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-004.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-004.json @@ -249,4 +249,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-004a.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-004a.json index a188ccc5d..bc4175d48 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-004a.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-004a.json @@ -199,4 +199,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-005.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-005.json index 883641256..00ead14c2 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-005.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-005.json @@ -203,4 +203,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-005a.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-005a.json index 44cfc71f2..00a477079 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-005a.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-005a.json @@ -194,4 +194,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-006.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-006.json index b37961ce7..813969941 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-006.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-006.json @@ -196,4 +196,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-006a.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-006a.json index 4709b3838..c560099eb 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-006a.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-006a.json @@ -251,4 +251,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-007.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-007.json index 4d2ecbe26..e367fe8a7 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-007.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-007.json @@ -148,4 +148,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-008.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-008.json index 47a760c9c..b97a57001 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-008.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-008.json @@ -244,4 +244,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-009.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-009.json index 8c4b2e5ac..c818029b8 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-009.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-009.json @@ -196,4 +196,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-010.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-010.json index 03e1d6960..16fd98de4 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-010.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-baseline-010.json @@ -148,4 +148,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-boxes-001.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-boxes-001.json index acea429a1..30d2a3d3b 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-boxes-001.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-boxes-001.json @@ -415,4 +415,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-sub-001.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-sub-001.json index c3c5f6301..6f90c5d68 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-sub-001.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-sub-001.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/ref/vertical-align-super-001.json b/tests/web_platform/CSS2/linebox/ref/vertical-align-super-001.json index c3c5f6301..6f90c5d68 100644 --- a/tests/web_platform/CSS2/linebox/ref/vertical-align-super-001.json +++ b/tests/web_platform/CSS2/linebox/ref/vertical-align-super-001.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/linebox/test_border_padding_bleed.py b/tests/web_platform/CSS2/linebox/test_border_padding_bleed.py index af5ecf008..1d6f99bb4 100644 --- a/tests/web_platform/CSS2/linebox/test_border_padding_bleed.py +++ b/tests/web_platform/CSS2/linebox/test_border_padding_bleed.py @@ -2,4 +2,4 @@ class TestBorderPaddingBleed(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'border-padding-bleed-')) + vars().update(W3CTestCase.find_tests(__file__, "border-padding-bleed-")) diff --git a/tests/web_platform/CSS2/linebox/test_empty_inline.py b/tests/web_platform/CSS2/linebox/test_empty_inline.py index 476365cd8..b3be73fa3 100644 --- a/tests/web_platform/CSS2/linebox/test_empty_inline.py +++ b/tests/web_platform/CSS2/linebox/test_empty_inline.py @@ -2,4 +2,4 @@ class TestEmptyInline(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'empty-inline-')) + vars().update(W3CTestCase.find_tests(__file__, "empty-inline-")) diff --git a/tests/web_platform/CSS2/linebox/test_inline_box.py b/tests/web_platform/CSS2/linebox/test_inline_box.py index 114e295c3..4c3254a6b 100644 --- a/tests/web_platform/CSS2/linebox/test_inline_box.py +++ b/tests/web_platform/CSS2/linebox/test_inline_box.py @@ -2,4 +2,4 @@ class TestInlineBox(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-box-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-box-")) diff --git a/tests/web_platform/CSS2/linebox/test_inline_formatting_context.py b/tests/web_platform/CSS2/linebox/test_inline_formatting_context.py index 920f42baa..f56fac8b0 100644 --- a/tests/web_platform/CSS2/linebox/test_inline_formatting_context.py +++ b/tests/web_platform/CSS2/linebox/test_inline_formatting_context.py @@ -2,4 +2,4 @@ class TestInlineFormattingContext(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-formatting-context-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-formatting-context-")) diff --git a/tests/web_platform/CSS2/linebox/test_leading.py b/tests/web_platform/CSS2/linebox/test_leading.py index 8853fdf43..f9784e507 100644 --- a/tests/web_platform/CSS2/linebox/test_leading.py +++ b/tests/web_platform/CSS2/linebox/test_leading.py @@ -2,4 +2,4 @@ class TestLeading(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'leading-')) + vars().update(W3CTestCase.find_tests(__file__, "leading-")) diff --git a/tests/web_platform/CSS2/linebox/test_line_box_height.py b/tests/web_platform/CSS2/linebox/test_line_box_height.py index 237980157..6b03b24f9 100644 --- a/tests/web_platform/CSS2/linebox/test_line_box_height.py +++ b/tests/web_platform/CSS2/linebox/test_line_box_height.py @@ -2,4 +2,4 @@ class TestLineBoxHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'line-box-height-')) + vars().update(W3CTestCase.find_tests(__file__, "line-box-height-")) diff --git a/tests/web_platform/CSS2/linebox/test_line_height.py b/tests/web_platform/CSS2/linebox/test_line_height.py index 80bb15a55..58e71cb21 100644 --- a/tests/web_platform/CSS2/linebox/test_line_height.py +++ b/tests/web_platform/CSS2/linebox/test_line_height.py @@ -2,4 +2,4 @@ class TestLineHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'line-height-')) + vars().update(W3CTestCase.find_tests(__file__, "line-height-")) diff --git a/tests/web_platform/CSS2/linebox/test_line_height_applies_to.py b/tests/web_platform/CSS2/linebox/test_line_height_applies_to.py index 5b58f8b40..e71f7c281 100644 --- a/tests/web_platform/CSS2/linebox/test_line_height_applies_to.py +++ b/tests/web_platform/CSS2/linebox/test_line_height_applies_to.py @@ -2,4 +2,4 @@ class TestLineHeightAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'line-height-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "line-height-applies-to-")) diff --git a/tests/web_platform/CSS2/linebox/test_line_height_bleed.py b/tests/web_platform/CSS2/linebox/test_line_height_bleed.py index a57891217..78ecff116 100644 --- a/tests/web_platform/CSS2/linebox/test_line_height_bleed.py +++ b/tests/web_platform/CSS2/linebox/test_line_height_bleed.py @@ -2,4 +2,4 @@ class TestLineHeightBleed(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'line-height-bleed-')) + vars().update(W3CTestCase.find_tests(__file__, "line-height-bleed-")) diff --git a/tests/web_platform/CSS2/linebox/test_line_height_largest.py b/tests/web_platform/CSS2/linebox/test_line_height_largest.py index 4bdeba98a..30dc5ea0d 100644 --- a/tests/web_platform/CSS2/linebox/test_line_height_largest.py +++ b/tests/web_platform/CSS2/linebox/test_line_height_largest.py @@ -2,4 +2,4 @@ class TestLineHeightLargest(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'line-height-largest-')) + vars().update(W3CTestCase.find_tests(__file__, "line-height-largest-")) diff --git a/tests/web_platform/CSS2/linebox/test_line_height_normal_recommendation.py b/tests/web_platform/CSS2/linebox/test_line_height_normal_recommendation.py index 78ff62323..3458d322f 100644 --- a/tests/web_platform/CSS2/linebox/test_line_height_normal_recommendation.py +++ b/tests/web_platform/CSS2/linebox/test_line_height_normal_recommendation.py @@ -2,4 +2,6 @@ class TestLineHeightNormalRecommendation(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'line-height-normal-recommendation-')) + vars().update( + W3CTestCase.find_tests(__file__, "line-height-normal-recommendation-") + ) diff --git a/tests/web_platform/CSS2/linebox/test_vertical_align.py b/tests/web_platform/CSS2/linebox/test_vertical_align.py index b715a68b8..90161f059 100644 --- a/tests/web_platform/CSS2/linebox/test_vertical_align.py +++ b/tests/web_platform/CSS2/linebox/test_vertical_align.py @@ -2,4 +2,4 @@ class TestVerticalAlign(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'vertical-align-')) + vars().update(W3CTestCase.find_tests(__file__, "vertical-align-")) diff --git a/tests/web_platform/CSS2/linebox/test_vertical_align_applies_to.py b/tests/web_platform/CSS2/linebox/test_vertical_align_applies_to.py index be7e37ac9..f11f23be7 100644 --- a/tests/web_platform/CSS2/linebox/test_vertical_align_applies_to.py +++ b/tests/web_platform/CSS2/linebox/test_vertical_align_applies_to.py @@ -2,4 +2,4 @@ class TestVerticalAlignAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'vertical-align-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "vertical-align-applies-to-")) diff --git a/tests/web_platform/CSS2/linebox/test_vertical_align_baseline.py b/tests/web_platform/CSS2/linebox/test_vertical_align_baseline.py index 3163e03fa..d38a27311 100644 --- a/tests/web_platform/CSS2/linebox/test_vertical_align_baseline.py +++ b/tests/web_platform/CSS2/linebox/test_vertical_align_baseline.py @@ -2,4 +2,4 @@ class TestVerticalAlignBaseline(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'vertical-align-baseline-')) + vars().update(W3CTestCase.find_tests(__file__, "vertical-align-baseline-")) diff --git a/tests/web_platform/CSS2/linebox/test_vertical_align_boxes.py b/tests/web_platform/CSS2/linebox/test_vertical_align_boxes.py index 4ab9beb10..291a8bf14 100644 --- a/tests/web_platform/CSS2/linebox/test_vertical_align_boxes.py +++ b/tests/web_platform/CSS2/linebox/test_vertical_align_boxes.py @@ -2,4 +2,4 @@ class TestVerticalAlignBoxes(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'vertical-align-boxes-')) + vars().update(W3CTestCase.find_tests(__file__, "vertical-align-boxes-")) diff --git a/tests/web_platform/CSS2/linebox/test_vertical_align_sub.py b/tests/web_platform/CSS2/linebox/test_vertical_align_sub.py index 7e9eecfc3..ccb28e109 100644 --- a/tests/web_platform/CSS2/linebox/test_vertical_align_sub.py +++ b/tests/web_platform/CSS2/linebox/test_vertical_align_sub.py @@ -2,4 +2,4 @@ class TestVerticalAlignSub(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'vertical-align-sub-')) + vars().update(W3CTestCase.find_tests(__file__, "vertical-align-sub-")) diff --git a/tests/web_platform/CSS2/linebox/test_vertical_align_super.py b/tests/web_platform/CSS2/linebox/test_vertical_align_super.py index bcb307fac..0cb6e91d7 100644 --- a/tests/web_platform/CSS2/linebox/test_vertical_align_super.py +++ b/tests/web_platform/CSS2/linebox/test_vertical_align_super.py @@ -2,4 +2,4 @@ class TestVerticalAlignSuper(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'vertical-align-super-')) + vars().update(W3CTestCase.find_tests(__file__, "vertical-align-super-")) diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-context-height-001.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-context-height-001.json index c80b137c0..8669cfd05 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-context-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-context-height-001.json @@ -50,4 +50,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#root-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-context-height-002.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-context-height-002.json index 00c318c49..20a302e74 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-context-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-context-height-002.json @@ -59,4 +59,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#root-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-context-height-003.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-context-height-003.json index becc6ddb2..da1d00552 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-context-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-context-height-003.json @@ -70,4 +70,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#root-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-001.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-001.json index 2181579b8..d0fc73d12 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-001.json @@ -82,4 +82,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-003.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-003.json index 3b90c70b5..f9207371c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-003.json @@ -108,4 +108,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-004.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-004.json index acffc2e1f..c743ceead 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-004.json @@ -72,4 +72,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-005.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-005.json index 7aa36ce91..ddbd92a8e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-005.json @@ -41,4 +41,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-006.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-006.json index 66101b1d0..785b07e6c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-006.json @@ -42,4 +42,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-007.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-007.json index dc41ce826..471cf7544 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-007.json @@ -42,4 +42,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-008.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-008.json index 8c93537b1..a084935f3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-008.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-008.json @@ -65,4 +65,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-009.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-009.json index d5ff23be5..154c406d2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-009.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-009.json @@ -66,4 +66,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-010.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-010.json index 83b758e18..457838cae 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-010.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-010.json @@ -71,4 +71,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-011.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-011.json index 3fb25d4f8..d1b46fbdd 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-011.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-011.json @@ -45,4 +45,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-012.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-012.json index 7f70fa97f..f6c4804aa 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-012.json @@ -63,4 +63,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-013.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-013.json index ab8aec31d..c16798bf6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-013.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-014.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-014.json index 3096b1df9..b6f541bc2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-014.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-015.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-015.json index 73a989c57..f97a4fa9e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-015.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-016.json b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-016.json index c65a4a792..24c050c20 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-formatting-contexts-016.json @@ -69,4 +69,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#block-formatting" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-001.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-001.json index 8c5f12f99..92f5d8b80 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-001.json @@ -53,4 +53,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-002-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-002-nosplit-ref.json index d415c6156..1c05420e0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-002-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-002-nosplit-ref.json @@ -234,4 +234,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-002-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-002-ref.json index c3b4bbc83..57671b845 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-002-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-002-ref.json @@ -95,4 +95,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-002.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-002.json index 18731f142..660f36b31 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-append-002.json @@ -97,4 +97,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-001.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-001.json index 488b4ea71..19cc047c0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-001.json @@ -55,4 +55,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-002.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-002.json index f310e29a8..18218f2a7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-002.json @@ -55,4 +55,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-003.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-003.json index 673cf8d37..5af89a556 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-003.json @@ -55,4 +55,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-004.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-004.json index df902808c..b1507d5b7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-empty-004.json @@ -55,4 +55,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-float-between-001.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-float-between-001.json index ac9672db8..0da93d09e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-float-between-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-float-between-001.json @@ -62,4 +62,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001-nosplit-ref.json index 8d939a0bc..fbdaa899d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001-nosplit-ref.json @@ -253,4 +253,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001-ref.json index 384853912..e937a52e6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001-ref.json @@ -161,4 +161,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001a.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001a.json index 13a761f1a..a88bd7ddf 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001a.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001a.json @@ -163,4 +163,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001b.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001b.json index 755956ed4..091f7d432 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001b.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001b.json @@ -163,4 +163,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001c.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001c.json index 755956ed4..091f7d432 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001c.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001c.json @@ -163,4 +163,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001d.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001d.json index 755956ed4..091f7d432 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001d.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001d.json @@ -163,4 +163,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001e.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001e.json index 755956ed4..091f7d432 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001e.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001e.json @@ -163,4 +163,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001f.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001f.json index 755956ed4..091f7d432 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001f.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001f.json @@ -163,4 +163,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001g.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001g.json index 755956ed4..091f7d432 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001g.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001g.json @@ -163,4 +163,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001h.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001h.json index 755956ed4..091f7d432 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001h.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001h.json @@ -163,4 +163,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001i.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001i.json index 755956ed4..091f7d432 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001i.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001i.json @@ -163,4 +163,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001j.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001j.json index 755956ed4..091f7d432 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001j.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001j.json @@ -163,4 +163,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001k.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001k.json index 755956ed4..091f7d432 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001k.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001k.json @@ -163,4 +163,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001l.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001l.json index 755956ed4..091f7d432 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001l.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-001l.json @@ -163,4 +163,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002-nosplit-ref.json index b6115c60d..b458bd509 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002-nosplit-ref.json @@ -221,4 +221,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002-ref.json index 88c72ebf7..25c576e6d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002-ref.json @@ -131,4 +131,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002a.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002a.json index 8464eb847..06394ba4b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002a.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002a.json @@ -133,4 +133,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002b.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002b.json index 6a9b48ca3..187489aee 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002b.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002b.json @@ -133,4 +133,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002c.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002c.json index 6a9b48ca3..187489aee 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002c.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002c.json @@ -133,4 +133,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002d.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002d.json index 6a9b48ca3..187489aee 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002d.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002d.json @@ -133,4 +133,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002e.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002e.json index 6a9b48ca3..187489aee 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002e.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002e.json @@ -133,4 +133,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002f.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002f.json index 6a9b48ca3..187489aee 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002f.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002f.json @@ -133,4 +133,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002g.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002g.json index 6a9b48ca3..187489aee 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002g.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002g.json @@ -133,4 +133,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002h.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002h.json index 6a9b48ca3..187489aee 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002h.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002h.json @@ -133,4 +133,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002i.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002i.json index 6a9b48ca3..187489aee 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002i.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-002i.json @@ -133,4 +133,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-003-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-003-nosplit-ref.json index a44fa624f..d25a7fc12 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-003-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-003-nosplit-ref.json @@ -233,4 +233,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-003-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-003-ref.json index 4800faf93..0e24cef12 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-003-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-003-ref.json @@ -141,4 +141,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-003.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-003.json index 37071f140..7c92ff3a6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-003.json @@ -143,4 +143,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-004-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-004-nosplit-ref.json index d03beba9e..3b06d7323 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-004-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-004-nosplit-ref.json @@ -243,4 +243,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-004-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-004-ref.json index cea9237cf..faef7ddf6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-004-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-004-ref.json @@ -151,4 +151,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-004.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-004.json index 275a7358b..0a4041713 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-004.json @@ -153,4 +153,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-006-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-006-nosplit-ref.json index 2f8082404..487756940 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-006-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-006-nosplit-ref.json @@ -107,4 +107,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-006-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-006-ref.json index e98d7bdb4..f8cd6a048 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-006-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-006-ref.json @@ -65,4 +65,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-006.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-006.json index 2e2a24129..4de848d1b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-006.json @@ -67,4 +67,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-007-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-007-nosplit-ref.json index 395723057..bf59d2372 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-007-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-007-nosplit-ref.json @@ -84,4 +84,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-007-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-007-ref.json index 791902de6..7ca97ef6c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-007-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-007-ref.json @@ -62,4 +62,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-007.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-007.json index a12801764..a73241a3a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-007.json @@ -64,4 +64,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008-nosplit-ref.json index 0467829d6..6a0208490 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008-nosplit-ref.json @@ -143,4 +143,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008-ref.json index 2b0c0e84e..bd09c2a7f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008-ref.json @@ -95,4 +95,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008a.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008a.json index 401150796..c7a4fa0c7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008a.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008a.json @@ -97,4 +97,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008b.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008b.json index 35323f3e9..c1e276c27 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008b.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008b.json @@ -97,4 +97,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008c.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008c.json index 35323f3e9..c1e276c27 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008c.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-008c.json @@ -97,4 +97,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-009-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-009-nosplit-ref.json index c0dad85ee..eed32ca38 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-009-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-009-nosplit-ref.json @@ -353,4 +353,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-009-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-009-ref.json index 086f4a95e..9e703f9e8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-009-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-009-ref.json @@ -165,4 +165,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-009.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-009.json index 7d36744ae..b9abd09a8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-009.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-009.json @@ -167,4 +167,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-010-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-010-nosplit-ref.json index 839cddaea..99af1de1a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-010-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-010-nosplit-ref.json @@ -363,4 +363,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-010-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-010-ref.json index 43cca0832..ecef61154 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-010-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-010-ref.json @@ -175,4 +175,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-010.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-010.json index 55ec71bc1..93614a72b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-010.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-010.json @@ -167,4 +167,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-011-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-011-nosplit-ref.json index 96d304e09..609cb0873 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-011-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-011-nosplit-ref.json @@ -388,4 +388,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-011-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-011-ref.json index 206c812d8..646d7489d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-011-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-011-ref.json @@ -178,4 +178,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-011.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-011.json index c4551500d..bec75fbbb 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-011.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-011.json @@ -180,4 +180,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-012-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-012-nosplit-ref.json index 41c5ea7d7..ddeabf3d4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-012-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-012-nosplit-ref.json @@ -122,4 +122,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-012-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-012-ref.json index 8dc6eff4e..7aff2f682 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-012-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-012-ref.json @@ -72,4 +72,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-012.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-012.json index 26ca01a58..8d72e9291 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-012.json @@ -70,4 +70,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-013-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-013-nosplit-ref.json index b2588953f..2b98259de 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-013-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-013-nosplit-ref.json @@ -84,4 +84,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-013-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-013-ref.json index f184965e1..e4cbfe089 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-013-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-013-ref.json @@ -59,4 +59,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-013.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-013.json index da33cfb8a..e1261090f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-013.json @@ -51,4 +51,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-014-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-014-nosplit-ref.json index ab8d2f74e..9bec4f1cf 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-014-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-014-nosplit-ref.json @@ -84,4 +84,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-014-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-014-ref.json index 096a98e51..41e02d56d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-014-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-014-ref.json @@ -59,4 +59,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-014.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-014.json index 190fe7ac6..a82e4ea02 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-014.json @@ -51,4 +51,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-015-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-015-nosplit-ref.json index 751ff51b0..ce33441eb 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-015-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-015-nosplit-ref.json @@ -122,4 +122,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-015-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-015-ref.json index 384602178..85c42ab6c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-015-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-015-ref.json @@ -72,4 +72,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-015.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-015.json index c900dd2f3..7ecbaef91 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-015.json @@ -70,4 +70,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016-nosplit-ref.json index 40a3c3b1e..8274fc815 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016-nosplit-ref.json @@ -84,4 +84,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016-ref.json index 0e9265f86..76c3d67e4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016-ref.json @@ -59,4 +59,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016a.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016a.json index d7fdb3033..bd2ed6119 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016a.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016a.json @@ -51,4 +51,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016b.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016b.json index 34d514b33..b124776aa 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016b.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-016b.json @@ -45,4 +45,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-017.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-017.json index d75c914a0..5247a2592 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-017.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-insert-017.json @@ -72,4 +72,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-001a.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-001a.json index 07b735f8b..896d2dd45 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-001a.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-001a.json @@ -81,4 +81,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-001b.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-001b.json index e7ff326a2..b601acff9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-001b.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-001b.json @@ -83,4 +83,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-002a.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-002a.json index 2d2092006..5686e4c5d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-002a.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-002a.json @@ -81,4 +81,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-002b.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-002b.json index 621702110..b6c70d906 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-002b.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-margins-002b.json @@ -83,4 +83,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-nested-001.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-nested-001.json index 6c430f7ec..0e2daf78c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-nested-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-nested-001.json @@ -57,4 +57,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-nested-002.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-nested-002.json index d6ecd6e2c..651e002dc 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-nested-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-nested-002.json @@ -67,4 +67,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-percents-001.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-percents-001.json index b95e21bf8..5010bbe58 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-percents-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-percents-001.json @@ -49,4 +49,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-000.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-000.json index 35bb1a20e..5fe520624 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-000.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-000.json @@ -25,4 +25,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-001-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-001-nosplit-ref.json index 9377b8bc3..1f00d41d3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-001-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-001-nosplit-ref.json @@ -78,4 +78,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-001-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-001-ref.json index f3b6c4b29..c8eeda9f0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-001-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-001-ref.json @@ -56,4 +56,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-001.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-001.json index 6671bcdc1..7f226b8c6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-001.json @@ -58,4 +58,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-002.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-002.json index 8ed0676eb..dacc6a983 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-002.json @@ -49,4 +49,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-003-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-003-nosplit-ref.json index c843cf5f8..ba44c1613 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-003-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-003-nosplit-ref.json @@ -78,4 +78,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-003-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-003-ref.json index 41cb88550..f9e788518 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-003-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-003-ref.json @@ -56,4 +56,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-003.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-003.json index 95712686a..e33d7729c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-003.json @@ -58,4 +58,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-004-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-004-nosplit-ref.json index df88f9ec0..2a2304d48 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-004-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-004-nosplit-ref.json @@ -84,4 +84,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-004-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-004-ref.json index b38b9854d..941002d42 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-004-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-004-ref.json @@ -60,4 +60,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-004.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-004.json index c4b4049a9..69de3ed75 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-004.json @@ -66,4 +66,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-005-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-005-nosplit-ref.json index 36786d60b..75dc06339 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-005-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-005-nosplit-ref.json @@ -84,4 +84,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-005-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-005-ref.json index 8e3c6f73a..a0cd86e9e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-005-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-005-ref.json @@ -60,4 +60,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-005.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-005.json index 00533ebc6..3f6e34262 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-005.json @@ -66,4 +66,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-006-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-006-nosplit-ref.json index 4b72839f5..18ce9001e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-006-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-006-nosplit-ref.json @@ -97,4 +97,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-006-ref.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-006-ref.json index 243633012..f9bcb07eb 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-006-ref.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-006-ref.json @@ -73,4 +73,4 @@ } }, "help": [] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-006.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-006.json index ea9f9391d..cf3eab09a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-remove-006.json @@ -75,4 +75,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-whitespace-001a.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-whitespace-001a.json index 7c3a342e6..577bd0e42 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-whitespace-001a.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-whitespace-001a.json @@ -67,4 +67,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-whitespace-001b.json b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-whitespace-001b.json index 7c3a342e6..577bd0e42 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-in-inline-whitespace-001b.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-in-inline-whitespace-001b.json @@ -67,4 +67,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-001.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-001.json index 35de66b52..51f376ea0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-001.json @@ -58,4 +58,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-002.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-002.json index 51e3276cb..541846455 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-002.json @@ -60,4 +60,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-003.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-003.json index 49d688814..49145dace 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-003.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-004.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-004.json index 4cad60975..dbd9a51c4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-004.json @@ -82,4 +82,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-005.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-005.json index 83b31316f..b2b684cda 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-005.json @@ -89,4 +89,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-006.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-006.json index f96f8be80..64fc57a27 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-006.json @@ -91,4 +91,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-007.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-007.json index 8ebe69b68..a5ce0d378 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-007.json @@ -95,4 +95,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-008.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-008.json index 86ae0442c..e959635e9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-008.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-008.json @@ -97,4 +97,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-009.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-009.json index f5042c1c2..7b1d76e55 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-009.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-009.json @@ -121,4 +121,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-010.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-010.json index 2d348d6ef..c3acd33c6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-010.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-010.json @@ -123,4 +123,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-011.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-011.json index b2a2a3b99..2532e7d12 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-011.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-011.json @@ -49,4 +49,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-012.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-012.json index 87cd87718..fdf49c162 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-012.json @@ -48,4 +48,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-013.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-013.json index bf6a8e86f..8ce7bc589 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-013.json @@ -49,4 +49,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-014.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-014.json index 2cb61d859..7c200ced2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-014.json @@ -49,4 +49,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-015.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-015.json index d32a7bae6..c58e37ab5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-015.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-016.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-016.json index e6a6a8cd1..357579271 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-height-016.json @@ -82,4 +82,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#normal-block" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-001.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-001.json index 5affc7af8..292b5ef1b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-001.json @@ -76,4 +76,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#blockwidth" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-002.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-002.json index 0146da107..d0d17dffe 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-002.json @@ -59,4 +59,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#blockwidth" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-003.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-003.json index b0a33b849..81600dc7e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-003.json @@ -72,4 +72,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#blockwidth" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-004.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-004.json index f8670d9bc..b87caad24 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-004.json @@ -84,4 +84,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#blockwidth" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-005.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-005.json index 31e091a82..42c15ec5b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-005.json @@ -72,4 +72,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#blockwidth" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-006.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-006.json index dce730839..31df7c53c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-006.json @@ -72,4 +72,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#blockwidth" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-007.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-007.json index 8e8b2edbc..2a52bf956 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-007.json @@ -96,4 +96,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#blockwidth" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-008.json b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-008.json index 611e97c84..9699c59ee 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-008.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-non-replaced-width-008.json @@ -44,4 +44,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#blockwidth" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-001.json b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-001.json index 1f2709c5e..2e30edcf7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-001.json @@ -41,4 +41,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-002.json b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-002.json index 9d23bc8ee..17d44022c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-002.json @@ -57,4 +57,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-003.json b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-003.json index 546cd2961..533210283 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-003.json @@ -59,4 +59,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-004.json b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-004.json index 0db88e07e..9c9c7c4aa 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-004.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-005.json b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-005.json index 5b8074d5a..e0d38f8c7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-005.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-006.json b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-006.json index f8b009b19..0127ff1ac 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-006.json @@ -64,4 +64,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-007.json b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-007.json index 44fa3ef90..d56edb87e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-replaced-height-007.json @@ -79,4 +79,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-001.json b/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-001.json index 913afddb7..17e3363ed 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-001.json @@ -74,4 +74,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#block-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-002.json b/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-002.json index 29db94941..ec62415f9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-002.json @@ -78,4 +78,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#block-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-003.json b/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-003.json index bb9b4da63..6c5ebafb0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-003.json @@ -79,4 +79,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#block-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-004.json b/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-004.json index 059695323..9af1eca85 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-004.json @@ -87,4 +87,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#block-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-006.json b/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-006.json index b3f8e1a10..e1735ac19 100644 --- a/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/block-replaced-width-006.json @@ -74,4 +74,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#block-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-011.json b/tests/web_platform/CSS2/normal_flow/data/blocks-011.json index 81e82b307..8eeb92184 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-011.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-011.json @@ -104,4 +104,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-012.json b/tests/web_platform/CSS2/normal_flow/data/blocks-012.json index f9a1c80e7..66ff1416e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-012.json @@ -96,4 +96,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-013.json b/tests/web_platform/CSS2/normal_flow/data/blocks-013.json index 178d30d7a..f0bae8be9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-013.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-014.json b/tests/web_platform/CSS2/normal_flow/data/blocks-014.json index c8b93725c..4d1101a68 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-014.json @@ -104,4 +104,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-015.json b/tests/web_platform/CSS2/normal_flow/data/blocks-015.json index 25945ae09..a032b0d58 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-015.json @@ -96,4 +96,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-016.json b/tests/web_platform/CSS2/normal_flow/data/blocks-016.json index ab76889a0..717710d10 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-016.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-017.json b/tests/web_platform/CSS2/normal_flow/data/blocks-017.json index 744de82f1..4527ac672 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-017.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-017.json @@ -188,4 +188,4 @@ "help": [ "http://www.w3.org/TR/CSS21/box.html#collapsing-margins" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-018.json b/tests/web_platform/CSS2/normal_flow/data/blocks-018.json index be61b3bfc..a580c2d74 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-018.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-018.json @@ -148,4 +148,4 @@ "help": [ "http://www.w3.org/TR/CSS21/box.html#padding-properties" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-019.json b/tests/web_platform/CSS2/normal_flow/data/blocks-019.json index da83cedd5..49aa659b7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-019.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-019.json @@ -148,4 +148,4 @@ "help": [ "http://www.w3.org/TR/CSS21/box.html#padding-properties" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-020.json b/tests/web_platform/CSS2/normal_flow/data/blocks-020.json index a78b36482..415de9f4f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-020.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-020.json @@ -61,4 +61,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-021.json b/tests/web_platform/CSS2/normal_flow/data/blocks-021.json index 1ba40dfc0..107c54472 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-021.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-021.json @@ -61,4 +61,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-022.json b/tests/web_platform/CSS2/normal_flow/data/blocks-022.json index cbbdaa332..8f20e4add 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-022.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-022.json @@ -61,4 +61,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-025.json b/tests/web_platform/CSS2/normal_flow/data/blocks-025.json index e363ef7ab..715bd96ca 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-025.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-025.json @@ -362,4 +362,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/blocks-026.json b/tests/web_platform/CSS2/normal_flow/data/blocks-026.json index 914f0ed15..cfdb5a109 100644 --- a/tests/web_platform/CSS2/normal_flow/data/blocks-026.json +++ b/tests/web_platform/CSS2/normal_flow/data/blocks-026.json @@ -174,4 +174,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-001.json b/tests/web_platform/CSS2/normal_flow/data/height-001.json index a3bce3cc8..ffc37138f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-001.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-002.json b/tests/web_platform/CSS2/normal_flow/data/height-002.json index 6e745900b..1fe02137d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-002.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-003.json b/tests/web_platform/CSS2/normal_flow/data/height-003.json index cbcef677f..a98f75293 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-003.json @@ -36,4 +36,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-004.json b/tests/web_platform/CSS2/normal_flow/data/height-004.json index 7786a8776..b20d9c0d5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-004.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-005.json b/tests/web_platform/CSS2/normal_flow/data/height-005.json index 8dc5f0295..5236a0c36 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-005.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-006.json b/tests/web_platform/CSS2/normal_flow/data/height-006.json index cb44dd32d..0f7563256 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-006.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-007.json b/tests/web_platform/CSS2/normal_flow/data/height-007.json index 172e2f4bf..4b039da55 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-007.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-012.json b/tests/web_platform/CSS2/normal_flow/data/height-012.json index 4a587885f..cbd41745c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-012.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-013.json b/tests/web_platform/CSS2/normal_flow/data/height-013.json index 7c472b278..0b838ea56 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-013.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-014.json b/tests/web_platform/CSS2/normal_flow/data/height-014.json index 0960e94ef..cabbd392e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-014.json @@ -36,4 +36,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-015.json b/tests/web_platform/CSS2/normal_flow/data/height-015.json index e79d6ecc0..a786de922 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-015.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-016.json b/tests/web_platform/CSS2/normal_flow/data/height-016.json index d3ebc380b..63cfb651f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-016.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-017.json b/tests/web_platform/CSS2/normal_flow/data/height-017.json index e38e2c1f3..aa912cd91 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-017.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-017.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-018.json b/tests/web_platform/CSS2/normal_flow/data/height-018.json index 23a4c2791..f5ef50fe9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-018.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-018.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-023.json b/tests/web_platform/CSS2/normal_flow/data/height-023.json index 3f7c14fc7..0672d4d47 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-023.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-023.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-024.json b/tests/web_platform/CSS2/normal_flow/data/height-024.json index 6b006b696..40e9b8881 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-024.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-024.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-025.json b/tests/web_platform/CSS2/normal_flow/data/height-025.json index 413b73c2c..a7be7d9c5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-025.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-025.json @@ -36,4 +36,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-026.json b/tests/web_platform/CSS2/normal_flow/data/height-026.json index b833247fc..d79d65311 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-026.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-026.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-027.json b/tests/web_platform/CSS2/normal_flow/data/height-027.json index dc04c7719..141516ce4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-027.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-027.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-028.json b/tests/web_platform/CSS2/normal_flow/data/height-028.json index fe86ed641..3ea56cf2c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-028.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-028.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-029.json b/tests/web_platform/CSS2/normal_flow/data/height-029.json index 55c6ed804..db9a76470 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-029.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-029.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-034.json b/tests/web_platform/CSS2/normal_flow/data/height-034.json index e4d553189..f03faa512 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-034.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-034.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-035.json b/tests/web_platform/CSS2/normal_flow/data/height-035.json index 993337e27..c63db5d2c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-035.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-035.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-036.json b/tests/web_platform/CSS2/normal_flow/data/height-036.json index 562e878cc..cf455bd47 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-036.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-036.json @@ -36,4 +36,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-037.json b/tests/web_platform/CSS2/normal_flow/data/height-037.json index cf7349c6d..a44080afd 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-037.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-037.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-038.json b/tests/web_platform/CSS2/normal_flow/data/height-038.json index 8041abec7..adebfad33 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-038.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-038.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-039.json b/tests/web_platform/CSS2/normal_flow/data/height-039.json index 76711ebf7..72463dc7a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-039.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-039.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-040.json b/tests/web_platform/CSS2/normal_flow/data/height-040.json index 252e8dc15..922f7866d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-040.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-040.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-045.json b/tests/web_platform/CSS2/normal_flow/data/height-045.json index fd800c6de..3278fed8b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-045.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-045.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-046.json b/tests/web_platform/CSS2/normal_flow/data/height-046.json index f2185b9a8..5bdff4a8d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-046.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-046.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-047.json b/tests/web_platform/CSS2/normal_flow/data/height-047.json index 7b69e2b3f..f6d6395e8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-047.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-047.json @@ -36,4 +36,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-048.json b/tests/web_platform/CSS2/normal_flow/data/height-048.json index 5b74b6bca..6f8ddf560 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-048.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-048.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-049.json b/tests/web_platform/CSS2/normal_flow/data/height-049.json index de36dbde8..eff93579f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-049.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-049.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-050.json b/tests/web_platform/CSS2/normal_flow/data/height-050.json index da83f76fa..046ab969d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-050.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-050.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-051.json b/tests/web_platform/CSS2/normal_flow/data/height-051.json index 5a5b2b727..6d19b3a70 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-051.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-051.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-056.json b/tests/web_platform/CSS2/normal_flow/data/height-056.json index 9e1e4df89..85c5e8b5d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-056.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-056.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-057.json b/tests/web_platform/CSS2/normal_flow/data/height-057.json index 45c96257e..4cd8fb447 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-057.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-057.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-058.json b/tests/web_platform/CSS2/normal_flow/data/height-058.json index d250118f8..51d1aaa69 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-058.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-058.json @@ -36,4 +36,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-059.json b/tests/web_platform/CSS2/normal_flow/data/height-059.json index 598ae66c9..5480d68a4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-059.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-059.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-060.json b/tests/web_platform/CSS2/normal_flow/data/height-060.json index 8fa9774ce..709bf861c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-060.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-060.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-061.json b/tests/web_platform/CSS2/normal_flow/data/height-061.json index 920742f5d..61076cd34 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-061.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-061.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-062.json b/tests/web_platform/CSS2/normal_flow/data/height-062.json index 6bcb687e8..f8ab47d07 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-062.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-062.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-067.json b/tests/web_platform/CSS2/normal_flow/data/height-067.json index a70884d43..243ce05b2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-067.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-067.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-068.json b/tests/web_platform/CSS2/normal_flow/data/height-068.json index 735a8a0fa..6f09af248 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-068.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-068.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-069.json b/tests/web_platform/CSS2/normal_flow/data/height-069.json index 5091de32e..8ed8d775b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-069.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-069.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-070.json b/tests/web_platform/CSS2/normal_flow/data/height-070.json index 1e2196a22..009f078bf 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-070.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-070.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-071.json b/tests/web_platform/CSS2/normal_flow/data/height-071.json index 8ebe1f310..da567eb58 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-071.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-071.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-072.json b/tests/web_platform/CSS2/normal_flow/data/height-072.json index 3a2d2cc4e..e19ea2ebc 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-072.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-072.json @@ -80,4 +80,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-073.json b/tests/web_platform/CSS2/normal_flow/data/height-073.json index b8ae19a50..0b133a729 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-073.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-073.json @@ -80,4 +80,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-078.json b/tests/web_platform/CSS2/normal_flow/data/height-078.json index e313700e8..958ff238c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-078.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-078.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-079.json b/tests/web_platform/CSS2/normal_flow/data/height-079.json index 32b9dafce..eef6b45df 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-079.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-079.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-080.json b/tests/web_platform/CSS2/normal_flow/data/height-080.json index f79be1394..5329b21f4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-080.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-080.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-081.json b/tests/web_platform/CSS2/normal_flow/data/height-081.json index 0810fecd4..b0e47d4df 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-081.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-081.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-082.json b/tests/web_platform/CSS2/normal_flow/data/height-082.json index 323458a52..bf92f7142 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-082.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-082.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-083.json b/tests/web_platform/CSS2/normal_flow/data/height-083.json index 4d1c8dd57..374481d7d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-083.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-083.json @@ -80,4 +80,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-084.json b/tests/web_platform/CSS2/normal_flow/data/height-084.json index 8fa052204..9b7ab4179 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-084.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-084.json @@ -80,4 +80,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-089.json b/tests/web_platform/CSS2/normal_flow/data/height-089.json index 6cbde4d93..5c971f9d5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-089.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-089.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-090.json b/tests/web_platform/CSS2/normal_flow/data/height-090.json index 3865ed5e1..0e33d2529 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-090.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-090.json @@ -52,4 +52,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-091.json b/tests/web_platform/CSS2/normal_flow/data/height-091.json index fd85d1f01..fe3c2a20a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-091.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-091.json @@ -46,4 +46,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-092.json b/tests/web_platform/CSS2/normal_flow/data/height-092.json index 286ea12a0..902223a1f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-092.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-092.json @@ -52,4 +52,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-093.json b/tests/web_platform/CSS2/normal_flow/data/height-093.json index 897e4dab4..f79c4a40e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-093.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-093.json @@ -52,4 +52,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-094.json b/tests/web_platform/CSS2/normal_flow/data/height-094.json index b576d056b..d5751241d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-094.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-094.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-095.json b/tests/web_platform/CSS2/normal_flow/data/height-095.json index 810094d48..11ce89694 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-095.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-095.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-100.json b/tests/web_platform/CSS2/normal_flow/data/height-100.json index 454c17169..6091eb4d2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-100.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-100.json @@ -36,4 +36,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-101.json b/tests/web_platform/CSS2/normal_flow/data/height-101.json index 0c98ab433..65e33da56 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-101.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-101.json @@ -36,4 +36,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-102.json b/tests/web_platform/CSS2/normal_flow/data/height-102.json index c520d6668..efdfd3ae9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-102.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-102.json @@ -36,4 +36,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-103.json b/tests/web_platform/CSS2/normal_flow/data/height-103.json index d9f8a1b94..052204e39 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-103.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-103.json @@ -36,4 +36,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-104.json b/tests/web_platform/CSS2/normal_flow/data/height-104.json index ae81eefb9..dfc4f53c1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-104.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-104.json @@ -46,4 +46,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-111.json b/tests/web_platform/CSS2/normal_flow/data/height-111.json index 13a41cf61..8438b49bf 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-111.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-111.json @@ -61,4 +61,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-112.json b/tests/web_platform/CSS2/normal_flow/data/height-112.json index cf937988d..1e9faa89d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-112.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-112.json @@ -78,4 +78,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-113.json b/tests/web_platform/CSS2/normal_flow/data/height-113.json index 0e7ec28d8..ccbadd6e7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-113.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-113.json @@ -74,4 +74,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-114.json b/tests/web_platform/CSS2/normal_flow/data/height-114.json index 9373b0248..cb379993a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-114.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-114.json @@ -70,4 +70,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-001.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-001.json index e1826230d..42f1956b8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-001.json @@ -70,4 +70,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-002.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-002.json index 34b49c2fa..255d4e8c8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-002.json @@ -70,4 +70,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-003.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-003.json index 1dd915255..11d7635ba 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-003.json @@ -70,4 +70,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-004.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-004.json index 09fa52411..9c22584dc 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-004.json @@ -56,4 +56,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-005.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-005.json index c738dfc9e..039527950 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-005.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-006.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-006.json index 4b1074191..21ffe62e1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-006.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-007.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-007.json index cf35959af..229371720 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-007.json @@ -56,4 +56,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-008.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-008.json index aa31f3c0d..5efd7d813 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-008.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-008.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-009.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-009.json index ff70a7d60..2b3f399a1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-009.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-009.json @@ -45,4 +45,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-010.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-010.json index e6cdcd9cf..5e50f10ca 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-010.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-010.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-012.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-012.json index d51df3668..68b214455 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-012.json @@ -60,4 +60,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-013.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-013.json index 795f68dc7..4a4af256c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-013.json @@ -56,4 +56,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-014.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-014.json index d6f75fe0a..18e905e71 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-014.json @@ -57,4 +57,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-015.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-015.json index 2c09e86db..b4bd78c8f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-015.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-016.json b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-016.json index 788b2d470..dc10a3554 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-applies-to-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-applies-to-016.json @@ -57,4 +57,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-inherit-001.json b/tests/web_platform/CSS2/normal_flow/data/height-inherit-001.json index 6293b99d5..97d68aaf9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-inherit-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-inherit-001.json @@ -74,4 +74,4 @@ "http://www.w3.org/TR/css-cascade-3/#inherit", "http://www.w3.org/TR/css-cascade-4/#inherit" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-percentage-001.json b/tests/web_platform/CSS2/normal_flow/data/height-percentage-001.json index a8f82145d..3c8b126e0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-percentage-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-percentage-001.json @@ -69,4 +69,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-percentage-002.json b/tests/web_platform/CSS2/normal_flow/data/height-percentage-002.json index 014e7f656..aeecd538d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-percentage-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-percentage-002.json @@ -52,4 +52,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-percentage-003.json b/tests/web_platform/CSS2/normal_flow/data/height-percentage-003.json index 5ccba9960..7d7505ba6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-percentage-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-percentage-003.json @@ -35,4 +35,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-height", "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-percentage-004.json b/tests/web_platform/CSS2/normal_flow/data/height-percentage-004.json index d847360db..0a9917a27 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-percentage-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-percentage-004.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/height-percentage-005.json b/tests/web_platform/CSS2/normal_flow/data/height-percentage-005.json index 0851eb945..6abead90c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/height-percentage-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/height-percentage-005.json @@ -52,4 +52,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-height-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-000.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-000.json index ee54f1da8..7a410adcb 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-000.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-000.json @@ -51,4 +51,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop", "http://www.w3.org/TR/CSS21/visudet.html#leading" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-height-001.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-height-001.json index d8ecf00e5..79ff75fc5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-height-001.json @@ -50,4 +50,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-height-002.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-height-002.json index 480771006..f20f56936 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-height-002.json @@ -44,4 +44,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-height-001.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-height-001.json index 0d3535436..77c30fea6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-height-001.json @@ -77,4 +77,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#block-root-margin" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-height-002.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-height-002.json index f9af46f36..d421cd5f2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-height-002.json @@ -83,4 +83,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#block-root-margin" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-001.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-001.json index fc7f1ea7a..223a0e2f9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-001.json @@ -39,4 +39,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-002.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-002.json index 6b587bff9..08e69f3ba 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-002.json @@ -68,4 +68,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-003.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-003.json index 3519f100c..df6f4ca2c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-003.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-004.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-004.json index 22a0aa4e5..18125c9b0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-004.json @@ -57,4 +57,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-005.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-005.json index fa1a792ca..32a6b9739 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-non-replaced-width-005.json @@ -89,4 +89,4 @@ "https://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width", "https://www.w3.org/TR/CSS21/visudet.html#float-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-001.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-001.json index a8043e87c..e27c3d391 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-001.json @@ -42,4 +42,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-002.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-002.json index c49687efe..62c60ca6f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-002.json @@ -59,4 +59,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-003.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-003.json index 50620ac80..fed9f2654 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-003.json @@ -59,4 +59,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-004.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-004.json index 12a7c7260..03815161f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-004.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-005.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-005.json index 6f2c187dd..5fb855021 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-005.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-006.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-006.json index 191a90cdb..08c2eb0f1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-006.json @@ -64,4 +64,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-007.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-007.json index b62c7f78d..57b573e53 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-007.json @@ -79,4 +79,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-008.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-008.json index ded02ed7d..e4e99c5e9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-008.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-008.json @@ -84,4 +84,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-009.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-009.json index 2bf1f93f3..195d06187 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-009.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-height-009.json @@ -53,4 +53,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-001.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-001.json index 57ca00258..e48f77d08 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-001.json @@ -75,4 +75,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-002.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-002.json index 51f75391d..a56bcea73 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-002.json @@ -78,4 +78,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-003.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-003.json index 04201fd6e..3f72d2126 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-003.json @@ -79,4 +79,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-004.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-004.json index ae3e1eee4..6723ad3ac 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-004.json @@ -87,4 +87,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-006.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-006.json index b9b87ae35..ad8e521a5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-006.json @@ -74,4 +74,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-007.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-007.json index bc575a654..8e0a67a8b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-007.json @@ -53,4 +53,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-008.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-008.json index ec32e3153..8a097929e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-008.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-replaced-width-008.json @@ -53,4 +53,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-valign-001.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-valign-001.json index 2c75213ad..bb56a9ff2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-valign-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-valign-001.json @@ -99,4 +99,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop", "http://www.w3.org/TR/CSS21/visudet.html#leading" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-valign-002.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-valign-002.json index 3af75bd9f..6c2de70a7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-valign-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-valign-002.json @@ -160,4 +160,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#display-prop", "http://www.w3.org/TR/CSS21/visudet.html#leading" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-width-001a.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-width-001a.json index 5e6db3181..34664b809 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-width-001a.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-width-001a.json @@ -59,4 +59,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-width-001b.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-width-001b.json index 4aed97624..302b16419 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-width-001b.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-width-001b.json @@ -60,4 +60,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-width-002a.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-width-002a.json index 32b6c4c16..95645bb19 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-width-002a.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-width-002a.json @@ -69,4 +69,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-width-002b.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-width-002b.json index a1c9dcb1a..4b9e082eb 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-width-002b.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-width-002b.json @@ -70,4 +70,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inlineblock-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-001.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-001.json index c11b93c54..df2a098fe 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-001.json @@ -69,4 +69,4 @@ "help": [ "http://www.w3.org/TR/CSS21/zindex.html#painting-order" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-002.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-002.json index e019f9392..1c915dc41 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-002.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/zindex.html#painting-order" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-003.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-003.json index f63de99ec..9460710a1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-003.json @@ -93,4 +93,4 @@ "help": [ "http://www.w3.org/TR/CSS21/zindex.html#painting-order" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-004.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-004.json index 4e5b4aa9d..be35959e6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-004.json @@ -91,4 +91,4 @@ "help": [ "http://www.w3.org/TR/CSS21/zindex.html#painting-order" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-005.json b/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-005.json index 4b980c0c0..7966dc266 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-block-zorder-005.json @@ -99,4 +99,4 @@ "help": [ "http://www.w3.org/TR/CSS21/zindex.html#painting-order" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-height-002.json b/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-height-002.json index 2f39166f3..640131bf5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-height-002.json @@ -82,4 +82,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-non-replaced" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-height-003.json b/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-height-003.json index 3f69362a5..1fd362ccf 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-height-003.json @@ -84,4 +84,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-non-replaced" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-width-001.json b/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-width-001.json index 44e4901d1..f8ae900bc 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-width-001.json @@ -67,4 +67,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-width-002.json b/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-width-002.json index 8601dca4c..7c42673d4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-non-replaced-width-002.json @@ -67,4 +67,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-001.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-001.json index ad9bd9e2f..f22b8fa03 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-001.json @@ -42,4 +42,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-002.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-002.json index f4d0cb3d7..70bdf5f24 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-002.json @@ -59,4 +59,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-003.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-003.json index edde49790..1800d2888 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-003.json @@ -59,4 +59,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-004.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-004.json index 5c266d94f..fc60bbae5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-004.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-005.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-005.json index f13c8e226..30fe03163 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-005.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-006.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-006.json index 0a03fb3bd..7060360d4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-006.json @@ -64,4 +64,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-007.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-007.json index 461ea8983..48e06f843 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-007.json @@ -79,4 +79,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-008.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-008.json index fa8b40519..595071528 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-008.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-008.json @@ -54,4 +54,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-009.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-009.json index 1d0235af3..23d6ed9c3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-009.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-009.json @@ -53,4 +53,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-010.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-010.json index ae4bcc7fd..2f9d898e3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-010.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-010.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-011.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-011.json index 16a63f1bf..7e45451dd 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-011.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-height-011.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-001.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-001.json index 9fb82aed3..cac55e710 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-001.json @@ -71,4 +71,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-002.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-002.json index b7b27b86e..c121dc5e3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-002.json @@ -77,4 +77,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-003.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-003.json index 1a328f6de..d78906acd 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-003.json @@ -78,4 +78,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-004.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-004.json index 92df4e17f..5ea7127a7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-004.json @@ -85,4 +85,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-006.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-006.json index 8a7487c48..bd0ee19cf 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-006.json @@ -71,4 +71,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-008.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-008.json index ad5e61ce5..8ca3ceb40 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-008.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-008.json @@ -53,4 +53,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-009.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-009.json index 5ef76b6c4..6474e640d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-009.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-009.json @@ -53,4 +53,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-011.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-011.json index 0c476c5d3..c28e6d6f1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-011.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-011.json @@ -59,4 +59,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-012.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-012.json index 53f09bf9d..48dca2644 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-012.json @@ -77,4 +77,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-013.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-013.json index ba46cd0bf..773a5b2fd 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-013.json @@ -77,4 +77,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-014.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-014.json index 79cd2f18b..034c92795 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-014.json @@ -113,4 +113,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-015.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-015.json index 4409bc344..758b3db90 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-015.json @@ -187,4 +187,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-016.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-016.json index 5a42a1064..a8c0a9521 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-016.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-017.json b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-017.json index 9d437a468..d7f07e4a6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-017.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-replaced-width-017.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-002a.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-002a.json index 688656faa..ee1e27e93 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-002a.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-002a.json @@ -64,4 +64,4 @@ "http://www.w3.org/TR/CSS21/tables.html#table-display", "http://www.w3.org/TR/CSS21/visudet.html#leading" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-002b.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-002b.json index 95d5da612..1499b879a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-002b.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-002b.json @@ -70,4 +70,4 @@ "http://www.w3.org/TR/CSS21/tables.html#table-display", "http://www.w3.org/TR/CSS21/visudet.html#leading" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-003.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-003.json index e8ede4720..0df71d875 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-003.json @@ -51,4 +51,4 @@ "http://www.w3.org/TR/CSS21/tables.html#table-display", "http://www.w3.org/TR/CSS21/visudet.html#leading" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-height-001.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-height-001.json index edce3e795..0106a3f62 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-height-001.json @@ -50,4 +50,4 @@ "help": [ "http://www.w3.org/TR/CSS21/tables.html#table-display" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-height-002.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-height-002.json index 3aaec81e2..18ec2be20 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-height-002.json @@ -43,4 +43,4 @@ "help": [ "http://www.w3.org/TR/CSS21/tables.html#table-display" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-valign-001.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-valign-001.json index 3a5009d29..743f319fb 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-valign-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-valign-001.json @@ -231,4 +231,4 @@ "http://www.w3.org/TR/CSS21/tables.html#table-display", "http://www.w3.org/TR/CSS21/visudet.html#leading" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-width-001a.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-width-001a.json index 8f8f35414..b69314ce2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-width-001a.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-width-001a.json @@ -59,4 +59,4 @@ "help": [ "http://www.w3.org/TR/CSS21/tables.html#auto-table-layout" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-width-001b.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-width-001b.json index 193e106e3..e91fe82a5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-width-001b.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-width-001b.json @@ -60,4 +60,4 @@ "help": [ "http://www.w3.org/TR/CSS21/tables.html#auto-table-layout" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-width-002a.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-width-002a.json index 0e2f35fc8..91d241037 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-width-002a.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-width-002a.json @@ -69,4 +69,4 @@ "help": [ "http://www.w3.org/TR/CSS21/tables.html#auto-table-layout" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-width-002b.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-width-002b.json index 559770e6d..c814f78e7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-width-002b.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-width-002b.json @@ -70,4 +70,4 @@ "help": [ "http://www.w3.org/TR/CSS21/tables.html#auto-table-layout" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-001.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-001.json index 3d6e43d4c..d116343d4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-001.json @@ -69,4 +69,4 @@ "help": [ "http://www.w3.org/TR/CSS21/zindex.html#painting-order" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-002.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-002.json index d61b30d36..ab63908d9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-002.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/zindex.html#painting-order" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-003.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-003.json index 7a047250c..7d2b319d5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-003.json @@ -93,4 +93,4 @@ "help": [ "http://www.w3.org/TR/CSS21/zindex.html#painting-order" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-004.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-004.json index f98274c64..10cd07c1d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-004.json @@ -91,4 +91,4 @@ "help": [ "http://www.w3.org/TR/CSS21/zindex.html#painting-order" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-005.json b/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-005.json index 526394fcb..bc8d9a650 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/inline-table-zorder-005.json @@ -99,4 +99,4 @@ "help": [ "http://www.w3.org/TR/CSS21/zindex.html#painting-order" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inlines-002.json b/tests/web_platform/CSS2/normal_flow/data/inlines-002.json index 207248f17..5bffb4155 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inlines-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/inlines-002.json @@ -95,4 +95,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#inline-boxes" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inlines-013.json b/tests/web_platform/CSS2/normal_flow/data/inlines-013.json index 9efb4d4ef..8e24bf4ef 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inlines-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/inlines-013.json @@ -110,4 +110,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#inline-boxes", "http://www.w3.org/TR/CSS21/visuren.html#float-position" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inlines-016.json b/tests/web_platform/CSS2/normal_flow/data/inlines-016.json index 4019e2b0d..cb9c467b4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inlines-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/inlines-016.json @@ -103,4 +103,4 @@ "http://www.w3.org/TR/CSS21/text.html#white-space-model", "http://www.w3.org/TR/CSS21/visuren.html#inline-boxes" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inlines-017.json b/tests/web_platform/CSS2/normal_flow/data/inlines-017.json index 864dffef7..599fc0f6a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inlines-017.json +++ b/tests/web_platform/CSS2/normal_flow/data/inlines-017.json @@ -50,4 +50,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#inline-boxes" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/inlines-020.json b/tests/web_platform/CSS2/normal_flow/data/inlines-020.json index 53f44e9d3..611843aa3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/inlines-020.json +++ b/tests/web_platform/CSS2/normal_flow/data/inlines-020.json @@ -116,4 +116,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#inline-boxes" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-001.json b/tests/web_platform/CSS2/normal_flow/data/max-height-001.json index 96c7b9d6c..373b9d5a1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-001.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-002.json b/tests/web_platform/CSS2/normal_flow/data/max-height-002.json index b356f59ed..95d2aa848 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-002.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-003.json b/tests/web_platform/CSS2/normal_flow/data/max-height-003.json index a905c4552..46c8e124c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-003.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-004.json b/tests/web_platform/CSS2/normal_flow/data/max-height-004.json index 7adfb8504..5c95a031a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-004.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-005.json b/tests/web_platform/CSS2/normal_flow/data/max-height-005.json index ac8ed1c9c..a628c0df3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-005.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-006.json b/tests/web_platform/CSS2/normal_flow/data/max-height-006.json index ffea49c25..93bcdeef3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-006.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-007.json b/tests/web_platform/CSS2/normal_flow/data/max-height-007.json index 69dc21e2f..6dad40623 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-007.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-012.json b/tests/web_platform/CSS2/normal_flow/data/max-height-012.json index 3a526d162..c0890a7f0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-012.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-013.json b/tests/web_platform/CSS2/normal_flow/data/max-height-013.json index c726880cf..70c83e60f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-013.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-014.json b/tests/web_platform/CSS2/normal_flow/data/max-height-014.json index e2ee1063e..55987ef97 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-014.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-015.json b/tests/web_platform/CSS2/normal_flow/data/max-height-015.json index e47666024..6e79f0cb2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-015.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-016.json b/tests/web_platform/CSS2/normal_flow/data/max-height-016.json index 4e3001b80..671450740 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-016.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-017.json b/tests/web_platform/CSS2/normal_flow/data/max-height-017.json index f147a9593..4af7c4108 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-017.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-017.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-018.json b/tests/web_platform/CSS2/normal_flow/data/max-height-018.json index 1d08d227b..f0a424f2b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-018.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-018.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-023.json b/tests/web_platform/CSS2/normal_flow/data/max-height-023.json index e7a229faf..8c228491a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-023.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-023.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-024.json b/tests/web_platform/CSS2/normal_flow/data/max-height-024.json index 4c6b80e95..ae2e6efd6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-024.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-024.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-025.json b/tests/web_platform/CSS2/normal_flow/data/max-height-025.json index 4ac55ca63..7260017cc 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-025.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-025.json @@ -39,4 +39,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-026.json b/tests/web_platform/CSS2/normal_flow/data/max-height-026.json index 31558c424..eea77e197 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-026.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-026.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-027.json b/tests/web_platform/CSS2/normal_flow/data/max-height-027.json index e0708b181..ad3be7c43 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-027.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-027.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-028.json b/tests/web_platform/CSS2/normal_flow/data/max-height-028.json index 3386adf33..c1ac53805 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-028.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-028.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-029.json b/tests/web_platform/CSS2/normal_flow/data/max-height-029.json index c8bc58b99..e43a60c21 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-029.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-029.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-034.json b/tests/web_platform/CSS2/normal_flow/data/max-height-034.json index 6a4d1e633..8fe260ae3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-034.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-034.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-035.json b/tests/web_platform/CSS2/normal_flow/data/max-height-035.json index 8f7115e57..ce04f7f60 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-035.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-035.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-036.json b/tests/web_platform/CSS2/normal_flow/data/max-height-036.json index 12e23bf30..a2c923fed 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-036.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-036.json @@ -39,4 +39,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-037.json b/tests/web_platform/CSS2/normal_flow/data/max-height-037.json index ec5295eba..012b9ee8a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-037.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-037.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-038.json b/tests/web_platform/CSS2/normal_flow/data/max-height-038.json index d33182b70..34b9451bb 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-038.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-038.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-039.json b/tests/web_platform/CSS2/normal_flow/data/max-height-039.json index 454542697..16e061f0b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-039.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-039.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-040.json b/tests/web_platform/CSS2/normal_flow/data/max-height-040.json index b07e5c032..1d2b3475c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-040.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-040.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-045.json b/tests/web_platform/CSS2/normal_flow/data/max-height-045.json index 435bd5ea1..9ec278b85 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-045.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-045.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-046.json b/tests/web_platform/CSS2/normal_flow/data/max-height-046.json index 69fcb7496..2e85ff9f9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-046.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-046.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-047.json b/tests/web_platform/CSS2/normal_flow/data/max-height-047.json index 400af26d6..27ab8b962 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-047.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-047.json @@ -39,4 +39,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-048.json b/tests/web_platform/CSS2/normal_flow/data/max-height-048.json index 3e6e5a6c8..3f65af238 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-048.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-048.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-049.json b/tests/web_platform/CSS2/normal_flow/data/max-height-049.json index f92c7fbd2..a9df02245 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-049.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-049.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-050.json b/tests/web_platform/CSS2/normal_flow/data/max-height-050.json index 0d75f6a36..c145d1faf 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-050.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-050.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-051.json b/tests/web_platform/CSS2/normal_flow/data/max-height-051.json index 838e0d2d7..f1cf30261 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-051.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-051.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-056.json b/tests/web_platform/CSS2/normal_flow/data/max-height-056.json index 52c62e572..06b73c4bc 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-056.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-056.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-057.json b/tests/web_platform/CSS2/normal_flow/data/max-height-057.json index cca9a2199..808da4819 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-057.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-057.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-058.json b/tests/web_platform/CSS2/normal_flow/data/max-height-058.json index d755d717e..4e8800d6b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-058.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-058.json @@ -39,4 +39,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-059.json b/tests/web_platform/CSS2/normal_flow/data/max-height-059.json index a7d1083a2..696ad6ee3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-059.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-059.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-060.json b/tests/web_platform/CSS2/normal_flow/data/max-height-060.json index da353534b..1ac5005ab 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-060.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-060.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-061.json b/tests/web_platform/CSS2/normal_flow/data/max-height-061.json index f0366bd4c..3a05954ed 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-061.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-061.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-062.json b/tests/web_platform/CSS2/normal_flow/data/max-height-062.json index 1080c1e2f..93c4539c7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-062.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-062.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-067.json b/tests/web_platform/CSS2/normal_flow/data/max-height-067.json index 446f0e3bd..839f97893 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-067.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-067.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-068.json b/tests/web_platform/CSS2/normal_flow/data/max-height-068.json index 3bfaeaf18..7d7b0d2f8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-068.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-068.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-069.json b/tests/web_platform/CSS2/normal_flow/data/max-height-069.json index 3d0af96a1..ecc637518 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-069.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-069.json @@ -51,4 +51,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-070.json b/tests/web_platform/CSS2/normal_flow/data/max-height-070.json index 1dcc8d26e..6c9d90cf4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-070.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-070.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-071.json b/tests/web_platform/CSS2/normal_flow/data/max-height-071.json index a8cffbb0b..adca161bf 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-071.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-071.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-072.json b/tests/web_platform/CSS2/normal_flow/data/max-height-072.json index 0d9cddc1e..da450ccf9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-072.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-072.json @@ -81,4 +81,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-073.json b/tests/web_platform/CSS2/normal_flow/data/max-height-073.json index 0928b52bd..a4f08e23f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-073.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-073.json @@ -81,4 +81,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-078.json b/tests/web_platform/CSS2/normal_flow/data/max-height-078.json index f1ceb8db8..93fa9a8e2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-078.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-078.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-079.json b/tests/web_platform/CSS2/normal_flow/data/max-height-079.json index 76963d94d..5a8d73aa5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-079.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-079.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-080.json b/tests/web_platform/CSS2/normal_flow/data/max-height-080.json index 71ce38333..523775945 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-080.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-080.json @@ -51,4 +51,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-081.json b/tests/web_platform/CSS2/normal_flow/data/max-height-081.json index 4aeaaa1ed..58331a5e2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-081.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-081.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-082.json b/tests/web_platform/CSS2/normal_flow/data/max-height-082.json index 8fd2b360c..56daf3c23 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-082.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-082.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-083.json b/tests/web_platform/CSS2/normal_flow/data/max-height-083.json index 71730775e..3d083c555 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-083.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-083.json @@ -81,4 +81,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-084.json b/tests/web_platform/CSS2/normal_flow/data/max-height-084.json index c32c5c9a9..25ee261e8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-084.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-084.json @@ -81,4 +81,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-089.json b/tests/web_platform/CSS2/normal_flow/data/max-height-089.json index 31e34f859..0e5913893 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-089.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-089.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-090.json b/tests/web_platform/CSS2/normal_flow/data/max-height-090.json index 2d9df71d5..b0554a908 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-090.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-090.json @@ -53,4 +53,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-091.json b/tests/web_platform/CSS2/normal_flow/data/max-height-091.json index 12b903dc2..a7606ea63 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-091.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-091.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-092.json b/tests/web_platform/CSS2/normal_flow/data/max-height-092.json index 1a77a6d7e..c8da1c691 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-092.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-092.json @@ -53,4 +53,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-093.json b/tests/web_platform/CSS2/normal_flow/data/max-height-093.json index 28f2e4b73..fd8c8d6e7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-093.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-093.json @@ -53,4 +53,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-094.json b/tests/web_platform/CSS2/normal_flow/data/max-height-094.json index 57653368a..323646487 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-094.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-094.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-095.json b/tests/web_platform/CSS2/normal_flow/data/max-height-095.json index c5e4e207e..c744cf84b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-095.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-095.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-100.json b/tests/web_platform/CSS2/normal_flow/data/max-height-100.json index a897ec078..a34375f7e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-100.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-100.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-101.json b/tests/web_platform/CSS2/normal_flow/data/max-height-101.json index 982dc3187..5c5d14182 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-101.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-101.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-102.json b/tests/web_platform/CSS2/normal_flow/data/max-height-102.json index 029e4c3f5..fd1bc1d6e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-102.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-102.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-103.json b/tests/web_platform/CSS2/normal_flow/data/max-height-103.json index eb5bf96e1..b85ace4ab 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-103.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-103.json @@ -29,4 +29,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-104.json b/tests/web_platform/CSS2/normal_flow/data/max-height-104.json index 157a6f83e..a165ef459 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-104.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-104.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-105.json b/tests/web_platform/CSS2/normal_flow/data/max-height-105.json index 09e40efd0..5d7470702 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-105.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-105.json @@ -75,4 +75,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights", "http://www.w3.org/TR/CSS21/visufx.html#overflow" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-106.json b/tests/web_platform/CSS2/normal_flow/data/max-height-106.json index ac56695be..7888c4825 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-106.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-106.json @@ -76,4 +76,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights", "http://www.w3.org/TR/CSS21/visuren.html#floats" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-107.json b/tests/web_platform/CSS2/normal_flow/data/max-height-107.json index 2893b5f86..852c00bba 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-107.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-107.json @@ -104,4 +104,4 @@ "http://www.w3.org/TR/CSS21/visufx.html#overflow", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-108.json b/tests/web_platform/CSS2/normal_flow/data/max-height-108.json index 5a95300a1..3ed8140e2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-108.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-108.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights", "http://www.w3.org/TR/CSS21/visufx.html#overflow" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-109.json b/tests/web_platform/CSS2/normal_flow/data/max-height-109.json index 150556616..bd790113b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-109.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-109.json @@ -85,4 +85,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights", "http://www.w3.org/TR/CSS21/visufx.html#overflow" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-110.json b/tests/web_platform/CSS2/normal_flow/data/max-height-110.json index 8fbefad5d..fb8fe2912 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-110.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-110.json @@ -103,4 +103,4 @@ "http://www.w3.org/TR/CSS21/visufx.html#overflow", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-111.json b/tests/web_platform/CSS2/normal_flow/data/max-height-111.json index 9241f3296..6fe839350 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-111.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-111.json @@ -120,4 +120,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights", "http://www.w3.org/TR/CSS21/visufx.html#overflow" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-001.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-001.json index 090dc1a89..ba17cd729 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-001.json @@ -71,4 +71,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-002.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-002.json index 379b7a968..fb93715cd 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-002.json @@ -71,4 +71,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-003.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-003.json index b9e3bd0ad..d8904cc78 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-003.json @@ -71,4 +71,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-004.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-004.json index be2c88ba9..afc4c0296 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-004.json @@ -58,4 +58,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-005.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-005.json index c704d460d..864e4fa7a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-005.json @@ -128,4 +128,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-006.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-006.json index 9c7d595d7..e11bf42b5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-006.json @@ -121,4 +121,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-007.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-007.json index 0a2e679ce..e8f6ff0ca 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-007.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-008.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-008.json index ec54ad7ce..b0eecc59d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-008.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-008.json @@ -40,4 +40,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-009.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-009.json index 2918d64a9..eac113351 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-009.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-009.json @@ -46,4 +46,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-010.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-010.json index d6182ff02..624c6c94f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-010.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-010.json @@ -39,4 +39,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-012.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-012.json index e5389567f..cbd2877c2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-012.json @@ -73,4 +73,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-013.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-013.json index 5a14a84ec..27b53cdb1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-013.json @@ -102,4 +102,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-014.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-014.json index a6e39e70e..cbe535cd3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-014.json @@ -103,4 +103,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-015.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-015.json index 881b9aac5..7b2e2b128 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-015.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-016.json b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-016.json index 2c9f34b05..0f35ce943 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-applies-to-016.json @@ -48,4 +48,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-max-width-001.json b/tests/web_platform/CSS2/normal_flow/data/max-height-max-width-001.json index e14b0ceac..ee60e9ab9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-max-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-max-width-001.json @@ -78,4 +78,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths", "http://www.w3.org/TR/CSS21/visuren.html#floats" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-percentage-001.json b/tests/web_platform/CSS2/normal_flow/data/max-height-percentage-001.json index b14205245..e352c207d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-percentage-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-percentage-001.json @@ -70,4 +70,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-percentage-002.json b/tests/web_platform/CSS2/normal_flow/data/max-height-percentage-002.json index 7c340c141..a09f326fb 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-percentage-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-percentage-002.json @@ -69,4 +69,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-height-percentage-003.json b/tests/web_platform/CSS2/normal_flow/data/max-height-percentage-003.json index 405ad3df0..acdbeb106 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-height-percentage-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-height-percentage-003.json @@ -42,4 +42,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-001.json b/tests/web_platform/CSS2/normal_flow/data/max-width-001.json index 71240f176..f6f286ccc 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-001.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-002.json b/tests/web_platform/CSS2/normal_flow/data/max-width-002.json index bf8b47af9..f16a51019 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-002.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-003.json b/tests/web_platform/CSS2/normal_flow/data/max-width-003.json index dda1c47dd..237941901 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-003.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-004.json b/tests/web_platform/CSS2/normal_flow/data/max-width-004.json index 776d6ed34..5848c3453 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-004.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-005.json b/tests/web_platform/CSS2/normal_flow/data/max-width-005.json index b8a491e1c..d718b9fd0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-005.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-006.json b/tests/web_platform/CSS2/normal_flow/data/max-width-006.json index 45f52cfde..c1e6ca2e7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-006.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-007.json b/tests/web_platform/CSS2/normal_flow/data/max-width-007.json index f2fec7704..a60fb9b9f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-007.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-012.json b/tests/web_platform/CSS2/normal_flow/data/max-width-012.json index 3af0ca008..884210ab5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-012.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-013.json b/tests/web_platform/CSS2/normal_flow/data/max-width-013.json index f6e5e9b67..31d114447 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-013.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-014.json b/tests/web_platform/CSS2/normal_flow/data/max-width-014.json index 5bf610edf..3e9f352ff 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-014.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-015.json b/tests/web_platform/CSS2/normal_flow/data/max-width-015.json index 15827e636..054b48fab 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-015.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-016.json b/tests/web_platform/CSS2/normal_flow/data/max-width-016.json index e6027b44b..2efaa2e59 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-016.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-017.json b/tests/web_platform/CSS2/normal_flow/data/max-width-017.json index 4f3c8ff54..53dec6fff 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-017.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-017.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-018.json b/tests/web_platform/CSS2/normal_flow/data/max-width-018.json index 87f389982..5747061e8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-018.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-018.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-023.json b/tests/web_platform/CSS2/normal_flow/data/max-width-023.json index 2e140d9c2..9828b1487 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-023.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-023.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-024.json b/tests/web_platform/CSS2/normal_flow/data/max-width-024.json index fca64497e..6c2d56472 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-024.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-024.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-025.json b/tests/web_platform/CSS2/normal_flow/data/max-width-025.json index 3af177902..04bc7e920 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-025.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-025.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-026.json b/tests/web_platform/CSS2/normal_flow/data/max-width-026.json index 224fd0def..88400052b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-026.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-026.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-027.json b/tests/web_platform/CSS2/normal_flow/data/max-width-027.json index 83055eaf4..5bb66158f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-027.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-027.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-028.json b/tests/web_platform/CSS2/normal_flow/data/max-width-028.json index 545c9582f..152303e40 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-028.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-028.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-029.json b/tests/web_platform/CSS2/normal_flow/data/max-width-029.json index 84152787d..44cc6db53 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-029.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-029.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-034.json b/tests/web_platform/CSS2/normal_flow/data/max-width-034.json index ea5b8db6a..0d18687cd 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-034.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-034.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-035.json b/tests/web_platform/CSS2/normal_flow/data/max-width-035.json index 299737e6b..d96bbda64 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-035.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-035.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-036.json b/tests/web_platform/CSS2/normal_flow/data/max-width-036.json index 370a53011..ae42a0d69 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-036.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-036.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-037.json b/tests/web_platform/CSS2/normal_flow/data/max-width-037.json index 13782e196..76291bfab 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-037.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-037.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-038.json b/tests/web_platform/CSS2/normal_flow/data/max-width-038.json index 5fde03b6a..09d932589 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-038.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-038.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-039.json b/tests/web_platform/CSS2/normal_flow/data/max-width-039.json index 88202796e..9c5b03aea 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-039.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-039.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-040.json b/tests/web_platform/CSS2/normal_flow/data/max-width-040.json index 5f9152ed4..2723cb3e9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-040.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-040.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-045.json b/tests/web_platform/CSS2/normal_flow/data/max-width-045.json index 17c2a5d83..5d1e89c21 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-045.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-045.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-046.json b/tests/web_platform/CSS2/normal_flow/data/max-width-046.json index e3cc5a578..50f3ccb9d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-046.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-046.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-047.json b/tests/web_platform/CSS2/normal_flow/data/max-width-047.json index 5a6d88d5b..3c172dd3a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-047.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-047.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-048.json b/tests/web_platform/CSS2/normal_flow/data/max-width-048.json index 8da8bb577..631bd64aa 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-048.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-048.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-049.json b/tests/web_platform/CSS2/normal_flow/data/max-width-049.json index 840bdec61..e27121326 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-049.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-049.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-050.json b/tests/web_platform/CSS2/normal_flow/data/max-width-050.json index 68728c0ba..e3774b3cb 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-050.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-050.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-051.json b/tests/web_platform/CSS2/normal_flow/data/max-width-051.json index fc43ac0b5..ece08279a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-051.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-051.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-056.json b/tests/web_platform/CSS2/normal_flow/data/max-width-056.json index 490f873a2..36e742bc5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-056.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-056.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-057.json b/tests/web_platform/CSS2/normal_flow/data/max-width-057.json index ae3da39dc..a32b196e4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-057.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-057.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-058.json b/tests/web_platform/CSS2/normal_flow/data/max-width-058.json index 9af867643..3804590de 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-058.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-058.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-059.json b/tests/web_platform/CSS2/normal_flow/data/max-width-059.json index 5d30055ba..7e920dbd8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-059.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-059.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-060.json b/tests/web_platform/CSS2/normal_flow/data/max-width-060.json index d06b64476..e3459f328 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-060.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-060.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-061.json b/tests/web_platform/CSS2/normal_flow/data/max-width-061.json index 18b00cd44..f3062bd78 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-061.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-061.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-062.json b/tests/web_platform/CSS2/normal_flow/data/max-width-062.json index 541a2ac39..a0472f88b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-062.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-062.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-067.json b/tests/web_platform/CSS2/normal_flow/data/max-width-067.json index 7ed5eb7ce..e77693ba9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-067.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-067.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-068.json b/tests/web_platform/CSS2/normal_flow/data/max-width-068.json index 3260314af..98e2769a6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-068.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-068.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-069.json b/tests/web_platform/CSS2/normal_flow/data/max-width-069.json index 29f2029fc..4b4f344d4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-069.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-069.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-070.json b/tests/web_platform/CSS2/normal_flow/data/max-width-070.json index cfc7c9d10..b5f283e38 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-070.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-070.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-071.json b/tests/web_platform/CSS2/normal_flow/data/max-width-071.json index 179846d19..ffea3eb96 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-071.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-071.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-072.json b/tests/web_platform/CSS2/normal_flow/data/max-width-072.json index 254496817..6dbecdcfd 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-072.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-072.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-073.json b/tests/web_platform/CSS2/normal_flow/data/max-width-073.json index a59fb134c..3bcfba22b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-073.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-073.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-078.json b/tests/web_platform/CSS2/normal_flow/data/max-width-078.json index ee20b3949..8c1762520 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-078.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-078.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-079.json b/tests/web_platform/CSS2/normal_flow/data/max-width-079.json index 71afe754f..d92c0abed 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-079.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-079.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-080.json b/tests/web_platform/CSS2/normal_flow/data/max-width-080.json index dda8ac512..61b590c12 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-080.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-080.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-081.json b/tests/web_platform/CSS2/normal_flow/data/max-width-081.json index ce5a70636..9400a37ad 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-081.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-081.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-082.json b/tests/web_platform/CSS2/normal_flow/data/max-width-082.json index 1fd31ab8e..d95dcc36f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-082.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-082.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-083.json b/tests/web_platform/CSS2/normal_flow/data/max-width-083.json index 381334cf4..546834ec9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-083.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-083.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-084.json b/tests/web_platform/CSS2/normal_flow/data/max-width-084.json index 3dfdc8298..1ddb43cc8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-084.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-084.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-089.json b/tests/web_platform/CSS2/normal_flow/data/max-width-089.json index 09431f081..6a5ab29b7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-089.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-089.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-090.json b/tests/web_platform/CSS2/normal_flow/data/max-width-090.json index 40b188002..a65d94092 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-090.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-090.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-091.json b/tests/web_platform/CSS2/normal_flow/data/max-width-091.json index 51b5c5f81..9a459c2f4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-091.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-091.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-092.json b/tests/web_platform/CSS2/normal_flow/data/max-width-092.json index 8fcd85448..bcbda6336 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-092.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-092.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-093.json b/tests/web_platform/CSS2/normal_flow/data/max-width-093.json index a4acd3a62..d6ff397b0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-093.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-093.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-094.json b/tests/web_platform/CSS2/normal_flow/data/max-width-094.json index c3fe6ffe6..f6ae3549b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-094.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-094.json @@ -59,4 +59,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-095.json b/tests/web_platform/CSS2/normal_flow/data/max-width-095.json index 4b19e6c88..2706b4847 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-095.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-095.json @@ -59,4 +59,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-100.json b/tests/web_platform/CSS2/normal_flow/data/max-width-100.json index 2804810b0..190e64a72 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-100.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-100.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-101.json b/tests/web_platform/CSS2/normal_flow/data/max-width-101.json index dad8609b6..67961fd66 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-101.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-101.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-102.json b/tests/web_platform/CSS2/normal_flow/data/max-width-102.json index 1890de66e..34e7f57c8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-102.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-102.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-103.json b/tests/web_platform/CSS2/normal_flow/data/max-width-103.json index 4979f2ac1..021bfdaa4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-103.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-103.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-104.json b/tests/web_platform/CSS2/normal_flow/data/max-width-104.json index afe8bd8bc..b48ef7667 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-104.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-104.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-105.json b/tests/web_platform/CSS2/normal_flow/data/max-width-105.json index 18d446aa7..e0fa63e82 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-105.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-105.json @@ -104,4 +104,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths", "http://www.w3.org/TR/CSS21/visufx.html#overflow" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-106.json b/tests/web_platform/CSS2/normal_flow/data/max-width-106.json index 3c11dcded..968ae0849 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-106.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-106.json @@ -103,4 +103,4 @@ "http://www.w3.org/TR/CSS21/visuren.html#floats", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-107.json b/tests/web_platform/CSS2/normal_flow/data/max-width-107.json index 3ba369010..c2a31bf91 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-107.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-107.json @@ -118,4 +118,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths", "http://www.w3.org/TR/CSS21/visufx.html#overflow" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-108.json b/tests/web_platform/CSS2/normal_flow/data/max-width-108.json index 71fd0327c..dca25822a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-108.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-108.json @@ -120,4 +120,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths", "http://www.w3.org/TR/CSS21/visufx.html#overflow" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-110.json b/tests/web_platform/CSS2/normal_flow/data/max-width-110.json index 62bfaab65..6a3ec6fb5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-110.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-110.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths", "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-001.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-001.json index cf9720c36..b37a2c67f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-001.json @@ -114,4 +114,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-002.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-002.json index 3cbcefe3c..a5699b7e7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-002.json @@ -114,4 +114,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-003.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-003.json index 1e06027fb..b70214d97 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-003.json @@ -114,4 +114,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-004.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-004.json index 84fb54d17..a5548b0a0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-004.json @@ -107,4 +107,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-005.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-005.json index eaf7e523c..d694a5ecb 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-005.json @@ -64,4 +64,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-006.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-006.json index cee517891..c08ed1ee6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-006.json @@ -64,4 +64,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-007.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-007.json index c74b4a1c7..211ab0648 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-007.json @@ -57,4 +57,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-008.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-008.json index d4896fe41..954c039ff 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-008.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-008.json @@ -40,4 +40,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-009.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-009.json index 51974534f..4c3dcc589 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-009.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-009.json @@ -46,4 +46,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-010.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-010.json index 865f6cf84..a31a8ef0c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-010.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-010.json @@ -39,4 +39,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-012.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-012.json index 5665237b4..8e3d02935 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-012.json @@ -73,4 +73,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-013.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-013.json index f9807f76b..7e2f5eb7d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-013.json @@ -57,4 +57,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-014.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-014.json index 3bac87240..8a23ad30c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-014.json @@ -57,4 +57,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-015.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-015.json index 05e074b74..254e7a18e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-015.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-016.json b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-016.json index e3e4e4a50..24ab7a668 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-applies-to-016.json @@ -48,4 +48,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-percentage-001.json b/tests/web_platform/CSS2/normal_flow/data/max-width-percentage-001.json index e5fcb6ab5..61586aedd 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-percentage-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-percentage-001.json @@ -57,4 +57,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-percentage-002.json b/tests/web_platform/CSS2/normal_flow/data/max-width-percentage-002.json index 7be20028b..5ff23a4f0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-percentage-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-percentage-002.json @@ -51,4 +51,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/max-width-percentage-003.json b/tests/web_platform/CSS2/normal_flow/data/max-width-percentage-003.json index c265b55cb..9b96ce8b8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/max-width-percentage-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/max-width-percentage-003.json @@ -43,4 +43,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-001.json b/tests/web_platform/CSS2/normal_flow/data/min-height-001.json index a13607cb2..dd2056776 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-001.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-002.json b/tests/web_platform/CSS2/normal_flow/data/min-height-002.json index ad94bab86..66517a739 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-002.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-003.json b/tests/web_platform/CSS2/normal_flow/data/min-height-003.json index 2db7d57b3..5e490d9f6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-003.json @@ -36,4 +36,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-004.json b/tests/web_platform/CSS2/normal_flow/data/min-height-004.json index da7d84422..e1d0d3a09 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-004.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-005.json b/tests/web_platform/CSS2/normal_flow/data/min-height-005.json index b1bc6bed2..73643fdda 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-005.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-006.json b/tests/web_platform/CSS2/normal_flow/data/min-height-006.json index 6399282d9..e04fbb9dc 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-006.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-007.json b/tests/web_platform/CSS2/normal_flow/data/min-height-007.json index fc10f6f6b..67622aa26 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-007.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-012.json b/tests/web_platform/CSS2/normal_flow/data/min-height-012.json index 9558d68f4..3af748e17 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-012.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-013.json b/tests/web_platform/CSS2/normal_flow/data/min-height-013.json index ff3d9b48f..086eedd53 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-013.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-014.json b/tests/web_platform/CSS2/normal_flow/data/min-height-014.json index 21cfeb326..a43a7b80f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-014.json @@ -36,4 +36,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-015.json b/tests/web_platform/CSS2/normal_flow/data/min-height-015.json index f0a208bcb..9c902010b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-015.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-016.json b/tests/web_platform/CSS2/normal_flow/data/min-height-016.json index 02eb11403..04edbff55 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-016.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-017.json b/tests/web_platform/CSS2/normal_flow/data/min-height-017.json index 034504897..95b76d957 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-017.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-017.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-018.json b/tests/web_platform/CSS2/normal_flow/data/min-height-018.json index 73dd0fa15..7229dc5c1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-018.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-018.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-023.json b/tests/web_platform/CSS2/normal_flow/data/min-height-023.json index 69190d037..6f64e5ebe 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-023.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-023.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-024.json b/tests/web_platform/CSS2/normal_flow/data/min-height-024.json index add65e86a..6221bf3d0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-024.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-024.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-025.json b/tests/web_platform/CSS2/normal_flow/data/min-height-025.json index bddbd07ba..f07509c69 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-025.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-025.json @@ -39,4 +39,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-026.json b/tests/web_platform/CSS2/normal_flow/data/min-height-026.json index 5edf85654..357f76070 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-026.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-026.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-027.json b/tests/web_platform/CSS2/normal_flow/data/min-height-027.json index 4cafc54a8..7c6753a77 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-027.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-027.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-028.json b/tests/web_platform/CSS2/normal_flow/data/min-height-028.json index 832d94c2d..f2116a1ba 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-028.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-028.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-029.json b/tests/web_platform/CSS2/normal_flow/data/min-height-029.json index c0a7effc8..47f16da90 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-029.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-029.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-034.json b/tests/web_platform/CSS2/normal_flow/data/min-height-034.json index c59ff4751..314a97008 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-034.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-034.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-035.json b/tests/web_platform/CSS2/normal_flow/data/min-height-035.json index d26aaf3d4..c028c4270 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-035.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-035.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-036.json b/tests/web_platform/CSS2/normal_flow/data/min-height-036.json index a7146aaaa..9ea5fd7ad 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-036.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-036.json @@ -39,4 +39,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-037.json b/tests/web_platform/CSS2/normal_flow/data/min-height-037.json index ca3fae8e3..f6714beff 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-037.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-037.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-038.json b/tests/web_platform/CSS2/normal_flow/data/min-height-038.json index 4e280d042..309e9a2ca 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-038.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-038.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-039.json b/tests/web_platform/CSS2/normal_flow/data/min-height-039.json index d711cf883..006ad33f5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-039.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-039.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-040.json b/tests/web_platform/CSS2/normal_flow/data/min-height-040.json index 44fa4082b..22e8e736b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-040.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-040.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-045.json b/tests/web_platform/CSS2/normal_flow/data/min-height-045.json index 3f9269c70..a05196c93 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-045.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-045.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-046.json b/tests/web_platform/CSS2/normal_flow/data/min-height-046.json index 9290f2371..a42a80bea 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-046.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-046.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-047.json b/tests/web_platform/CSS2/normal_flow/data/min-height-047.json index fc5217c91..d17654545 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-047.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-047.json @@ -39,4 +39,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-048.json b/tests/web_platform/CSS2/normal_flow/data/min-height-048.json index a43a2aebe..6ce6af27a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-048.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-048.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-049.json b/tests/web_platform/CSS2/normal_flow/data/min-height-049.json index 713828cc3..13f40fe8c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-049.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-049.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-050.json b/tests/web_platform/CSS2/normal_flow/data/min-height-050.json index 32ab96952..60ec09289 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-050.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-050.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-051.json b/tests/web_platform/CSS2/normal_flow/data/min-height-051.json index ffe59d366..dbaf5092a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-051.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-051.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-056.json b/tests/web_platform/CSS2/normal_flow/data/min-height-056.json index 61ce3d323..59f9f58cc 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-056.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-056.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-057.json b/tests/web_platform/CSS2/normal_flow/data/min-height-057.json index 0becb0724..9e40697d1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-057.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-057.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-058.json b/tests/web_platform/CSS2/normal_flow/data/min-height-058.json index ee04efec9..39d41ab77 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-058.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-058.json @@ -39,4 +39,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-059.json b/tests/web_platform/CSS2/normal_flow/data/min-height-059.json index df4142824..f174e3fc9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-059.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-059.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-060.json b/tests/web_platform/CSS2/normal_flow/data/min-height-060.json index a66fa4d61..2c04d5bba 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-060.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-060.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-061.json b/tests/web_platform/CSS2/normal_flow/data/min-height-061.json index 6973afe69..130e264ac 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-061.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-061.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-062.json b/tests/web_platform/CSS2/normal_flow/data/min-height-062.json index 2994789d7..a3ce9e351 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-062.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-062.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-067.json b/tests/web_platform/CSS2/normal_flow/data/min-height-067.json index 53ba9e3c6..7e192e8cd 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-067.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-067.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-068.json b/tests/web_platform/CSS2/normal_flow/data/min-height-068.json index a0551e0a9..82520e87b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-068.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-068.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-069.json b/tests/web_platform/CSS2/normal_flow/data/min-height-069.json index 3ccd3fb2f..677681bf4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-069.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-069.json @@ -42,4 +42,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-070.json b/tests/web_platform/CSS2/normal_flow/data/min-height-070.json index a56f01eb5..6a8169ed0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-070.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-070.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-071.json b/tests/web_platform/CSS2/normal_flow/data/min-height-071.json index 438d7400f..f7478df47 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-071.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-071.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-072.json b/tests/web_platform/CSS2/normal_flow/data/min-height-072.json index e62e60fa3..a7e24f4f9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-072.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-072.json @@ -80,4 +80,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-073.json b/tests/web_platform/CSS2/normal_flow/data/min-height-073.json index fa0203fc6..00d40a3a3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-073.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-073.json @@ -80,4 +80,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-078.json b/tests/web_platform/CSS2/normal_flow/data/min-height-078.json index 5d4481127..c60d70bef 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-078.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-078.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-079.json b/tests/web_platform/CSS2/normal_flow/data/min-height-079.json index 3108bd131..19a2c9dc7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-079.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-079.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-080.json b/tests/web_platform/CSS2/normal_flow/data/min-height-080.json index 113b8be5b..321b61dd8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-080.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-080.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-081.json b/tests/web_platform/CSS2/normal_flow/data/min-height-081.json index 6e4356b40..1282f17c2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-081.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-081.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-082.json b/tests/web_platform/CSS2/normal_flow/data/min-height-082.json index 25edcf40b..d86ff5b10 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-082.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-082.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-083.json b/tests/web_platform/CSS2/normal_flow/data/min-height-083.json index 47f18d07d..9433913a6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-083.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-083.json @@ -80,4 +80,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-084.json b/tests/web_platform/CSS2/normal_flow/data/min-height-084.json index 68b7b81c0..9124e179f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-084.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-084.json @@ -80,4 +80,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-089.json b/tests/web_platform/CSS2/normal_flow/data/min-height-089.json index 3e7cc71ed..686c8cd9b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-089.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-089.json @@ -52,4 +52,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-090.json b/tests/web_platform/CSS2/normal_flow/data/min-height-090.json index 00ec7bdea..248f4747d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-090.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-090.json @@ -53,4 +53,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-091.json b/tests/web_platform/CSS2/normal_flow/data/min-height-091.json index 1104f3e95..c9e73c2b6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-091.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-091.json @@ -46,4 +46,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-092.json b/tests/web_platform/CSS2/normal_flow/data/min-height-092.json index 8be143dd8..756d38b5a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-092.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-092.json @@ -53,4 +53,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-093.json b/tests/web_platform/CSS2/normal_flow/data/min-height-093.json index e67077915..645645b75 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-093.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-093.json @@ -53,4 +53,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-094.json b/tests/web_platform/CSS2/normal_flow/data/min-height-094.json index 56b2ce2f5..a8d028b48 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-094.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-094.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-095.json b/tests/web_platform/CSS2/normal_flow/data/min-height-095.json index 725fa7348..d66ac2d1e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-095.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-095.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-100.json b/tests/web_platform/CSS2/normal_flow/data/min-height-100.json index ea319be14..d945db1f4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-100.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-100.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-101.json b/tests/web_platform/CSS2/normal_flow/data/min-height-101.json index a3f0c96b1..40bc2eab4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-101.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-101.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-102.json b/tests/web_platform/CSS2/normal_flow/data/min-height-102.json index 0f0c77c50..c7f540244 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-102.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-102.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-103.json b/tests/web_platform/CSS2/normal_flow/data/min-height-103.json index bd3a2dff1..3014704fc 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-103.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-103.json @@ -46,4 +46,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-104.json b/tests/web_platform/CSS2/normal_flow/data/min-height-104.json index b852fa1f0..699ff2185 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-104.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-104.json @@ -105,4 +105,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights", "http://www.w3.org/TR/CSS21/visufx.html#overflow" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-105.json b/tests/web_platform/CSS2/normal_flow/data/min-height-105.json index 8fcbf736d..1c1a3769d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-105.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-105.json @@ -103,4 +103,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights", "http://www.w3.org/TR/CSS21/visufx.html#overflow" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-106.json b/tests/web_platform/CSS2/normal_flow/data/min-height-106.json index c22714bc2..4d6df0045 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-106.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-106.json @@ -122,4 +122,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights", "http://www.w3.org/TR/CSS21/visufx.html#overflow" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-111.json b/tests/web_platform/CSS2/normal_flow/data/min-height-111.json index 43e2ae99b..2b1ad67ab 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-111.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-111.json @@ -36,4 +36,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-112.json b/tests/web_platform/CSS2/normal_flow/data/min-height-112.json index c4f411ecc..9c46342f6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-112.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-112.json @@ -38,4 +38,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-001.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-001.json index 8e4a9c017..bafdcff01 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-001.json @@ -71,4 +71,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-002.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-002.json index 74656a6b1..6cee152b9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-002.json @@ -71,4 +71,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-003.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-003.json index b1d64e6f1..10f9abe56 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-003.json @@ -71,4 +71,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-004.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-004.json index f02d68766..d2f391f9f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-004.json @@ -57,4 +57,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-005.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-005.json index 0c84a9bd7..396e97ce2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-005.json @@ -132,4 +132,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-006.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-006.json index 15a3b1eff..08dcce241 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-006.json @@ -143,4 +143,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-007.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-007.json index deb9f3f59..11d5c9ffc 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-007.json @@ -60,4 +60,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-008.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-008.json index 217873cc7..070be2215 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-008.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-008.json @@ -40,4 +40,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-009.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-009.json index 59f8caf05..7d7b1f8a6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-009.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-009.json @@ -45,4 +45,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-010.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-010.json index c3efed5de..589607408 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-010.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-010.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-012.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-012.json index 58bd4c4a0..14ca32b94 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-012.json @@ -72,4 +72,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-013.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-013.json index 5d99764e2..c114b0a59 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-013.json @@ -58,4 +58,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-014.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-014.json index 3c2d54c6e..e7aa6865e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-014.json @@ -58,4 +58,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-015.json b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-015.json index 6b186bc30..88175df7f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-applies-to-015.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-percentage-001.json b/tests/web_platform/CSS2/normal_flow/data/min-height-percentage-001.json index 23584e777..1616ab35f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-percentage-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-percentage-001.json @@ -69,4 +69,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-percentage-002.json b/tests/web_platform/CSS2/normal_flow/data/min-height-percentage-002.json index c87cf0c66..b929e75ba 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-percentage-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-percentage-002.json @@ -47,4 +47,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-height-percentage-003.json b/tests/web_platform/CSS2/normal_flow/data/min-height-percentage-003.json index e3e1032d2..a1adf7cc5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-height-percentage-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-height-percentage-003.json @@ -57,4 +57,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#containing-block-details", "http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-001.json b/tests/web_platform/CSS2/normal_flow/data/min-width-001.json index 84fdfb5f6..2dff850f2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-001.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-002.json b/tests/web_platform/CSS2/normal_flow/data/min-width-002.json index 0905d5152..2a3fb7a77 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-002.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-003.json b/tests/web_platform/CSS2/normal_flow/data/min-width-003.json index b098e4d7d..17ca09e1d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-003.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-004.json b/tests/web_platform/CSS2/normal_flow/data/min-width-004.json index f650d02e5..265c99c8c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-004.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-005.json b/tests/web_platform/CSS2/normal_flow/data/min-width-005.json index ec83cb7e7..f6e604253 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-005.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-006.json b/tests/web_platform/CSS2/normal_flow/data/min-width-006.json index 0c3cf299e..653dd7b16 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-006.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-007.json b/tests/web_platform/CSS2/normal_flow/data/min-width-007.json index 2f5f01c66..2ba2a539c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-007.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-012.json b/tests/web_platform/CSS2/normal_flow/data/min-width-012.json index ed42bf31c..89eca6e25 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-012.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-013.json b/tests/web_platform/CSS2/normal_flow/data/min-width-013.json index a9b940b42..c623f8218 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-013.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-014.json b/tests/web_platform/CSS2/normal_flow/data/min-width-014.json index f6cf77ced..7a52bd39c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-014.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-015.json b/tests/web_platform/CSS2/normal_flow/data/min-width-015.json index 7b3ca2d66..9f1822f60 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-015.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-016.json b/tests/web_platform/CSS2/normal_flow/data/min-width-016.json index 86cf89de0..3548339a5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-016.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-017.json b/tests/web_platform/CSS2/normal_flow/data/min-width-017.json index 39a8a5cf9..8dffb42af 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-017.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-017.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-018.json b/tests/web_platform/CSS2/normal_flow/data/min-width-018.json index 6ceaa9e37..039595f16 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-018.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-018.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-023.json b/tests/web_platform/CSS2/normal_flow/data/min-width-023.json index 739dc80a7..09f7c9360 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-023.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-023.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-024.json b/tests/web_platform/CSS2/normal_flow/data/min-width-024.json index fb6eb6398..8ab231188 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-024.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-024.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-025.json b/tests/web_platform/CSS2/normal_flow/data/min-width-025.json index ebb9ec97f..b9d2b48ca 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-025.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-025.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-026.json b/tests/web_platform/CSS2/normal_flow/data/min-width-026.json index be4352938..95298d736 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-026.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-026.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-027.json b/tests/web_platform/CSS2/normal_flow/data/min-width-027.json index a3f854848..ac3968604 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-027.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-027.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-028.json b/tests/web_platform/CSS2/normal_flow/data/min-width-028.json index 803c6ba05..74691499c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-028.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-028.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-029.json b/tests/web_platform/CSS2/normal_flow/data/min-width-029.json index 511330778..4dcd691e5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-029.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-029.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-034.json b/tests/web_platform/CSS2/normal_flow/data/min-width-034.json index 4b8872fa5..46f58f751 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-034.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-034.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-035.json b/tests/web_platform/CSS2/normal_flow/data/min-width-035.json index 3b23353fc..3abc7d15c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-035.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-035.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-036.json b/tests/web_platform/CSS2/normal_flow/data/min-width-036.json index 5d18626c5..c11f5bd51 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-036.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-036.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-037.json b/tests/web_platform/CSS2/normal_flow/data/min-width-037.json index 47d00ce14..f68f2ae20 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-037.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-037.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-038.json b/tests/web_platform/CSS2/normal_flow/data/min-width-038.json index 680fdfcda..a789ef0cc 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-038.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-038.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-039.json b/tests/web_platform/CSS2/normal_flow/data/min-width-039.json index e51b3327c..7862ff9a1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-039.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-039.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-040.json b/tests/web_platform/CSS2/normal_flow/data/min-width-040.json index b338234b3..ef197cb5e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-040.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-040.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-045.json b/tests/web_platform/CSS2/normal_flow/data/min-width-045.json index 1c0f4de38..c39aafbd3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-045.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-045.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-046.json b/tests/web_platform/CSS2/normal_flow/data/min-width-046.json index 55cd1de45..18b8ed0e8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-046.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-046.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-047.json b/tests/web_platform/CSS2/normal_flow/data/min-width-047.json index 96398c011..cbc6d43ae 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-047.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-047.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-048.json b/tests/web_platform/CSS2/normal_flow/data/min-width-048.json index 4db8fe2d8..2e21d7ccf 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-048.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-048.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-049.json b/tests/web_platform/CSS2/normal_flow/data/min-width-049.json index 5a0753363..c27c2b8a5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-049.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-049.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-050.json b/tests/web_platform/CSS2/normal_flow/data/min-width-050.json index a62d799fd..63a5f8009 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-050.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-050.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-051.json b/tests/web_platform/CSS2/normal_flow/data/min-width-051.json index 21d2e4101..5fac34e18 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-051.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-051.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-056.json b/tests/web_platform/CSS2/normal_flow/data/min-width-056.json index 1dcfae687..41ffc56f1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-056.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-056.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-057.json b/tests/web_platform/CSS2/normal_flow/data/min-width-057.json index 4d7ba564d..c0ee4cf36 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-057.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-057.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-058.json b/tests/web_platform/CSS2/normal_flow/data/min-width-058.json index c4e38095c..84a588a82 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-058.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-058.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-059.json b/tests/web_platform/CSS2/normal_flow/data/min-width-059.json index a593f6786..3f43b3b67 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-059.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-059.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-060.json b/tests/web_platform/CSS2/normal_flow/data/min-width-060.json index b431052f0..09b17f451 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-060.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-060.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-061.json b/tests/web_platform/CSS2/normal_flow/data/min-width-061.json index 52781339f..43dc17af8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-061.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-061.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-062.json b/tests/web_platform/CSS2/normal_flow/data/min-width-062.json index 6da057b1a..9427865a1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-062.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-062.json @@ -50,4 +50,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-067.json b/tests/web_platform/CSS2/normal_flow/data/min-width-067.json index 3cd7d8f6a..fdcd18115 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-067.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-067.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-068.json b/tests/web_platform/CSS2/normal_flow/data/min-width-068.json index 65b6fe3fb..43f401f1b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-068.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-068.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-069.json b/tests/web_platform/CSS2/normal_flow/data/min-width-069.json index 8ef3b33ed..4bd85e265 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-069.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-069.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-070.json b/tests/web_platform/CSS2/normal_flow/data/min-width-070.json index f4e869f70..6062fdcdd 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-070.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-070.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-071.json b/tests/web_platform/CSS2/normal_flow/data/min-width-071.json index 705c4b1d7..8e757e799 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-071.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-071.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-072.json b/tests/web_platform/CSS2/normal_flow/data/min-width-072.json index 8d923f859..79496cd14 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-072.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-072.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-073.json b/tests/web_platform/CSS2/normal_flow/data/min-width-073.json index 0af76d536..a14b52419 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-073.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-073.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-078.json b/tests/web_platform/CSS2/normal_flow/data/min-width-078.json index 64a695034..597f221ba 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-078.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-078.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-079.json b/tests/web_platform/CSS2/normal_flow/data/min-width-079.json index 0a96b1e99..3c6fd9941 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-079.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-079.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-080.json b/tests/web_platform/CSS2/normal_flow/data/min-width-080.json index 56e074caf..e11e003d9 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-080.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-080.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-081.json b/tests/web_platform/CSS2/normal_flow/data/min-width-081.json index 337fc8e37..3f6fcf663 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-081.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-081.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-082.json b/tests/web_platform/CSS2/normal_flow/data/min-width-082.json index e77e81e9a..d7c1bd01e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-082.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-082.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-083.json b/tests/web_platform/CSS2/normal_flow/data/min-width-083.json index f42006a59..8f7ed5f5b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-083.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-083.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-084.json b/tests/web_platform/CSS2/normal_flow/data/min-width-084.json index b89225f4a..d8752f865 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-084.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-084.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-089.json b/tests/web_platform/CSS2/normal_flow/data/min-width-089.json index 474f0ee60..84856b003 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-089.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-089.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-090.json b/tests/web_platform/CSS2/normal_flow/data/min-width-090.json index 1f512f1f8..b046f2a3c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-090.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-090.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-091.json b/tests/web_platform/CSS2/normal_flow/data/min-width-091.json index 18a47c9cc..3f26a99f5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-091.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-091.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-092.json b/tests/web_platform/CSS2/normal_flow/data/min-width-092.json index 6d7fc1517..a593510b5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-092.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-092.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-093.json b/tests/web_platform/CSS2/normal_flow/data/min-width-093.json index a2b736a61..2a424b0c5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-093.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-093.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-094.json b/tests/web_platform/CSS2/normal_flow/data/min-width-094.json index 43944082c..f6d4125c1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-094.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-094.json @@ -60,4 +60,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-095.json b/tests/web_platform/CSS2/normal_flow/data/min-width-095.json index e2b628a03..420a8adb3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-095.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-095.json @@ -60,4 +60,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-100.json b/tests/web_platform/CSS2/normal_flow/data/min-width-100.json index a3ef2c4e0..311aaeff7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-100.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-100.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-101.json b/tests/web_platform/CSS2/normal_flow/data/min-width-101.json index 5e8db77f0..0e3015840 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-101.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-101.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-102.json b/tests/web_platform/CSS2/normal_flow/data/min-width-102.json index 9f3d1c961..e36b5c30d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-102.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-102.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-103.json b/tests/web_platform/CSS2/normal_flow/data/min-width-103.json index 8e728d465..94064795f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-103.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-103.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-001.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-001.json index 2a6b3cdd3..03a334e7c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-001.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-002.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-002.json index 7ddcf0839..d84fc93ba 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-002.json @@ -90,4 +90,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-003.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-003.json index 6714a6b9f..110f94e91 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-003.json @@ -90,4 +90,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-004.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-004.json index a8e12e483..1d2df6f07 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-004.json @@ -83,4 +83,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-005.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-005.json index 61889ecca..235714c0a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-005.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-006.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-006.json index 143598604..2187c65d2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-006.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-007.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-007.json index 0298a7b35..01cfd3084 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-007.json @@ -56,4 +56,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-008.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-008.json index 809208f27..685ba53d2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-008.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-008.json @@ -40,4 +40,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-009.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-009.json index 3b472621b..2ecc44b63 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-009.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-009.json @@ -46,4 +46,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-010.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-010.json index 17e40cf74..2d5988cf2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-010.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-010.json @@ -48,4 +48,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-012.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-012.json index 8a9ee1e87..ce4ded6de 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-012.json @@ -64,4 +64,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-013.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-013.json index 1bccf7482..78ca48bf1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-013.json @@ -56,4 +56,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-014.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-014.json index 1c2db10ec..a0f5be1b2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-014.json @@ -56,4 +56,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-015.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-015.json index adaf6c9dc..b87ef316b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-015.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width", "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-016.json b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-016.json index dce2eb50b..fd1dc7641 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-applies-to-016.json @@ -39,4 +39,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-percentage-001.json b/tests/web_platform/CSS2/normal_flow/data/min-width-percentage-001.json index 760d8e64f..cb7e8a368 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-percentage-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-percentage-001.json @@ -67,4 +67,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-percentage-002.json b/tests/web_platform/CSS2/normal_flow/data/min-width-percentage-002.json index fc2e53ff4..bbb5df986 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-percentage-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-percentage-002.json @@ -51,4 +51,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/min-width-percentage-003.json b/tests/web_platform/CSS2/normal_flow/data/min-width-percentage-003.json index 77d93cfb3..6bdb17e0c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/min-width-percentage-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/min-width-percentage-003.json @@ -43,4 +43,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/replaced-elements-001.json b/tests/web_platform/CSS2/normal_flow/data/replaced-elements-001.json index 334f98623..faa28f5e4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/replaced-elements-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/replaced-elements-001.json @@ -80,4 +80,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#block-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-001.json b/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-001.json index 241867e17..cef6790ad 100644 --- a/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-001.json @@ -103,4 +103,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-002.json b/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-002.json index 2dbb6e5fe..421141fa2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-002.json @@ -43,4 +43,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-003.json b/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-003.json index 851c9c4ae..209d12e21 100644 --- a/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-003.json @@ -114,4 +114,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-004.json b/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-004.json index bdbb61a5b..fef76f9cf 100644 --- a/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-004.json @@ -92,4 +92,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-005.json b/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-005.json index c0c107579..62b224de3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/replaced-intrinsic-005.json @@ -91,4 +91,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/root-box-001.json b/tests/web_platform/CSS2/normal_flow/data/root-box-001.json index 26ab44cd3..6c45a841d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/root-box-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/root-box-001.json @@ -96,4 +96,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#Computing_heights_and_margins" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/table-in-inline-001.json b/tests/web_platform/CSS2/normal_flow/data/table-in-inline-001.json index 77a8936aa..c029ebef3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/table-in-inline-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/table-in-inline-001.json @@ -53,4 +53,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-001.json b/tests/web_platform/CSS2/normal_flow/data/width-001.json index c7809a989..83f4cc39e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-001.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-002.json b/tests/web_platform/CSS2/normal_flow/data/width-002.json index f8ab3a395..8a7268384 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-002.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-003.json b/tests/web_platform/CSS2/normal_flow/data/width-003.json index 50d070693..fd9206b01 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-003.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-004.json b/tests/web_platform/CSS2/normal_flow/data/width-004.json index ae9541270..86e79194d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-004.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-005.json b/tests/web_platform/CSS2/normal_flow/data/width-005.json index 4451fd26a..0be152cef 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-005.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-006.json b/tests/web_platform/CSS2/normal_flow/data/width-006.json index 88930b660..becf0df23 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-006.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-007.json b/tests/web_platform/CSS2/normal_flow/data/width-007.json index 07220de2e..cce58b000 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-007.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-012.json b/tests/web_platform/CSS2/normal_flow/data/width-012.json index 2476d67f6..45bef03ae 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-012.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-013.json b/tests/web_platform/CSS2/normal_flow/data/width-013.json index 7a1b28cf7..9598a7c08 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-013.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-014.json b/tests/web_platform/CSS2/normal_flow/data/width-014.json index 30d3c708f..7c6a1bdea 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-014.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-015.json b/tests/web_platform/CSS2/normal_flow/data/width-015.json index f7ed1fdc8..897ea79a7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-015.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-016.json b/tests/web_platform/CSS2/normal_flow/data/width-016.json index 1e325daa4..29db3a161 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-016.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-017.json b/tests/web_platform/CSS2/normal_flow/data/width-017.json index aed89e655..864c9435a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-017.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-017.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-018.json b/tests/web_platform/CSS2/normal_flow/data/width-018.json index 1dede4d03..a68448a7f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-018.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-018.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-023.json b/tests/web_platform/CSS2/normal_flow/data/width-023.json index b5c6eac2f..b54a7a3dd 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-023.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-023.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-024.json b/tests/web_platform/CSS2/normal_flow/data/width-024.json index ad2a2d063..4481ced2b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-024.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-024.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-025.json b/tests/web_platform/CSS2/normal_flow/data/width-025.json index f41a20473..ff6a96690 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-025.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-025.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-026.json b/tests/web_platform/CSS2/normal_flow/data/width-026.json index 9609ded2a..7f8871cb2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-026.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-026.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-027.json b/tests/web_platform/CSS2/normal_flow/data/width-027.json index b21cfda1a..b6554aa96 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-027.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-027.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-028.json b/tests/web_platform/CSS2/normal_flow/data/width-028.json index 18bf2fe66..23039118a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-028.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-028.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-029.json b/tests/web_platform/CSS2/normal_flow/data/width-029.json index 0ac84c6c9..308d726f7 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-029.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-029.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-034.json b/tests/web_platform/CSS2/normal_flow/data/width-034.json index 9c3e810f5..b9fab867d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-034.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-034.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-035.json b/tests/web_platform/CSS2/normal_flow/data/width-035.json index 321e77e74..3cebb5f99 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-035.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-035.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-036.json b/tests/web_platform/CSS2/normal_flow/data/width-036.json index fd357b685..0b02d9280 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-036.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-036.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-037.json b/tests/web_platform/CSS2/normal_flow/data/width-037.json index d7f9a6efc..6c566785b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-037.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-037.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-038.json b/tests/web_platform/CSS2/normal_flow/data/width-038.json index 18a897758..6b5ae921f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-038.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-038.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-039.json b/tests/web_platform/CSS2/normal_flow/data/width-039.json index da23c47cc..9fc000905 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-039.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-039.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-040.json b/tests/web_platform/CSS2/normal_flow/data/width-040.json index 21845cd9d..5ec9a1967 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-040.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-040.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-045.json b/tests/web_platform/CSS2/normal_flow/data/width-045.json index 140100748..6a482961d 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-045.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-045.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-046.json b/tests/web_platform/CSS2/normal_flow/data/width-046.json index accfd13f0..c5d70c333 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-046.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-046.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-047.json b/tests/web_platform/CSS2/normal_flow/data/width-047.json index a7d961b16..ada847ccf 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-047.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-047.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-048.json b/tests/web_platform/CSS2/normal_flow/data/width-048.json index f9dcf43f7..267e39638 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-048.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-048.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-049.json b/tests/web_platform/CSS2/normal_flow/data/width-049.json index 88c7d7573..38e51d17e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-049.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-049.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-050.json b/tests/web_platform/CSS2/normal_flow/data/width-050.json index 647b01d2e..79849be6c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-050.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-050.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-051.json b/tests/web_platform/CSS2/normal_flow/data/width-051.json index 827e56e26..fecae382c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-051.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-051.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-056.json b/tests/web_platform/CSS2/normal_flow/data/width-056.json index d35440727..99235ea7e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-056.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-056.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-057.json b/tests/web_platform/CSS2/normal_flow/data/width-057.json index c76012b61..aa298ace2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-057.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-057.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-058.json b/tests/web_platform/CSS2/normal_flow/data/width-058.json index 57757a818..8690d8b6c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-058.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-058.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-059.json b/tests/web_platform/CSS2/normal_flow/data/width-059.json index 5cc66c7a5..418a5447c 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-059.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-059.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-060.json b/tests/web_platform/CSS2/normal_flow/data/width-060.json index 7a9fd61ed..543beb7e6 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-060.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-060.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-061.json b/tests/web_platform/CSS2/normal_flow/data/width-061.json index 23d03a0f2..0c4074718 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-061.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-061.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-062.json b/tests/web_platform/CSS2/normal_flow/data/width-062.json index 64c9501f9..0e8f8cea1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-062.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-062.json @@ -49,4 +49,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-067.json b/tests/web_platform/CSS2/normal_flow/data/width-067.json index 19906e152..632c07a06 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-067.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-067.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-068.json b/tests/web_platform/CSS2/normal_flow/data/width-068.json index eaadcfbdb..82232a1da 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-068.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-068.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-069.json b/tests/web_platform/CSS2/normal_flow/data/width-069.json index a10574796..8fa129b2b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-069.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-069.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-070.json b/tests/web_platform/CSS2/normal_flow/data/width-070.json index 33375b91f..154ebc1cb 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-070.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-070.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-071.json b/tests/web_platform/CSS2/normal_flow/data/width-071.json index 8182f7b91..68ebaaff1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-071.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-071.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-072.json b/tests/web_platform/CSS2/normal_flow/data/width-072.json index b1f506895..6aad05f97 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-072.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-072.json @@ -61,4 +61,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-073.json b/tests/web_platform/CSS2/normal_flow/data/width-073.json index d70d6193d..17effeb83 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-073.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-073.json @@ -61,4 +61,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-078.json b/tests/web_platform/CSS2/normal_flow/data/width-078.json index 997f32c8f..1fc52d673 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-078.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-078.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-079.json b/tests/web_platform/CSS2/normal_flow/data/width-079.json index 457440385..2f89d67e8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-079.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-079.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-080.json b/tests/web_platform/CSS2/normal_flow/data/width-080.json index 8bac34e44..b7a753c34 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-080.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-080.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-081.json b/tests/web_platform/CSS2/normal_flow/data/width-081.json index c2f4a231c..714b45cf8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-081.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-081.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-082.json b/tests/web_platform/CSS2/normal_flow/data/width-082.json index db1bda6a6..4485594c1 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-082.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-082.json @@ -43,4 +43,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-083.json b/tests/web_platform/CSS2/normal_flow/data/width-083.json index 3044da1b5..520fabb3b 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-083.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-083.json @@ -61,4 +61,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-084.json b/tests/web_platform/CSS2/normal_flow/data/width-084.json index 8c9b08e2c..51ec15fb2 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-084.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-084.json @@ -61,4 +61,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-089.json b/tests/web_platform/CSS2/normal_flow/data/width-089.json index ad9d98b38..051e64f2e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-089.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-089.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-090.json b/tests/web_platform/CSS2/normal_flow/data/width-090.json index ef31376cc..468698ee5 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-090.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-090.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-091.json b/tests/web_platform/CSS2/normal_flow/data/width-091.json index 69bc5714f..4bc6e1c80 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-091.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-091.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-092.json b/tests/web_platform/CSS2/normal_flow/data/width-092.json index f5952ed69..7c0c61710 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-092.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-092.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-093.json b/tests/web_platform/CSS2/normal_flow/data/width-093.json index 03426af31..2891800c3 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-093.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-093.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-094.json b/tests/web_platform/CSS2/normal_flow/data/width-094.json index d1f65c5a3..c44a77262 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-094.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-094.json @@ -59,4 +59,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-095.json b/tests/web_platform/CSS2/normal_flow/data/width-095.json index f5b61c3ef..db7e44668 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-095.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-095.json @@ -59,4 +59,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-100.json b/tests/web_platform/CSS2/normal_flow/data/width-100.json index de58ddd10..3751cb173 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-100.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-100.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-101.json b/tests/web_platform/CSS2/normal_flow/data/width-101.json index 52b1ffc93..2c6f15077 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-101.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-101.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-102.json b/tests/web_platform/CSS2/normal_flow/data/width-102.json index 23702eefb..cff0d4cb8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-102.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-102.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-103.json b/tests/web_platform/CSS2/normal_flow/data/width-103.json index 97479ecbf..bb6e77426 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-103.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-103.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-104.json b/tests/web_platform/CSS2/normal_flow/data/width-104.json index 6db5e379e..9cf50ec6f 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-104.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-104.json @@ -47,4 +47,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-001.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-001.json index 5e0fe1bb1..92760b247 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-001.json @@ -114,4 +114,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-002.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-002.json index 08d2d2d52..433047fd0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-002.json @@ -114,4 +114,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-003.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-003.json index 34666dfaa..3fdacbaf0 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-003.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-003.json @@ -114,4 +114,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-004.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-004.json index 165b0404a..7b906883a 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-004.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-004.json @@ -107,4 +107,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-005.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-005.json index e45ff06dd..618b33123 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-005.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-005.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-006.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-006.json index 4a2c77499..6e5ec1627 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-006.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-006.json @@ -155,4 +155,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-007.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-007.json index 702d5c448..d02a8b137 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-007.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-007.json @@ -145,4 +145,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-008.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-008.json index b25a65b2a..5e27a7071 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-008.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-008.json @@ -37,4 +37,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-009.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-009.json index 30543429b..56adbe7db 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-009.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-009.json @@ -45,4 +45,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-010.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-010.json index 18ded7817..0d3553f8e 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-010.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-010.json @@ -38,4 +38,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-012.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-012.json index d88e9d631..3f5df8413 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-012.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-012.json @@ -63,4 +63,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-013.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-013.json index 0789b8eed..ab48f0460 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-013.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-013.json @@ -104,4 +104,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-014.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-014.json index 044155d48..125dbcbca 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-014.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-014.json @@ -104,4 +104,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-015.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-015.json index 3807867f0..dff66df42 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-015.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-015.json @@ -62,4 +62,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-016.json b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-016.json index 849cb5a54..9e8423f06 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-applies-to-016.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-applies-to-016.json @@ -59,4 +59,4 @@ "http://www.w3.org/TR/CSS21/visudet.html#propdef-width", "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-inherit-001.json b/tests/web_platform/CSS2/normal_flow/data/width-inherit-001.json index 4834fbfd3..3b8efd5aa 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-inherit-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-inherit-001.json @@ -71,4 +71,4 @@ "help": [ "http://www.w3.org/TR/CSS21/generate.html#list-style" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-non-replaced-inline-001.json b/tests/web_platform/CSS2/normal_flow/data/width-non-replaced-inline-001.json index 8470baa97..d821dd649 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-non-replaced-inline-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-non-replaced-inline-001.json @@ -37,4 +37,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-percentage-001.json b/tests/web_platform/CSS2/normal_flow/data/width-percentage-001.json index 4a918f0e7..88b9685c8 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-percentage-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-percentage-001.json @@ -48,4 +48,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-percentage-002.json b/tests/web_platform/CSS2/normal_flow/data/width-percentage-002.json index 98f4c627f..e2b583fe4 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-percentage-002.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-percentage-002.json @@ -86,4 +86,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-replaced-element-001.json b/tests/web_platform/CSS2/normal_flow/data/width-replaced-element-001.json index c6c5c39fe..369010fbc 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-replaced-element-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-replaced-element-001.json @@ -56,4 +56,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/data/width-undefined-001.json b/tests/web_platform/CSS2/normal_flow/data/width-undefined-001.json index 4691b2ddc..4f7aa1b15 100644 --- a/tests/web_platform/CSS2/normal_flow/data/width-undefined-001.json +++ b/tests/web_platform/CSS2/normal_flow/data/width-undefined-001.json @@ -53,4 +53,4 @@ "help": [ "http://www.w3.org/TR/CSS21/visudet.html#the-width-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-context-height-001.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-context-height-001.json index 3ee0ce223..ae0f64eb8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-context-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-context-height-001.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-context-height-002.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-context-height-002.json index 9cd79f19e..99ac3718b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-context-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-context-height-002.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-context-height-003.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-context-height-003.json index d28ece68c..86a841d23 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-context-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-context-height-003.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-001.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-001.json index 4c3ffa251..028b13feb 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-001.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-003.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-003.json index 8ba77a2c4..c966ab27f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-003.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-004.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-004.json index 3593a6085..61981e9bc 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-004.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-005.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-005.json index 4f7b7e342..6200d3b65 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-005.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-006.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-006.json index 08604f1c9..2c5f14285 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-006.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-007.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-007.json index 192e0adf1..c146328db 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-007.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-008.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-008.json index 599a27b5c..4d00e521e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-008.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-008.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-009.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-009.json index 707705cf8..ab6e5c47b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-009.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-009.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-010.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-010.json index 050edd301..4b3a6d215 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-010.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-010.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-011.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-011.json index 78d92214d..c42ec3ccb 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-011.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-011.json @@ -188,4 +188,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-012.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-012.json index c9d4c77fa..6cdd82d87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-012.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-013.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-013.json index 131c1c314..1f8e980e8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-013.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-014.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-014.json index 131c1c314..1f8e980e8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-014.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-015.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-015.json index 131c1c314..1f8e980e8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-015.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-016.json b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-016.json index 861ac2b19..e09154282 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-formatting-contexts-016.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-001.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-001.json index 037583fa6..b1172cea0 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-001.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-002-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-002-nosplit-ref.json index d72514822..11ad5d185 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-002-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-002-nosplit-ref.json @@ -570,4 +570,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-002-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-002-ref.json index 5780be3b9..71368e1f1 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-002-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-002-ref.json @@ -297,4 +297,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-002.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-002.json index 91fda7f7e..910193302 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-append-002.json @@ -297,4 +297,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-001.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-001.json index cdeb0345a..f636fdbda 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-001.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-002.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-002.json index 245b352fb..e2b7bcb23 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-002.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-003.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-003.json index f6a847b39..2568cc9aa 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-003.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-004.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-004.json index 7991e97ba..06d53f993 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-empty-004.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-float-between-001.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-float-between-001.json index 1ee61f57b..0471c6dce 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-float-between-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-float-between-001.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001-nosplit-ref.json index 097e23fd2..6d766239e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001-nosplit-ref.json @@ -809,4 +809,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001-ref.json index 24c5dc636..bc943e73e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001-ref.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001a.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001a.json index 5a5f1c35d..295ae43ae 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001a.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001a.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001b.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001b.json index 48698fd6f..7efc328fd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001b.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001b.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001c.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001c.json index 045038db1..eb7db9568 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001c.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001c.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001d.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001d.json index 6a4dd6bdf..fbdc86219 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001d.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001d.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001e.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001e.json index de81a666f..96ddb094d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001e.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001e.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001f.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001f.json index e32a1139a..d419aeb6f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001f.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001f.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001g.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001g.json index a25b30043..50a78047c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001g.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001g.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001h.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001h.json index 7559a6baf..ef9159281 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001h.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001h.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001i.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001i.json index 1d6a1e4ab..b24ec3ca2 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001i.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001i.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001j.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001j.json index 23ea788cc..e97692127 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001j.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001j.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001k.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001k.json index 59c9f5d40..a3a98133a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001k.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001k.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001l.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001l.json index 59c9f5d40..a3a98133a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001l.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-001l.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002-nosplit-ref.json index 7760034c6..99d299646 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002-nosplit-ref.json @@ -663,4 +663,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002-ref.json index 52cb38737..7bd060ca3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002-ref.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002a.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002a.json index f34dcaffa..698a70253 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002a.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002a.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002b.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002b.json index cf4190977..955c291d5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002b.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002b.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002c.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002c.json index 3e6c11041..366d37c51 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002c.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002c.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002d.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002d.json index 7f6dc0fee..32eeeb10b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002d.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002d.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002e.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002e.json index e9670f924..3fb774832 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002e.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002e.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002f.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002f.json index f51faac2f..f64f2c031 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002f.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002f.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002g.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002g.json index fe909f77f..bf35750dc 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002g.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002g.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002h.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002h.json index fda4132ce..c787038be 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002h.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002h.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002i.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002i.json index fda4132ce..c787038be 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002i.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-002i.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-003-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-003-nosplit-ref.json index b793d995c..c29981679 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-003-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-003-nosplit-ref.json @@ -713,4 +713,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-003-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-003-ref.json index 995af6697..06f0b459e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-003-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-003-ref.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-003.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-003.json index c1164d451..bf96ebd90 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-003.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-004-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-004-nosplit-ref.json index 6b143d4ae..7cf3a2553 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-004-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-004-nosplit-ref.json @@ -761,4 +761,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-004-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-004-ref.json index b25f9bf47..e6e3f30f3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-004-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-004-ref.json @@ -573,4 +573,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-004.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-004.json index ffbf8c3fd..d9f30bf02 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-004.json @@ -573,4 +573,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-006-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-006-nosplit-ref.json index 7d9feeda6..c42f2c016 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-006-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-006-nosplit-ref.json @@ -279,4 +279,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-006-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-006-ref.json index ddeb82bb8..85aeeb799 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-006-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-006-ref.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-006.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-006.json index 3e58a43d8..73e87f642 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-006.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-007-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-007-nosplit-ref.json index 50c00de52..d6c8acfa3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-007-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-007-nosplit-ref.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-007-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-007-ref.json index ca37124cb..b64f31db5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-007-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-007-ref.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-007.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-007.json index f8c85e6ad..4aabb4d57 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-007.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008-nosplit-ref.json index e3aaabccc..437ad50a0 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008-nosplit-ref.json @@ -429,4 +429,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008-ref.json index febd7d1ef..7776b65cd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008-ref.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008a.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008a.json index 9aa39ca81..952ceffb1 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008a.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008a.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008b.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008b.json index 8fa23224c..a05641b7c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008b.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008b.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008c.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008c.json index 9e497d20f..2747d9593 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008c.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-008c.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-009-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-009-nosplit-ref.json index e2f5f2044..9ac13e255 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-009-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-009-nosplit-ref.json @@ -953,4 +953,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-009-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-009-ref.json index 75a99c285..ece4a6e38 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-009-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-009-ref.json @@ -573,4 +573,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-009.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-009.json index 0867386cf..64682123c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-009.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-009.json @@ -573,4 +573,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-010-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-010-nosplit-ref.json index 3439e7d30..dde6ce3ab 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-010-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-010-nosplit-ref.json @@ -1001,4 +1001,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-010-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-010-ref.json index 5b3f488ec..b06b2d801 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-010-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-010-ref.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-010.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-010.json index 0867386cf..64682123c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-010.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-010.json @@ -573,4 +573,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-011-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-011-nosplit-ref.json index bdac0ea86..2b46ffc4a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-011-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-011-nosplit-ref.json @@ -1047,4 +1047,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-011-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-011-ref.json index b7d39caf1..bd7ea97c3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-011-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-011-ref.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-011.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-011.json index 93a608e5d..56a17198f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-011.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-011.json @@ -621,4 +621,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-012-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-012-nosplit-ref.json index 3eb2bad17..1765c722b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-012-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-012-nosplit-ref.json @@ -281,4 +281,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-012-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-012-ref.json index 22915b5af..b98ceb98b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-012-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-012-ref.json @@ -196,4 +196,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-012.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-012.json index 72f92f067..821140a7a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-012.json @@ -148,4 +148,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-013-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-013-nosplit-ref.json index 95a2b2ead..6d2c187a3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-013-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-013-nosplit-ref.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-013-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-013-ref.json index 0eede8fad..ac5f2f0b8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-013-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-013-ref.json @@ -148,4 +148,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-013.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-013.json index 7639e6a4f..142390389 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-013.json @@ -100,4 +100,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-014-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-014-nosplit-ref.json index cc7543700..0d4b2df2b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-014-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-014-nosplit-ref.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-014-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-014-ref.json index f8308e074..1b16b1414 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-014-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-014-ref.json @@ -148,4 +148,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-014.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-014.json index 7639e6a4f..142390389 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-014.json @@ -100,4 +100,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-015-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-015-nosplit-ref.json index 18e003a2b..49d9d8700 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-015-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-015-nosplit-ref.json @@ -281,4 +281,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-015-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-015-ref.json index 40ef1d24a..b6869e540 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-015-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-015-ref.json @@ -196,4 +196,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-015.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-015.json index a4d596945..12ef7b45f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-015.json @@ -148,4 +148,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016-nosplit-ref.json index 57b76f8d9..d07605339 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016-nosplit-ref.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016-ref.json index 14cb16f2c..26d76cc42 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016-ref.json @@ -148,4 +148,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016a.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016a.json index 6e0915cb4..c4f5111f0 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016a.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016a.json @@ -100,4 +100,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016b.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016b.json index 819cb6b22..665b84c20 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016b.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-016b.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-017.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-017.json index b697becf3..edd9e7fa9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-017.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-insert-017.json @@ -199,4 +199,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-001a.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-001a.json index a1394d943..6b5343095 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-001a.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-001a.json @@ -188,4 +188,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-001b.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-001b.json index c969065aa..c47fd8ffb 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-001b.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-001b.json @@ -188,4 +188,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-002a.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-002a.json index c969065aa..c47fd8ffb 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-002a.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-002a.json @@ -188,4 +188,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-002b.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-002b.json index a1394d943..6b5343095 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-002b.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-margins-002b.json @@ -188,4 +188,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-nested-001.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-nested-001.json index 987286214..68773d920 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-nested-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-nested-001.json @@ -217,4 +217,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-nested-002.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-nested-002.json index 3711269af..e50b7a662 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-nested-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-nested-002.json @@ -203,4 +203,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-percents-001.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-percents-001.json index 76a99dc61..7e01582d8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-percents-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-percents-001.json @@ -140,4 +140,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-000.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-000.json index 88475b4f7..261a77216 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-000.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-000.json @@ -59,4 +59,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-001-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-001-nosplit-ref.json index a9a5fc77f..2ecc9ddfe 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-001-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-001-nosplit-ref.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-001-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-001-ref.json index ec4b3de81..184e92fb2 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-001-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-001-ref.json @@ -148,4 +148,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-001.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-001.json index 0610ecbd8..dffaff16d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-001.json @@ -148,4 +148,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-002.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-002.json index ec22f4a9c..e43b70e8e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-002.json @@ -107,4 +107,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-003-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-003-nosplit-ref.json index 35ad2bd04..f78799be1 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-003-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-003-nosplit-ref.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-003-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-003-ref.json index 9ef6a0db4..12037b512 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-003-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-003-ref.json @@ -148,4 +148,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-003.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-003.json index 9ef6a0db4..12037b512 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-003.json @@ -148,4 +148,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-004-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-004-nosplit-ref.json index c9c14d842..4344e65e0 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-004-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-004-nosplit-ref.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-004-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-004-ref.json index 511df2a18..e81e5be4c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-004-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-004-ref.json @@ -155,4 +155,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-004.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-004.json index 9463acf7d..7da92fc7d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-004.json @@ -114,4 +114,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-005-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-005-nosplit-ref.json index b7374702a..db476ea89 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-005-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-005-nosplit-ref.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-005-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-005-ref.json index 5747ce35f..57a4e280b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-005-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-005-ref.json @@ -155,4 +155,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-005.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-005.json index 501ef5190..acae7ebcb 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-005.json @@ -162,4 +162,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-006-nosplit-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-006-nosplit-ref.json index 81d31adac..f565d2c0a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-006-nosplit-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-006-nosplit-ref.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-006-ref.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-006-ref.json index 6844a9727..562bca374 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-006-ref.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-006-ref.json @@ -203,4 +203,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-006.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-006.json index 35f8cfe76..c390eddff 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-remove-006.json @@ -203,4 +203,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-whitespace-001a.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-whitespace-001a.json index ddeb82bb8..85aeeb799 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-whitespace-001a.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-whitespace-001a.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-whitespace-001b.json b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-whitespace-001b.json index 5fd4fc954..8855e576f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-whitespace-001b.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-in-inline-whitespace-001b.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-001.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-001.json index ceb73e712..ca994ab64 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-001.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-002.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-002.json index ceb73e712..ca994ab64 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-002.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-003.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-003.json index 54c8c6348..e4d8724ed 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-003.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-004.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-004.json index 54c8c6348..e4d8724ed 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-004.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-005.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-005.json index 9e14a333a..7137674f4 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-005.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-006.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-006.json index 9e14a333a..7137674f4 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-006.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-007.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-007.json index 8215a7450..262360855 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-007.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-008.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-008.json index fc8684375..c52761536 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-008.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-008.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-009.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-009.json index fad50fd01..78b851f5f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-009.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-009.json @@ -279,4 +279,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-010.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-010.json index fad50fd01..78b851f5f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-010.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-010.json @@ -279,4 +279,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-011.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-011.json index 9889d6d15..3c94c1b65 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-011.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-011.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-012.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-012.json index 196600181..a16637a81 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-012.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-013.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-013.json index 9889d6d15..3c94c1b65 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-013.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-014.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-014.json index 9889d6d15..3c94c1b65 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-014.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-015.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-015.json index 8edf77f76..a66058954 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-015.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-016.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-016.json index 8edf77f76..a66058954 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-height-016.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-001.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-001.json index d577c3368..50fc52483 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-002.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-002.json index 342604465..f20cf6ef8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-002.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-003.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-003.json index eb6a61b61..207e9aa00 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-003.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-004.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-004.json index 8c5b5a761..0522b14c6 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-004.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-005.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-005.json index 4d917468f..3b9cab149 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-005.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-006.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-006.json index 95c01390f..8cb6e9839 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-006.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-007.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-007.json index 30cd8b58d..9635cef22 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-007.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-008.json b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-008.json index 57c7d349a..65cea4825 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-008.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-non-replaced-width-008.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-001.json b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-001.json index 4b0f8093b..646cee6e8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-001.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-002.json b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-002.json index 310dbec0d..027791ef7 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-002.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-003.json b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-003.json index 6ac235a07..ce537b4b3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-003.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-004.json b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-004.json index 3bba1e60b..cffd87771 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-004.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-005.json b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-005.json index f37f07ec7..71b46909d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-005.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-006.json b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-006.json index 1622c412d..9cfdedf84 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-006.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-007.json b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-007.json index 1483688d7..fdd2071cc 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-height-007.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-001.json b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-001.json index 800be3554..5056abb9f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-001.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-002.json b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-002.json index ef81f0da4..55fba2846 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-002.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-003.json b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-003.json index c136d233e..78d788d10 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-003.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-004.json b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-004.json index c9285648e..40560f3be 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-004.json @@ -281,4 +281,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-006.json b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-006.json index 747a0ae62..b211d23f5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/block-replaced-width-006.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-011.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-011.json index 1a469dce3..fe8cfd96e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-011.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-011.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-012.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-012.json index b1c2e2213..8c00d67b6 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-012.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-013.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-013.json index 3afb22e42..3c9e54b4d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-013.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-014.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-014.json index 50af70433..d4652426f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-014.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-015.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-015.json index df6d3903a..e2e6addb2 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-015.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-016.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-016.json index e3b878675..b5a69ccbe 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-016.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-017.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-017.json index 4170592f5..799a33eb8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-017.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-017.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-018.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-018.json index 2c834229b..b51fed128 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-018.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-018.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-019.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-019.json index 961d6549a..5c73c4892 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-019.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-019.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-020.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-020.json index 3e7967b6b..a98731df2 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-020.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-020.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-021.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-021.json index 9293d01ef..25b8ddd81 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-021.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-021.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-022.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-022.json index 3e7967b6b..a98731df2 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-022.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-022.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-025.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-025.json index 130b40d29..7d8983fbd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-025.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-025.json @@ -749,4 +749,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/blocks-026.json b/tests/web_platform/CSS2/normal_flow/ref/blocks-026.json index 7e186d6a0..3ae2c4afa 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/blocks-026.json +++ b/tests/web_platform/CSS2/normal_flow/ref/blocks-026.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-001.json b/tests/web_platform/CSS2/normal_flow/ref/height-001.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-001.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-002.json b/tests/web_platform/CSS2/normal_flow/ref/height-002.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-002.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-003.json b/tests/web_platform/CSS2/normal_flow/ref/height-003.json index f88359ee3..09b9fae38 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-003.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-004.json b/tests/web_platform/CSS2/normal_flow/ref/height-004.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-004.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-005.json b/tests/web_platform/CSS2/normal_flow/ref/height-005.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-005.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-006.json b/tests/web_platform/CSS2/normal_flow/ref/height-006.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-006.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-007.json b/tests/web_platform/CSS2/normal_flow/ref/height-007.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-007.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-012.json b/tests/web_platform/CSS2/normal_flow/ref/height-012.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-012.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-013.json b/tests/web_platform/CSS2/normal_flow/ref/height-013.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-013.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-014.json b/tests/web_platform/CSS2/normal_flow/ref/height-014.json index fe7dbc2b6..4086bd74c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-014.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-015.json b/tests/web_platform/CSS2/normal_flow/ref/height-015.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-015.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-016.json b/tests/web_platform/CSS2/normal_flow/ref/height-016.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-016.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-017.json b/tests/web_platform/CSS2/normal_flow/ref/height-017.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-017.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-017.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-018.json b/tests/web_platform/CSS2/normal_flow/ref/height-018.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-018.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-018.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-023.json b/tests/web_platform/CSS2/normal_flow/ref/height-023.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-023.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-023.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-024.json b/tests/web_platform/CSS2/normal_flow/ref/height-024.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-024.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-024.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-025.json b/tests/web_platform/CSS2/normal_flow/ref/height-025.json index a951ff2c1..225bcc0e4 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-025.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-025.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-026.json b/tests/web_platform/CSS2/normal_flow/ref/height-026.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-026.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-026.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-027.json b/tests/web_platform/CSS2/normal_flow/ref/height-027.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-027.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-027.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-028.json b/tests/web_platform/CSS2/normal_flow/ref/height-028.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-028.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-028.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-029.json b/tests/web_platform/CSS2/normal_flow/ref/height-029.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-029.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-029.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-034.json b/tests/web_platform/CSS2/normal_flow/ref/height-034.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-034.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-034.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-035.json b/tests/web_platform/CSS2/normal_flow/ref/height-035.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-035.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-035.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-036.json b/tests/web_platform/CSS2/normal_flow/ref/height-036.json index 5bf52c328..b4f13d6e9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-036.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-036.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-037.json b/tests/web_platform/CSS2/normal_flow/ref/height-037.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-037.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-037.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-038.json b/tests/web_platform/CSS2/normal_flow/ref/height-038.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-038.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-038.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-039.json b/tests/web_platform/CSS2/normal_flow/ref/height-039.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-039.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-039.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-040.json b/tests/web_platform/CSS2/normal_flow/ref/height-040.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-040.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-040.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-045.json b/tests/web_platform/CSS2/normal_flow/ref/height-045.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-045.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-045.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-046.json b/tests/web_platform/CSS2/normal_flow/ref/height-046.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-046.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-046.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-047.json b/tests/web_platform/CSS2/normal_flow/ref/height-047.json index 30a5eb6ca..53445b548 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-047.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-047.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-048.json b/tests/web_platform/CSS2/normal_flow/ref/height-048.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-048.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-048.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-049.json b/tests/web_platform/CSS2/normal_flow/ref/height-049.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-049.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-049.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-050.json b/tests/web_platform/CSS2/normal_flow/ref/height-050.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-050.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-050.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-051.json b/tests/web_platform/CSS2/normal_flow/ref/height-051.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-051.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-051.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-056.json b/tests/web_platform/CSS2/normal_flow/ref/height-056.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-056.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-056.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-057.json b/tests/web_platform/CSS2/normal_flow/ref/height-057.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-057.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-057.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-058.json b/tests/web_platform/CSS2/normal_flow/ref/height-058.json index 2c5034659..80cff5a72 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-058.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-058.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-059.json b/tests/web_platform/CSS2/normal_flow/ref/height-059.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-059.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-059.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-060.json b/tests/web_platform/CSS2/normal_flow/ref/height-060.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-060.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-060.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-061.json b/tests/web_platform/CSS2/normal_flow/ref/height-061.json index 6d50ac0c9..d25e555f4 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-061.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-061.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-062.json b/tests/web_platform/CSS2/normal_flow/ref/height-062.json index 6d50ac0c9..d25e555f4 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-062.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-062.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-067.json b/tests/web_platform/CSS2/normal_flow/ref/height-067.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-067.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-067.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-068.json b/tests/web_platform/CSS2/normal_flow/ref/height-068.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-068.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-068.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-069.json b/tests/web_platform/CSS2/normal_flow/ref/height-069.json index 4fd79b608..c2511e7cd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-069.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-069.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-070.json b/tests/web_platform/CSS2/normal_flow/ref/height-070.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-070.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-070.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-071.json b/tests/web_platform/CSS2/normal_flow/ref/height-071.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-071.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-071.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-072.json b/tests/web_platform/CSS2/normal_flow/ref/height-072.json index 1c237506d..55134130c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-072.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-072.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-073.json b/tests/web_platform/CSS2/normal_flow/ref/height-073.json index 1c237506d..55134130c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-073.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-073.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-078.json b/tests/web_platform/CSS2/normal_flow/ref/height-078.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-078.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-078.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-079.json b/tests/web_platform/CSS2/normal_flow/ref/height-079.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-079.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-079.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-080.json b/tests/web_platform/CSS2/normal_flow/ref/height-080.json index a951ff2c1..225bcc0e4 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-080.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-080.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-081.json b/tests/web_platform/CSS2/normal_flow/ref/height-081.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-081.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-081.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-082.json b/tests/web_platform/CSS2/normal_flow/ref/height-082.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-082.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-082.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-083.json b/tests/web_platform/CSS2/normal_flow/ref/height-083.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-083.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-083.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-084.json b/tests/web_platform/CSS2/normal_flow/ref/height-084.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-084.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-084.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-089.json b/tests/web_platform/CSS2/normal_flow/ref/height-089.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-089.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-089.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-090.json b/tests/web_platform/CSS2/normal_flow/ref/height-090.json index 56f33e9e8..9d71f2979 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-090.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-090.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-091.json b/tests/web_platform/CSS2/normal_flow/ref/height-091.json index ea39db463..388ca8446 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-091.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-091.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-092.json b/tests/web_platform/CSS2/normal_flow/ref/height-092.json index 56f33e9e8..9d71f2979 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-092.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-092.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-093.json b/tests/web_platform/CSS2/normal_flow/ref/height-093.json index eb237340d..19706f8fa 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-093.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-093.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-094.json b/tests/web_platform/CSS2/normal_flow/ref/height-094.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-094.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-094.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-095.json b/tests/web_platform/CSS2/normal_flow/ref/height-095.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-095.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-095.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-100.json b/tests/web_platform/CSS2/normal_flow/ref/height-100.json index 2f3bceb36..82cf6ea1d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-100.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-100.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-101.json b/tests/web_platform/CSS2/normal_flow/ref/height-101.json index 2f3bceb36..82cf6ea1d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-101.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-101.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-102.json b/tests/web_platform/CSS2/normal_flow/ref/height-102.json index 2f3bceb36..82cf6ea1d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-102.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-102.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-103.json b/tests/web_platform/CSS2/normal_flow/ref/height-103.json index 2f3bceb36..82cf6ea1d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-103.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-103.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-104.json b/tests/web_platform/CSS2/normal_flow/ref/height-104.json index 764d45c5e..2b9ddbca9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-104.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-104.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-111.json b/tests/web_platform/CSS2/normal_flow/ref/height-111.json index 08deaa4fc..e5636c08f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-111.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-111.json @@ -140,4 +140,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-112.json b/tests/web_platform/CSS2/normal_flow/ref/height-112.json index bf08d08fe..108b9c82f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-112.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-112.json @@ -140,4 +140,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-113.json b/tests/web_platform/CSS2/normal_flow/ref/height-113.json index 5c56f2af2..b3fcac1f9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-113.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-113.json @@ -140,4 +140,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-114.json b/tests/web_platform/CSS2/normal_flow/ref/height-114.json index 83c436d4b..8906b3dda 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-114.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-114.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-001.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-001.json index 8cfc76470..90061390b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-001.json @@ -243,4 +243,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-002.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-002.json index 8cfc76470..90061390b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-002.json @@ -243,4 +243,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-003.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-003.json index 8cfc76470..90061390b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-003.json @@ -243,4 +243,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-004.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-004.json index 72198e189..3546a4f05 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-004.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-005.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-005.json index c75b20e14..d6087e505 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-005.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-006.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-006.json index c75b20e14..d6087e505 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-006.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-007.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-007.json index 72198e189..3546a4f05 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-007.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-008.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-008.json index efffbf7ea..c87a470d8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-008.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-008.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-009.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-009.json index b734ce32d..0c1245ca7 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-009.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-009.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-010.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-010.json index 793cc93f0..dbdea4beb 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-010.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-010.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-012.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-012.json index 68f36276a..460eec0b7 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-012.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-013.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-013.json index 72198e189..3546a4f05 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-013.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-014.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-014.json index 72198e189..3546a4f05 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-014.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-015.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-015.json index 279c3a604..23985dc72 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-015.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-016.json b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-016.json index 80f38d546..75430c622 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-applies-to-016.json @@ -92,4 +92,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-inherit-001.json b/tests/web_platform/CSS2/normal_flow/ref/height-inherit-001.json index ab5c14547..f0e883c14 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-inherit-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-inherit-001.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-percentage-001.json b/tests/web_platform/CSS2/normal_flow/ref/height-percentage-001.json index fda97a088..c60e825b6 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-percentage-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-percentage-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-percentage-002.json b/tests/web_platform/CSS2/normal_flow/ref/height-percentage-002.json index 070341e17..711028450 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-percentage-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-percentage-002.json @@ -146,4 +146,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-percentage-003.json b/tests/web_platform/CSS2/normal_flow/ref/height-percentage-003.json index 9fad7b851..438446d3b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-percentage-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-percentage-003.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-percentage-004.json b/tests/web_platform/CSS2/normal_flow/ref/height-percentage-004.json index c3428d1d9..1b89cc5b9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-percentage-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-percentage-004.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/height-percentage-005.json b/tests/web_platform/CSS2/normal_flow/ref/height-percentage-005.json index 1b7098a9a..0a6fe8515 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/height-percentage-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/height-percentage-005.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-000.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-000.json index c95f48bfe..4274d9cb3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-000.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-000.json @@ -155,4 +155,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-height-001.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-height-001.json index fb8babb75..939dc189b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-height-001.json @@ -153,4 +153,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-height-002.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-height-002.json index 31e0bba6a..85bc8b6ea 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-height-002.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-height-001.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-height-001.json index 8f3c20ea9..bddaea800 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-height-001.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-height-002.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-height-002.json index 0642b67d9..acf25e5d1 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-height-002.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-001.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-001.json index 1e4939f62..6ce987474 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-001.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-002.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-002.json index f9181a72e..6c9b12473 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-002.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-003.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-003.json index 1156ebb8c..f6280c23a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-003.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-004.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-004.json index 5924b7233..c757d966e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-004.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-005.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-005.json index 0520b0e38..0894329d2 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-non-replaced-width-005.json @@ -297,4 +297,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-001.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-001.json index 4b0f8093b..646cee6e8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-001.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-002.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-002.json index 310dbec0d..027791ef7 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-002.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-003.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-003.json index 6ac235a07..ce537b4b3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-003.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-004.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-004.json index 6d00c8cbd..30e73b8c7 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-004.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-005.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-005.json index f37f07ec7..71b46909d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-005.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-006.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-006.json index 1622c412d..9cfdedf84 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-006.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-007.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-007.json index 5cd6fd5eb..c6153211d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-007.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-008.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-008.json index da29fef98..4ea238329 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-008.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-008.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-009.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-009.json index f3a5d0250..7c3ad5957 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-009.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-height-009.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-001.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-001.json index d2acf4430..efe01234d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-002.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-002.json index 6f936f62f..dbc11ff52 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-002.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-003.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-003.json index f3332708d..0491c7b0b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-003.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-004.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-004.json index c9285648e..40560f3be 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-004.json @@ -281,4 +281,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-006.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-006.json index cc0983844..dd88ac19b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-006.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-007.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-007.json index e49d80bdd..6a036b71b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-007.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-008.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-008.json index d9d7c2893..35e1af293 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-008.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-replaced-width-008.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-valign-001.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-valign-001.json index 287e132ae..9c95eb869 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-valign-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-valign-001.json @@ -402,4 +402,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-valign-002.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-valign-002.json index 57f0cd2af..f982a1bf8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-valign-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-valign-002.json @@ -402,4 +402,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-001a.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-001a.json index c1541afbc..a381f2d62 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-001a.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-001a.json @@ -155,4 +155,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-001b.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-001b.json index c1541afbc..a381f2d62 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-001b.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-001b.json @@ -155,4 +155,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-002a.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-002a.json index 174ffc6b6..419cdc37a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-002a.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-002a.json @@ -203,4 +203,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-002b.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-002b.json index 174ffc6b6..419cdc37a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-002b.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-width-002b.json @@ -203,4 +203,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-001.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-001.json index 5623773cb..d225af604 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-001.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-002.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-002.json index af7de88ff..fb5e1846d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-002.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-003.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-003.json index bb7938a83..1bdec2cbc 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-003.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-004.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-004.json index 77da41eb6..9a44bdd4a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-004.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-005.json b/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-005.json index 8aee5a67e..2e2bfdba3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-block-zorder-005.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-height-002.json b/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-height-002.json index 18ca8432c..867aec3ba 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-height-002.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-height-003.json b/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-height-003.json index d4d41956f..8cd0221f5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-height-003.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-width-001.json b/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-width-001.json index 9de87776a..a8a7e0ff0 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-width-001.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-width-002.json b/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-width-002.json index 9de87776a..a8a7e0ff0 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-non-replaced-width-002.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-001.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-001.json index 4b0f8093b..646cee6e8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-001.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-002.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-002.json index 310dbec0d..027791ef7 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-002.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-003.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-003.json index 6ac235a07..ce537b4b3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-003.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-004.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-004.json index 6d00c8cbd..30e73b8c7 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-004.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-005.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-005.json index f37f07ec7..71b46909d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-005.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-006.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-006.json index 1622c412d..9cfdedf84 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-006.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-007.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-007.json index 5cd6fd5eb..c6153211d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-007.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-008.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-008.json index 3ec134328..71aefd778 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-008.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-008.json @@ -323,4 +323,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-009.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-009.json index f3a5d0250..7c3ad5957 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-009.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-009.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-010.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-010.json index 1f0524719..22dc32f8c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-010.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-010.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-011.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-011.json index c774479d0..c1c14a3b3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-011.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-height-011.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-001.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-001.json index 5229e9a5b..79ee6a059 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-002.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-002.json index 6f936f62f..dbc11ff52 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-002.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-003.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-003.json index f3332708d..0491c7b0b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-003.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-004.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-004.json index c9285648e..40560f3be 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-004.json @@ -281,4 +281,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-006.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-006.json index 5229e9a5b..79ee6a059 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-006.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-008.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-008.json index e49d80bdd..6a036b71b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-008.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-008.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-009.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-009.json index d9d7c2893..35e1af293 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-009.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-009.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-011.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-011.json index a8358ac13..32c24a97b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-011.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-011.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-012.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-012.json index 5c061629c..5973fd1dc 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-012.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-013.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-013.json index 5c061629c..5973fd1dc 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-013.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-014.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-014.json index 17138d860..c520296f8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-014.json @@ -375,4 +375,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-015.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-015.json index eef11b7d5..5ec0ab1fb 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-015.json @@ -563,4 +563,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-016.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-016.json index 1f0524719..22dc32f8c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-016.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-017.json b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-017.json index c774479d0..c1c14a3b3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-017.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-replaced-width-017.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-002a.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-002a.json index bb3734e4a..233f86442 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-002a.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-002a.json @@ -210,4 +210,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-002b.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-002b.json index 5f762f34d..17a9f75b9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-002b.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-002b.json @@ -258,4 +258,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-003.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-003.json index c95f48bfe..4274d9cb3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-003.json @@ -155,4 +155,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-height-001.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-height-001.json index fb8babb75..939dc189b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-height-001.json @@ -153,4 +153,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-height-002.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-height-002.json index dd12c56b9..5e7603eee 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-height-002.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-valign-001.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-valign-001.json index e5ff3b00f..150e42401 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-valign-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-valign-001.json @@ -546,4 +546,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-001a.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-001a.json index c1541afbc..a381f2d62 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-001a.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-001a.json @@ -155,4 +155,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-001b.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-001b.json index c1541afbc..a381f2d62 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-001b.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-001b.json @@ -155,4 +155,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-002a.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-002a.json index 174ffc6b6..419cdc37a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-002a.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-002a.json @@ -203,4 +203,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-002b.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-002b.json index 174ffc6b6..419cdc37a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-002b.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-width-002b.json @@ -203,4 +203,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-001.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-001.json index 654c5d1af..3b43869a1 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-001.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-002.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-002.json index a9e58cee9..b3a58e9e6 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-002.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-003.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-003.json index fda8f1052..f13ee8f53 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-003.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-004.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-004.json index 77da41eb6..9a44bdd4a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-004.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-005.json b/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-005.json index 8aee5a67e..2e2bfdba3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inline-table-zorder-005.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inlines-002.json b/tests/web_platform/CSS2/normal_flow/ref/inlines-002.json index 8f26a5ded..dd9188d75 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inlines-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inlines-002.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inlines-013.json b/tests/web_platform/CSS2/normal_flow/ref/inlines-013.json index 794cddffa..d8a02c739 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inlines-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inlines-013.json @@ -297,4 +297,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inlines-016.json b/tests/web_platform/CSS2/normal_flow/ref/inlines-016.json index 1d06cb874..c0d63790d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inlines-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inlines-016.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inlines-017.json b/tests/web_platform/CSS2/normal_flow/ref/inlines-017.json index ae48a09c1..a88ed08ed 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inlines-017.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inlines-017.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/inlines-020.json b/tests/web_platform/CSS2/normal_flow/ref/inlines-020.json index d94d91a31..6bd86970b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/inlines-020.json +++ b/tests/web_platform/CSS2/normal_flow/ref/inlines-020.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-001.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-001.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-001.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-002.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-002.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-002.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-003.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-003.json index f88359ee3..09b9fae38 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-003.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-004.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-004.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-004.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-005.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-005.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-005.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-006.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-006.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-006.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-007.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-007.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-007.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-012.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-012.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-012.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-013.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-013.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-013.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-014.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-014.json index fe7dbc2b6..4086bd74c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-014.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-015.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-015.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-015.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-016.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-016.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-016.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-017.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-017.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-017.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-017.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-018.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-018.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-018.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-018.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-023.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-023.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-023.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-023.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-024.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-024.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-024.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-024.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-025.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-025.json index 47761e90f..8e6f415f9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-025.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-025.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-026.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-026.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-026.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-026.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-027.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-027.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-027.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-027.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-028.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-028.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-028.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-028.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-029.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-029.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-029.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-029.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-034.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-034.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-034.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-034.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-035.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-035.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-035.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-035.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-036.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-036.json index 0ac69ee16..764c6c6fc 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-036.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-036.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-037.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-037.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-037.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-037.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-038.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-038.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-038.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-038.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-039.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-039.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-039.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-039.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-040.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-040.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-040.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-040.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-045.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-045.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-045.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-045.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-046.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-046.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-046.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-046.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-047.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-047.json index da6191db0..7d884b775 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-047.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-047.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-048.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-048.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-048.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-048.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-049.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-049.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-049.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-049.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-050.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-050.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-050.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-050.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-051.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-051.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-051.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-051.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-056.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-056.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-056.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-056.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-057.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-057.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-057.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-057.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-058.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-058.json index 04700ac94..e56eea44e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-058.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-058.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-059.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-059.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-059.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-059.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-060.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-060.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-060.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-060.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-061.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-061.json index 6d50ac0c9..d25e555f4 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-061.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-061.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-062.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-062.json index 6d50ac0c9..d25e555f4 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-062.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-062.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-067.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-067.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-067.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-067.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-068.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-068.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-068.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-068.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-069.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-069.json index 39752df17..f7c141b89 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-069.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-069.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-070.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-070.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-070.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-070.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-071.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-071.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-071.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-071.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-072.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-072.json index 1c237506d..55134130c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-072.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-072.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-073.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-073.json index 1c237506d..55134130c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-073.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-073.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-078.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-078.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-078.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-078.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-079.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-079.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-079.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-079.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-080.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-080.json index 47761e90f..8e6f415f9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-080.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-080.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-081.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-081.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-081.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-081.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-082.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-082.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-082.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-082.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-083.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-083.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-083.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-083.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-084.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-084.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-084.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-084.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-089.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-089.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-089.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-089.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-090.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-090.json index 56f33e9e8..9d71f2979 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-090.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-090.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-091.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-091.json index ea39db463..388ca8446 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-091.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-091.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-092.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-092.json index 56f33e9e8..9d71f2979 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-092.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-092.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-093.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-093.json index 56f33e9e8..9d71f2979 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-093.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-093.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-094.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-094.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-094.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-094.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-095.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-095.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-095.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-095.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-100.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-100.json index 2f3bceb36..82cf6ea1d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-100.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-100.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-101.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-101.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-101.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-101.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-102.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-102.json index 2f3bceb36..82cf6ea1d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-102.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-102.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-103.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-103.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-103.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-103.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-104.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-104.json index 764d45c5e..2b9ddbca9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-104.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-104.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-105.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-105.json index 75df14294..5821d0080 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-105.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-105.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-106.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-106.json index 919e00e33..545bc60be 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-106.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-106.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-107.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-107.json index 38ecc35cc..6ed9ceb6c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-107.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-107.json @@ -297,4 +297,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-108.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-108.json index 8c542018d..8798f8d42 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-108.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-108.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-109.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-109.json index 1d7989b58..f98727eb4 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-109.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-109.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-110.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-110.json index fddc67e3d..349349d53 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-110.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-110.json @@ -297,4 +297,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-111.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-111.json index 2c008434f..313848e0c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-111.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-111.json @@ -299,4 +299,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-001.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-001.json index 8cfc76470..90061390b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-001.json @@ -243,4 +243,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-002.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-002.json index 8cfc76470..90061390b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-002.json @@ -243,4 +243,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-003.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-003.json index 8cfc76470..90061390b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-003.json @@ -243,4 +243,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-004.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-004.json index 20a78833a..d7c5477f2 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-004.json @@ -188,4 +188,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-005.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-005.json index cda498ee0..5819f45ac 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-005.json @@ -521,4 +521,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-006.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-006.json index 8a6ca55f1..0baef832c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-006.json @@ -473,4 +473,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-007.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-007.json index d4985e5e4..4a0d07a9d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-007.json @@ -195,4 +195,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-008.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-008.json index 40f87a7b8..b3c5e488f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-008.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-008.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-009.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-009.json index b734ce32d..0c1245ca7 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-009.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-009.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-010.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-010.json index 793cc93f0..dbdea4beb 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-010.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-010.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-012.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-012.json index e390986bb..ca3a8f1b2 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-012.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-013.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-013.json index 30af72192..d7828d2ee 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-013.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-014.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-014.json index 30af72192..d7828d2ee 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-014.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-015.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-015.json index 279c3a604..23985dc72 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-015.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-016.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-016.json index ba291f2b0..895b2eea9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-applies-to-016.json @@ -92,4 +92,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-max-width-001.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-max-width-001.json index 3e9c7d5dd..a8d785d9d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-max-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-max-width-001.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-percentage-001.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-percentage-001.json index fda97a088..c60e825b6 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-percentage-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-percentage-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-percentage-002.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-percentage-002.json index 025d44584..5826bc603 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-percentage-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-percentage-002.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-height-percentage-003.json b/tests/web_platform/CSS2/normal_flow/ref/max-height-percentage-003.json index 613e4b025..e1cbb63ab 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-height-percentage-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-height-percentage-003.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-001.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-001.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-001.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-002.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-002.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-002.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-003.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-003.json index 33cdf8381..824d4476d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-003.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-004.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-004.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-004.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-005.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-005.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-005.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-006.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-006.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-006.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-007.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-007.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-007.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-012.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-012.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-012.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-013.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-013.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-013.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-014.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-014.json index 6b3bb2d92..96aeb0167 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-014.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-015.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-015.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-015.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-016.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-016.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-016.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-017.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-017.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-017.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-017.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-018.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-018.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-018.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-018.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-023.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-023.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-023.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-023.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-024.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-024.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-024.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-024.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-025.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-025.json index e69ab963f..ddc2ee384 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-025.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-025.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-026.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-026.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-026.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-026.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-027.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-027.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-027.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-027.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-028.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-028.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-028.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-028.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-029.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-029.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-029.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-029.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-034.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-034.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-034.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-034.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-035.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-035.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-035.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-035.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-036.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-036.json index f5128bf93..3be3aa241 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-036.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-036.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-037.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-037.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-037.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-037.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-038.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-038.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-038.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-038.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-039.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-039.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-039.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-039.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-040.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-040.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-040.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-040.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-045.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-045.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-045.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-045.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-046.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-046.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-046.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-046.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-047.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-047.json index 1e505b7e3..29d868a2c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-047.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-047.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-048.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-048.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-048.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-048.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-049.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-049.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-049.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-049.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-050.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-050.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-050.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-050.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-051.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-051.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-051.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-051.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-056.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-056.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-056.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-056.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-057.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-057.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-057.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-057.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-058.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-058.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-058.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-058.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-059.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-059.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-059.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-059.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-060.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-060.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-060.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-060.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-061.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-061.json index b8c3e1225..29eac328e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-061.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-061.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-062.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-062.json index b8c3e1225..29eac328e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-062.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-062.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-067.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-067.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-067.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-067.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-068.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-068.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-068.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-068.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-069.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-069.json index bbe23373f..b934eb11a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-069.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-069.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-070.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-070.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-070.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-070.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-071.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-071.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-071.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-071.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-072.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-072.json index 85d0146a0..081ee1d61 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-072.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-072.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-073.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-073.json index 85d0146a0..081ee1d61 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-073.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-073.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-078.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-078.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-078.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-078.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-079.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-079.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-079.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-079.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-080.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-080.json index e69ab963f..ddc2ee384 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-080.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-080.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-081.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-081.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-081.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-081.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-082.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-082.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-082.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-082.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-083.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-083.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-083.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-083.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-084.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-084.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-084.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-084.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-089.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-089.json index e0bee6a96..46b411fa3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-089.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-089.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-090.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-090.json index 85f5a2bdd..6d79a377b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-090.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-090.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-091.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-091.json index 122317d34..f3859158a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-091.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-091.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-092.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-092.json index 85f5a2bdd..6d79a377b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-092.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-092.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-093.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-093.json index 85f5a2bdd..6d79a377b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-093.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-093.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-094.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-094.json index 9c798eb4c..6d30fc8bd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-094.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-094.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-095.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-095.json index 9c798eb4c..6d30fc8bd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-095.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-095.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-100.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-100.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-100.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-100.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-101.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-101.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-101.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-101.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-102.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-102.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-102.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-102.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-103.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-103.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-103.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-103.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-104.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-104.json index 4093b3e94..1333aa78e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-104.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-104.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-105.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-105.json index 051448ad8..247478a85 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-105.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-105.json @@ -297,4 +297,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-106.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-106.json index 3e9004594..05e0ac802 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-106.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-106.json @@ -297,4 +297,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-107.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-107.json index c05c16c3c..0f64e2543 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-107.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-107.json @@ -299,4 +299,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-108.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-108.json index 2c008434f..313848e0c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-108.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-108.json @@ -299,4 +299,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-110.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-110.json index ff1641760..4264e1d0c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-110.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-110.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-001.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-001.json index dc5b3a0fb..926f57585 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-001.json @@ -429,4 +429,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-002.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-002.json index dc5b3a0fb..926f57585 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-002.json @@ -429,4 +429,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-003.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-003.json index dc5b3a0fb..926f57585 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-003.json @@ -429,4 +429,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-004.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-004.json index 30af72192..d7828d2ee 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-004.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-005.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-005.json index a163756f9..cb5742d99 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-005.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-006.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-006.json index a163756f9..cb5742d99 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-006.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-007.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-007.json index 72198e189..3546a4f05 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-007.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-008.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-008.json index 40f87a7b8..b3c5e488f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-008.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-008.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-009.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-009.json index b734ce32d..0c1245ca7 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-009.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-009.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-010.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-010.json index 793cc93f0..dbdea4beb 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-010.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-010.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-012.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-012.json index fcec54576..11bb0ce4a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-012.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-013.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-013.json index 72198e189..3546a4f05 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-013.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-014.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-014.json index f02fa58a1..37cb656dd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-014.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-015.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-015.json index 279c3a604..23985dc72 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-015.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-016.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-016.json index ba291f2b0..895b2eea9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-applies-to-016.json @@ -92,4 +92,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-percentage-001.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-percentage-001.json index b26f5ca57..5f441d410 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-percentage-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-percentage-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-percentage-002.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-percentage-002.json index 13a0d42f4..497d931ef 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-percentage-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-percentage-002.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/max-width-percentage-003.json b/tests/web_platform/CSS2/normal_flow/ref/max-width-percentage-003.json index 11d43040f..e8f67c0b3 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/max-width-percentage-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/max-width-percentage-003.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-001.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-001.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-001.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-002.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-002.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-002.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-003.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-003.json index f88359ee3..09b9fae38 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-003.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-004.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-004.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-004.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-005.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-005.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-005.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-006.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-006.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-006.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-007.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-007.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-007.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-012.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-012.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-012.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-013.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-013.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-013.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-014.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-014.json index fe7dbc2b6..4086bd74c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-014.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-015.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-015.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-015.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-016.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-016.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-016.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-017.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-017.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-017.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-017.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-018.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-018.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-018.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-018.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-023.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-023.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-023.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-023.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-024.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-024.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-024.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-024.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-025.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-025.json index 47761e90f..8e6f415f9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-025.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-025.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-026.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-026.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-026.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-026.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-027.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-027.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-027.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-027.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-028.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-028.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-028.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-028.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-029.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-029.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-029.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-029.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-034.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-034.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-034.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-034.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-035.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-035.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-035.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-035.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-036.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-036.json index 0ac69ee16..764c6c6fc 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-036.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-036.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-037.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-037.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-037.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-037.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-038.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-038.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-038.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-038.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-039.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-039.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-039.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-039.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-040.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-040.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-040.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-040.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-045.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-045.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-045.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-045.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-046.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-046.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-046.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-046.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-047.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-047.json index da6191db0..7d884b775 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-047.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-047.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-048.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-048.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-048.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-048.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-049.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-049.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-049.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-049.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-050.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-050.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-050.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-050.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-051.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-051.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-051.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-051.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-056.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-056.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-056.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-056.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-057.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-057.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-057.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-057.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-058.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-058.json index 04700ac94..e56eea44e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-058.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-058.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-059.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-059.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-059.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-059.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-060.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-060.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-060.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-060.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-061.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-061.json index 6d50ac0c9..d25e555f4 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-061.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-061.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-062.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-062.json index 6d50ac0c9..d25e555f4 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-062.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-062.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-067.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-067.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-067.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-067.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-068.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-068.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-068.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-068.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-069.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-069.json index 4fd79b608..c2511e7cd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-069.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-069.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-070.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-070.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-070.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-070.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-071.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-071.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-071.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-071.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-072.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-072.json index 1c237506d..55134130c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-072.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-072.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-073.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-073.json index 1c237506d..55134130c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-073.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-073.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-078.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-078.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-078.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-078.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-079.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-079.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-079.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-079.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-080.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-080.json index a951ff2c1..225bcc0e4 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-080.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-080.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-081.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-081.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-081.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-081.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-082.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-082.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-082.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-082.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-083.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-083.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-083.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-083.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-084.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-084.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-084.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-084.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-089.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-089.json index 56f33e9e8..9d71f2979 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-089.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-089.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-090.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-090.json index 56f33e9e8..9d71f2979 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-090.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-090.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-091.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-091.json index ea39db463..388ca8446 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-091.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-091.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-092.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-092.json index 56f33e9e8..9d71f2979 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-092.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-092.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-093.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-093.json index 56f33e9e8..9d71f2979 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-093.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-093.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-094.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-094.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-094.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-094.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-095.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-095.json index 328827edc..82ac77d41 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-095.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-095.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-100.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-100.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-100.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-100.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-101.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-101.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-101.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-101.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-102.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-102.json index 848f9c2aa..28727af87 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-102.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-102.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-103.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-103.json index 764d45c5e..2b9ddbca9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-103.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-103.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-104.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-104.json index 58764d509..ee2742ce0 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-104.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-104.json @@ -297,4 +297,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-105.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-105.json index fddc67e3d..349349d53 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-105.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-105.json @@ -297,4 +297,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-106.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-106.json index 45b244399..d217268fa 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-106.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-106.json @@ -299,4 +299,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-111.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-111.json index c42918d4d..629955343 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-111.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-111.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-112.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-112.json index c42918d4d..629955343 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-112.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-112.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-001.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-001.json index 0b01d5c6e..a6c1c5c42 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-001.json @@ -242,4 +242,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-002.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-002.json index 0b01d5c6e..a6c1c5c42 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-002.json @@ -242,4 +242,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-003.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-003.json index 0b01d5c6e..a6c1c5c42 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-003.json @@ -242,4 +242,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-004.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-004.json index 1ad53f23a..e68146bf9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-004.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-005.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-005.json index 3594a0b22..fa93b2e33 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-005.json @@ -521,4 +521,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-006.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-006.json index 6fbe9ab54..cd0838b05 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-006.json @@ -473,4 +473,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-007.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-007.json index fe4c5d894..c7b54d6ff 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-007.json @@ -194,4 +194,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-008.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-008.json index 21e76b051..732b4e635 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-008.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-008.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-009.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-009.json index b734ce32d..0c1245ca7 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-009.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-009.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-010.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-010.json index 793cc93f0..dbdea4beb 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-010.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-010.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-012.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-012.json index e390986bb..ca3a8f1b2 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-012.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-013.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-013.json index 72198e189..3546a4f05 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-013.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-014.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-014.json index f02fa58a1..37cb656dd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-014.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-015.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-015.json index 279c3a604..23985dc72 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-applies-to-015.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-percentage-001.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-percentage-001.json index fda97a088..c60e825b6 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-percentage-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-percentage-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-percentage-002.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-percentage-002.json index 15bcb8590..c5a420799 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-percentage-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-percentage-002.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-height-percentage-003.json b/tests/web_platform/CSS2/normal_flow/ref/min-height-percentage-003.json index 7318b89b1..e779fbcc8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-height-percentage-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-height-percentage-003.json @@ -155,4 +155,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-001.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-001.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-001.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-002.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-002.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-002.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-003.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-003.json index 33cdf8381..824d4476d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-003.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-004.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-004.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-004.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-005.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-005.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-005.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-006.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-006.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-006.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-007.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-007.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-007.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-012.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-012.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-012.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-013.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-013.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-013.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-014.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-014.json index 6b3bb2d92..96aeb0167 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-014.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-015.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-015.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-015.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-016.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-016.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-016.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-017.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-017.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-017.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-017.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-018.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-018.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-018.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-018.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-023.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-023.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-023.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-023.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-024.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-024.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-024.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-024.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-025.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-025.json index e69ab963f..ddc2ee384 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-025.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-025.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-026.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-026.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-026.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-026.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-027.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-027.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-027.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-027.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-028.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-028.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-028.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-028.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-029.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-029.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-029.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-029.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-034.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-034.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-034.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-034.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-035.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-035.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-035.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-035.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-036.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-036.json index f5128bf93..3be3aa241 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-036.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-036.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-037.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-037.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-037.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-037.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-038.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-038.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-038.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-038.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-039.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-039.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-039.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-039.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-040.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-040.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-040.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-040.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-045.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-045.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-045.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-045.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-046.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-046.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-046.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-046.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-047.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-047.json index 1e505b7e3..29d868a2c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-047.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-047.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-048.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-048.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-048.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-048.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-049.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-049.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-049.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-049.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-050.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-050.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-050.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-050.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-051.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-051.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-051.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-051.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-056.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-056.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-056.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-056.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-057.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-057.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-057.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-057.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-058.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-058.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-058.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-058.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-059.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-059.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-059.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-059.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-060.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-060.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-060.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-060.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-061.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-061.json index b8c3e1225..29eac328e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-061.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-061.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-062.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-062.json index b8c3e1225..29eac328e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-062.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-062.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-067.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-067.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-067.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-067.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-068.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-068.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-068.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-068.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-069.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-069.json index bbe23373f..b934eb11a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-069.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-069.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-070.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-070.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-070.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-070.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-071.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-071.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-071.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-071.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-072.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-072.json index 85d0146a0..081ee1d61 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-072.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-072.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-073.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-073.json index 85d0146a0..081ee1d61 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-073.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-073.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-078.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-078.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-078.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-078.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-079.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-079.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-079.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-079.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-080.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-080.json index e69ab963f..ddc2ee384 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-080.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-080.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-081.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-081.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-081.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-081.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-082.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-082.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-082.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-082.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-083.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-083.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-083.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-083.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-084.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-084.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-084.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-084.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-089.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-089.json index 85f5a2bdd..6d79a377b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-089.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-089.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-090.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-090.json index 85f5a2bdd..6d79a377b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-090.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-090.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-091.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-091.json index 122317d34..f3859158a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-091.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-091.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-092.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-092.json index 85f5a2bdd..6d79a377b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-092.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-092.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-093.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-093.json index 85f5a2bdd..6d79a377b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-093.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-093.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-094.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-094.json index 9c798eb4c..6d30fc8bd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-094.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-094.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-095.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-095.json index 9c798eb4c..6d30fc8bd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-095.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-095.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-100.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-100.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-100.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-100.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-101.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-101.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-101.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-101.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-102.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-102.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-102.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-102.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-103.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-103.json index 4093b3e94..1333aa78e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-103.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-103.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-001.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-001.json index ecb7bacef..8ce2e51e6 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-001.json @@ -421,4 +421,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-002.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-002.json index d6edb2664..8472f2457 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-002.json @@ -421,4 +421,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-003.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-003.json index d6edb2664..8472f2457 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-003.json @@ -421,4 +421,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-004.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-004.json index 84ed693f0..c6d665dd1 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-004.json @@ -373,4 +373,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-005.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-005.json index 42f47f6e1..d6a821087 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-005.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-006.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-006.json index 42f47f6e1..d6a821087 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-006.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-007.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-007.json index 72198e189..3546a4f05 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-007.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-008.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-008.json index 40f87a7b8..b3c5e488f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-008.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-008.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-009.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-009.json index 9958aa09c..fbac3fdfc 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-009.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-009.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-010.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-010.json index ec46ac807..bcc0d15ee 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-010.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-010.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-012.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-012.json index fcec54576..11bb0ce4a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-012.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-013.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-013.json index 72198e189..3546a4f05 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-013.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-014.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-014.json index f02fa58a1..37cb656dd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-014.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-015.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-015.json index 279c3a604..23985dc72 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-015.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-016.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-016.json index ba291f2b0..895b2eea9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-applies-to-016.json @@ -92,4 +92,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-percentage-001.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-percentage-001.json index 0dfeb081e..0aa987390 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-percentage-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-percentage-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-percentage-002.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-percentage-002.json index 13a0d42f4..497d931ef 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-percentage-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-percentage-002.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/min-width-percentage-003.json b/tests/web_platform/CSS2/normal_flow/ref/min-width-percentage-003.json index e9087ca13..8ac171985 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/min-width-percentage-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/min-width-percentage-003.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/replaced-elements-001.json b/tests/web_platform/CSS2/normal_flow/ref/replaced-elements-001.json index 1fd4d2ee4..02dbf946d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/replaced-elements-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/replaced-elements-001.json @@ -281,4 +281,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-001.json b/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-001.json index e588fe448..37bf9179d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-001.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-002.json b/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-002.json index 61e5cd2be..8bc005b92 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-002.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-003.json b/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-003.json index 65db9cfb8..854ee0d57 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-003.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-004.json b/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-004.json index e3303ec5d..c53b23681 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-004.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-005.json b/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-005.json index c13b9c5db..fe452640f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/replaced-intrinsic-005.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/root-box-001.json b/tests/web_platform/CSS2/normal_flow/ref/root-box-001.json index e51774ef8..50c6ad0f5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/root-box-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/root-box-001.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/table-in-inline-001.json b/tests/web_platform/CSS2/normal_flow/ref/table-in-inline-001.json index 43ddd42b0..74497e3ef 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/table-in-inline-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/table-in-inline-001.json @@ -242,4 +242,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-001.json b/tests/web_platform/CSS2/normal_flow/ref/width-001.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-001.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-002.json b/tests/web_platform/CSS2/normal_flow/ref/width-002.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-002.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-003.json b/tests/web_platform/CSS2/normal_flow/ref/width-003.json index 33cdf8381..824d4476d 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-003.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-004.json b/tests/web_platform/CSS2/normal_flow/ref/width-004.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-004.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-005.json b/tests/web_platform/CSS2/normal_flow/ref/width-005.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-005.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-006.json b/tests/web_platform/CSS2/normal_flow/ref/width-006.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-006.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-007.json b/tests/web_platform/CSS2/normal_flow/ref/width-007.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-007.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-012.json b/tests/web_platform/CSS2/normal_flow/ref/width-012.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-012.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-013.json b/tests/web_platform/CSS2/normal_flow/ref/width-013.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-013.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-014.json b/tests/web_platform/CSS2/normal_flow/ref/width-014.json index 6b3bb2d92..96aeb0167 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-014.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-015.json b/tests/web_platform/CSS2/normal_flow/ref/width-015.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-015.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-016.json b/tests/web_platform/CSS2/normal_flow/ref/width-016.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-016.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-017.json b/tests/web_platform/CSS2/normal_flow/ref/width-017.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-017.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-017.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-018.json b/tests/web_platform/CSS2/normal_flow/ref/width-018.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-018.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-018.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-023.json b/tests/web_platform/CSS2/normal_flow/ref/width-023.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-023.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-023.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-024.json b/tests/web_platform/CSS2/normal_flow/ref/width-024.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-024.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-024.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-025.json b/tests/web_platform/CSS2/normal_flow/ref/width-025.json index e69ab963f..ddc2ee384 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-025.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-025.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-026.json b/tests/web_platform/CSS2/normal_flow/ref/width-026.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-026.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-026.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-027.json b/tests/web_platform/CSS2/normal_flow/ref/width-027.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-027.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-027.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-028.json b/tests/web_platform/CSS2/normal_flow/ref/width-028.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-028.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-028.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-029.json b/tests/web_platform/CSS2/normal_flow/ref/width-029.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-029.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-029.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-034.json b/tests/web_platform/CSS2/normal_flow/ref/width-034.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-034.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-034.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-035.json b/tests/web_platform/CSS2/normal_flow/ref/width-035.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-035.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-035.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-036.json b/tests/web_platform/CSS2/normal_flow/ref/width-036.json index f5128bf93..3be3aa241 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-036.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-036.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-037.json b/tests/web_platform/CSS2/normal_flow/ref/width-037.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-037.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-037.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-038.json b/tests/web_platform/CSS2/normal_flow/ref/width-038.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-038.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-038.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-039.json b/tests/web_platform/CSS2/normal_flow/ref/width-039.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-039.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-039.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-040.json b/tests/web_platform/CSS2/normal_flow/ref/width-040.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-040.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-040.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-045.json b/tests/web_platform/CSS2/normal_flow/ref/width-045.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-045.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-045.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-046.json b/tests/web_platform/CSS2/normal_flow/ref/width-046.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-046.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-046.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-047.json b/tests/web_platform/CSS2/normal_flow/ref/width-047.json index 1e505b7e3..29d868a2c 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-047.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-047.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-048.json b/tests/web_platform/CSS2/normal_flow/ref/width-048.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-048.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-048.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-049.json b/tests/web_platform/CSS2/normal_flow/ref/width-049.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-049.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-049.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-050.json b/tests/web_platform/CSS2/normal_flow/ref/width-050.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-050.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-050.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-051.json b/tests/web_platform/CSS2/normal_flow/ref/width-051.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-051.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-051.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-056.json b/tests/web_platform/CSS2/normal_flow/ref/width-056.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-056.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-056.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-057.json b/tests/web_platform/CSS2/normal_flow/ref/width-057.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-057.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-057.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-058.json b/tests/web_platform/CSS2/normal_flow/ref/width-058.json index e18973fc6..1a311b0b5 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-058.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-058.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-059.json b/tests/web_platform/CSS2/normal_flow/ref/width-059.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-059.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-059.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-060.json b/tests/web_platform/CSS2/normal_flow/ref/width-060.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-060.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-060.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-061.json b/tests/web_platform/CSS2/normal_flow/ref/width-061.json index b8c3e1225..29eac328e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-061.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-061.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-062.json b/tests/web_platform/CSS2/normal_flow/ref/width-062.json index b8c3e1225..29eac328e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-062.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-062.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-067.json b/tests/web_platform/CSS2/normal_flow/ref/width-067.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-067.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-067.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-068.json b/tests/web_platform/CSS2/normal_flow/ref/width-068.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-068.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-068.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-069.json b/tests/web_platform/CSS2/normal_flow/ref/width-069.json index bbe23373f..b934eb11a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-069.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-069.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-070.json b/tests/web_platform/CSS2/normal_flow/ref/width-070.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-070.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-070.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-071.json b/tests/web_platform/CSS2/normal_flow/ref/width-071.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-071.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-071.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-072.json b/tests/web_platform/CSS2/normal_flow/ref/width-072.json index 85d0146a0..081ee1d61 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-072.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-072.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-073.json b/tests/web_platform/CSS2/normal_flow/ref/width-073.json index 85d0146a0..081ee1d61 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-073.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-073.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-078.json b/tests/web_platform/CSS2/normal_flow/ref/width-078.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-078.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-078.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-079.json b/tests/web_platform/CSS2/normal_flow/ref/width-079.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-079.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-079.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-080.json b/tests/web_platform/CSS2/normal_flow/ref/width-080.json index e69ab963f..ddc2ee384 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-080.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-080.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-081.json b/tests/web_platform/CSS2/normal_flow/ref/width-081.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-081.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-081.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-082.json b/tests/web_platform/CSS2/normal_flow/ref/width-082.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-082.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-082.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-083.json b/tests/web_platform/CSS2/normal_flow/ref/width-083.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-083.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-083.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-084.json b/tests/web_platform/CSS2/normal_flow/ref/width-084.json index 98d109452..d890d2c8b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-084.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-084.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-089.json b/tests/web_platform/CSS2/normal_flow/ref/width-089.json index 85f5a2bdd..6d79a377b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-089.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-089.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-090.json b/tests/web_platform/CSS2/normal_flow/ref/width-090.json index 85f5a2bdd..6d79a377b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-090.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-090.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-091.json b/tests/web_platform/CSS2/normal_flow/ref/width-091.json index 122317d34..f3859158a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-091.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-091.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-092.json b/tests/web_platform/CSS2/normal_flow/ref/width-092.json index 85f5a2bdd..6d79a377b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-092.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-092.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-093.json b/tests/web_platform/CSS2/normal_flow/ref/width-093.json index 85f5a2bdd..6d79a377b 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-093.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-093.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-094.json b/tests/web_platform/CSS2/normal_flow/ref/width-094.json index 9c798eb4c..6d30fc8bd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-094.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-094.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-095.json b/tests/web_platform/CSS2/normal_flow/ref/width-095.json index 9c798eb4c..6d30fc8bd 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-095.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-095.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-100.json b/tests/web_platform/CSS2/normal_flow/ref/width-100.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-100.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-100.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-101.json b/tests/web_platform/CSS2/normal_flow/ref/width-101.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-101.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-101.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-102.json b/tests/web_platform/CSS2/normal_flow/ref/width-102.json index ddeb250a9..79a53304e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-102.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-102.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-103.json b/tests/web_platform/CSS2/normal_flow/ref/width-103.json index 2c5034659..80cff5a72 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-103.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-103.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-104.json b/tests/web_platform/CSS2/normal_flow/ref/width-104.json index 4093b3e94..1333aa78e 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-104.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-104.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-001.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-001.json index dc5b3a0fb..926f57585 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-001.json @@ -429,4 +429,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-002.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-002.json index dc5b3a0fb..926f57585 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-002.json @@ -429,4 +429,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-003.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-003.json index dc5b3a0fb..926f57585 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-003.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-003.json @@ -429,4 +429,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-004.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-004.json index 30af72192..d7828d2ee 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-004.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-004.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-005.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-005.json index ac659b4ef..468cb2bf7 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-005.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-005.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-006.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-006.json index 15e24422b..8de0e0993 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-006.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-006.json @@ -565,4 +565,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-007.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-007.json index 30af72192..d7828d2ee 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-007.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-007.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-008.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-008.json index efffbf7ea..c87a470d8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-008.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-008.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-009.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-009.json index b734ce32d..0c1245ca7 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-009.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-009.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-010.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-010.json index 793cc93f0..dbdea4beb 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-010.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-010.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-012.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-012.json index fcec54576..11bb0ce4a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-012.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-012.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-013.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-013.json index 30af72192..d7828d2ee 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-013.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-013.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-014.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-014.json index 30af72192..d7828d2ee 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-014.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-014.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-015.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-015.json index 279c3a604..23985dc72 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-015.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-015.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-016.json b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-016.json index e7c59f6dc..d1ed327a8 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-016.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-applies-to-016.json @@ -92,4 +92,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-inherit-001.json b/tests/web_platform/CSS2/normal_flow/ref/width-inherit-001.json index ebc887258..764b6f2eb 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-inherit-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-inherit-001.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-non-replaced-inline-001.json b/tests/web_platform/CSS2/normal_flow/ref/width-non-replaced-inline-001.json index 9278dc51c..fe12451a9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-non-replaced-inline-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-non-replaced-inline-001.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-percentage-001.json b/tests/web_platform/CSS2/normal_flow/ref/width-percentage-001.json index d2903a268..c9282ed1a 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-percentage-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-percentage-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-percentage-002.json b/tests/web_platform/CSS2/normal_flow/ref/width-percentage-002.json index de4a42c12..7811e354f 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-percentage-002.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-percentage-002.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-replaced-element-001.json b/tests/web_platform/CSS2/normal_flow/ref/width-replaced-element-001.json index 718f7f8cb..72d612a56 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-replaced-element-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-replaced-element-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/ref/width-undefined-001.json b/tests/web_platform/CSS2/normal_flow/ref/width-undefined-001.json index 091854bc4..e0e5e3da9 100644 --- a/tests/web_platform/CSS2/normal_flow/ref/width-undefined-001.json +++ b/tests/web_platform/CSS2/normal_flow/ref/width-undefined-001.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/normal_flow/test_block_formatting_context_height.py b/tests/web_platform/CSS2/normal_flow/test_block_formatting_context_height.py index 47e8d5392..8d9916b50 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_formatting_context_height.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_formatting_context_height.py @@ -2,4 +2,4 @@ class TestBlockFormattingContextHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-formatting-context-height-')) + vars().update(W3CTestCase.find_tests(__file__, "block-formatting-context-height-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_formatting_contexts.py b/tests/web_platform/CSS2/normal_flow/test_block_formatting_contexts.py index 17aa219cc..77725312b 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_formatting_contexts.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_formatting_contexts.py @@ -2,4 +2,4 @@ class TestBlockFormattingContexts(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-formatting-contexts-')) + vars().update(W3CTestCase.find_tests(__file__, "block-formatting-contexts-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_append.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_append.py index c9cd6bc87..01eb9e473 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_append.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_append.py @@ -2,4 +2,4 @@ class TestBlockInInlineAppend(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-append-')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-append-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_append_002_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_append_002_nosplit_ref.py index 4d498321d..4ca784e74 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_append_002_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_append_002_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineAppend002NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-append-002-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-append-002-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_append_002_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_append_002_ref.py index d78af9ddc..51537c030 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_append_002_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_append_002_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineAppend002Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-append-002-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-append-002-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_empty.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_empty.py index a714af5b1..8cb34d6e6 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_empty.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_empty.py @@ -2,4 +2,4 @@ class TestBlockInInlineEmpty(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-empty-')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-empty-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_float_between.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_float_between.py index 9fea3ae65..9daad95b7 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_float_between.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_float_between.py @@ -2,4 +2,4 @@ class TestBlockInInlineFloatBetween(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-float-between-')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-float-between-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert.py index 3e6c03765..910f44209 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_001_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_001_nosplit_ref.py index 65b90c46e..6d744d2a6 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_001_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_001_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert001NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-001-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-001-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_001_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_001_ref.py index e1b35dc29..a4bab29f2 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_001_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_001_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert001Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-001-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-001-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_002_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_002_nosplit_ref.py index 5523686ea..1d1825fc3 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_002_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_002_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert002NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-002-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-002-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_002_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_002_ref.py index c572b830a..4fc91fab2 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_002_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_002_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert002Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-002-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-002-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_003_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_003_nosplit_ref.py index 480eab886..3df9941d4 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_003_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_003_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert003NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-003-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-003-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_003_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_003_ref.py index 41bec1a89..fd4270325 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_003_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_003_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert003Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-003-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-003-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_004_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_004_nosplit_ref.py index 02f48d68c..5ec40d71b 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_004_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_004_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert004NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-004-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-004-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_004_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_004_ref.py index d9acdf750..56019fed6 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_004_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_004_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert004Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-004-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-004-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_006_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_006_nosplit_ref.py index de0d9e776..b2579763c 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_006_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_006_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert006NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-006-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-006-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_006_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_006_ref.py index 857309801..66d1fd91f 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_006_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_006_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert006Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-006-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-006-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_007_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_007_nosplit_ref.py index f3dedab76..7ca125804 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_007_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_007_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert007NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-007-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-007-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_007_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_007_ref.py index b118b8b77..5d61f17fb 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_007_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_007_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert007Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-007-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-007-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_008_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_008_nosplit_ref.py index 2148914f3..3139b8b00 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_008_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_008_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert008NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-008-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-008-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_008_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_008_ref.py index 44a356eac..c30235608 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_008_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_008_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert008Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-008-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-008-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_009_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_009_nosplit_ref.py index 071ffe52a..ea2addc15 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_009_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_009_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert009NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-009-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-009-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_009_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_009_ref.py index e2afd3f1c..40dfba495 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_009_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_009_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert009Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-009-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-009-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_010_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_010_nosplit_ref.py index 662e73d52..1e83edc5a 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_010_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_010_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert010NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-010-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-010-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_010_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_010_ref.py index 82f78681c..d27790e3c 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_010_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_010_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert010Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-010-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-010-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_011_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_011_nosplit_ref.py index 52c711c69..49e089ec4 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_011_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_011_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert011NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-011-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-011-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_011_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_011_ref.py index ff41658eb..29615713e 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_011_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_011_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert011Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-011-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-011-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_012_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_012_nosplit_ref.py index 3ac3effca..f3eb9ebf7 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_012_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_012_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert012NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-012-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-012-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_012_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_012_ref.py index 10422130a..11e988626 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_012_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_012_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert012Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-012-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-012-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_013_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_013_nosplit_ref.py index ab085a225..7e2790704 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_013_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_013_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert013NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-013-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-013-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_013_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_013_ref.py index eb8371047..5539f1ed2 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_013_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_013_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert013Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-013-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-013-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_014_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_014_nosplit_ref.py index 609ccd49d..e6c3a10e8 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_014_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_014_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert014NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-014-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-014-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_014_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_014_ref.py index ceb4176d6..7908d8d4d 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_014_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_014_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert014Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-014-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-014-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_015_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_015_nosplit_ref.py index 17816c90c..3416b5f84 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_015_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_015_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert015NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-015-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-015-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_015_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_015_ref.py index 25bed4683..f75dfc9ac 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_015_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_015_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert015Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-015-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-015-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_016_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_016_nosplit_ref.py index ad87263d9..6acef573d 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_016_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_016_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineInsert016NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-016-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-insert-016-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_016_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_016_ref.py index bb52baa9a..cb901e23b 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_016_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_insert_016_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineInsert016Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-insert-016-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-insert-016-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_margins.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_margins.py index fde05b144..bce8ac27b 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_margins.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_margins.py @@ -2,4 +2,4 @@ class TestBlockInInlineMargins(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-margins-')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-margins-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_nested.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_nested.py index aef6b5635..b917a1bae 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_nested.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_nested.py @@ -2,4 +2,4 @@ class TestBlockInInlineNested(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-nested-')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-nested-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_percents.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_percents.py index b0e1cd4dc..c335925ca 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_percents.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_percents.py @@ -2,4 +2,4 @@ class TestBlockInInlinePercents(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-percents-')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-percents-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove.py index 93dce9d14..7b5edd2e9 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove.py @@ -2,4 +2,4 @@ class TestBlockInInlineRemove(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-remove-')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-remove-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_001_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_001_nosplit_ref.py index 065d19c5d..366593b38 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_001_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_001_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineRemove001NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-remove-001-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-remove-001-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_001_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_001_ref.py index d708cc4b5..7cd902960 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_001_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_001_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineRemove001Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-remove-001-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-remove-001-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_003_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_003_nosplit_ref.py index d47dddc50..ff91d5c6d 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_003_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_003_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineRemove003NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-remove-003-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-remove-003-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_003_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_003_ref.py index 1cd393cd6..b5de98bd3 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_003_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_003_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineRemove003Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-remove-003-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-remove-003-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_004_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_004_nosplit_ref.py index 47a069db0..9260a9659 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_004_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_004_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineRemove004NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-remove-004-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-remove-004-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_004_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_004_ref.py index a913d0bfe..4e64c1869 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_004_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_004_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineRemove004Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-remove-004-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-remove-004-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_005_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_005_nosplit_ref.py index dcfa7589b..a559cc9f2 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_005_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_005_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineRemove005NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-remove-005-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-remove-005-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_005_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_005_ref.py index e953cb80d..e6300311f 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_005_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_005_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineRemove005Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-remove-005-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-remove-005-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_006_nosplit_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_006_nosplit_ref.py index 013dafec0..6142febd6 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_006_nosplit_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_006_nosplit_ref.py @@ -2,4 +2,6 @@ class TestBlockInInlineRemove006NosplitRef(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-remove-006-nosplit-ref')) + vars().update( + W3CTestCase.find_tests(__file__, "block-in-inline-remove-006-nosplit-ref") + ) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_006_ref.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_006_ref.py index 9eafe8ad9..0184772f7 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_006_ref.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_remove_006_ref.py @@ -2,4 +2,4 @@ class TestBlockInInlineRemove006Ref(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-remove-006-ref')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-remove-006-ref")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_whitespace.py b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_whitespace.py index c5c13121c..88f94dee0 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_in_inline_whitespace.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_in_inline_whitespace.py @@ -2,4 +2,4 @@ class TestBlockInInlineWhitespace(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-in-inline-whitespace-')) + vars().update(W3CTestCase.find_tests(__file__, "block-in-inline-whitespace-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_non_replaced_height.py b/tests/web_platform/CSS2/normal_flow/test_block_non_replaced_height.py index e647058ad..9219cead7 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_non_replaced_height.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_non_replaced_height.py @@ -2,4 +2,4 @@ class TestBlockNonReplacedHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-non-replaced-height-')) + vars().update(W3CTestCase.find_tests(__file__, "block-non-replaced-height-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_non_replaced_width.py b/tests/web_platform/CSS2/normal_flow/test_block_non_replaced_width.py index f8fa3867a..811c9a4a7 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_non_replaced_width.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_non_replaced_width.py @@ -2,4 +2,4 @@ class TestBlockNonReplacedWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-non-replaced-width-')) + vars().update(W3CTestCase.find_tests(__file__, "block-non-replaced-width-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_replaced_height.py b/tests/web_platform/CSS2/normal_flow/test_block_replaced_height.py index b06cf3062..9b8ef8b5e 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_replaced_height.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_replaced_height.py @@ -2,4 +2,4 @@ class TestBlockReplacedHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-replaced-height-')) + vars().update(W3CTestCase.find_tests(__file__, "block-replaced-height-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_block_replaced_width.py b/tests/web_platform/CSS2/normal_flow/test_block_replaced_width.py index 9f7bd874a..f79d64e43 100644 --- a/tests/web_platform/CSS2/normal_flow/test_block_replaced_width.py +++ b/tests/web_platform/CSS2/normal_flow/test_block_replaced_width.py @@ -2,4 +2,4 @@ class TestBlockReplacedWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'block-replaced-width-')) + vars().update(W3CTestCase.find_tests(__file__, "block-replaced-width-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_blocks.py b/tests/web_platform/CSS2/normal_flow/test_blocks.py index 5b4f9f9ea..7337bb25c 100644 --- a/tests/web_platform/CSS2/normal_flow/test_blocks.py +++ b/tests/web_platform/CSS2/normal_flow/test_blocks.py @@ -2,4 +2,4 @@ class TestBlocks(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'blocks-')) + vars().update(W3CTestCase.find_tests(__file__, "blocks-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_height.py b/tests/web_platform/CSS2/normal_flow/test_height.py index 9c3eb1977..0c83d4d6d 100644 --- a/tests/web_platform/CSS2/normal_flow/test_height.py +++ b/tests/web_platform/CSS2/normal_flow/test_height.py @@ -2,4 +2,4 @@ class TestHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'height-')) + vars().update(W3CTestCase.find_tests(__file__, "height-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_height_applies_to.py b/tests/web_platform/CSS2/normal_flow/test_height_applies_to.py index aa0e23961..36e7ce933 100644 --- a/tests/web_platform/CSS2/normal_flow/test_height_applies_to.py +++ b/tests/web_platform/CSS2/normal_flow/test_height_applies_to.py @@ -2,4 +2,4 @@ class TestHeightAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'height-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "height-applies-to-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_height_inherit.py b/tests/web_platform/CSS2/normal_flow/test_height_inherit.py index afae8dfa4..c93196217 100644 --- a/tests/web_platform/CSS2/normal_flow/test_height_inherit.py +++ b/tests/web_platform/CSS2/normal_flow/test_height_inherit.py @@ -2,4 +2,4 @@ class TestHeightInherit(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'height-inherit-')) + vars().update(W3CTestCase.find_tests(__file__, "height-inherit-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_height_percentage.py b/tests/web_platform/CSS2/normal_flow/test_height_percentage.py index c5a69c8d7..7ef07199f 100644 --- a/tests/web_platform/CSS2/normal_flow/test_height_percentage.py +++ b/tests/web_platform/CSS2/normal_flow/test_height_percentage.py @@ -2,4 +2,4 @@ class TestHeightPercentage(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'height-percentage-')) + vars().update(W3CTestCase.find_tests(__file__, "height-percentage-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_block.py b/tests/web_platform/CSS2/normal_flow/test_inline_block.py index d2b9764ba..3a1169ff9 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_block.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_block.py @@ -2,4 +2,4 @@ class TestInlineBlock(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-block-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-block-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_block_height.py b/tests/web_platform/CSS2/normal_flow/test_inline_block_height.py index 4f28bdbf0..3cf12ed32 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_block_height.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_block_height.py @@ -2,4 +2,4 @@ class TestInlineBlockHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-block-height-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-block-height-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_block_non_replaced_height.py b/tests/web_platform/CSS2/normal_flow/test_inline_block_non_replaced_height.py index 6a5daf682..5109fe3fc 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_block_non_replaced_height.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_block_non_replaced_height.py @@ -2,4 +2,4 @@ class TestInlineBlockNonReplacedHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-block-non-replaced-height-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-block-non-replaced-height-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_block_non_replaced_width.py b/tests/web_platform/CSS2/normal_flow/test_inline_block_non_replaced_width.py index 7e0528257..b36aa6d65 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_block_non_replaced_width.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_block_non_replaced_width.py @@ -2,4 +2,4 @@ class TestInlineBlockNonReplacedWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-block-non-replaced-width-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-block-non-replaced-width-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_block_replaced_height.py b/tests/web_platform/CSS2/normal_flow/test_inline_block_replaced_height.py index 972940c58..683379244 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_block_replaced_height.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_block_replaced_height.py @@ -2,4 +2,4 @@ class TestInlineBlockReplacedHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-block-replaced-height-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-block-replaced-height-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_block_replaced_width.py b/tests/web_platform/CSS2/normal_flow/test_inline_block_replaced_width.py index 8910d1770..b04dff68e 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_block_replaced_width.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_block_replaced_width.py @@ -2,4 +2,4 @@ class TestInlineBlockReplacedWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-block-replaced-width-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-block-replaced-width-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_block_valign.py b/tests/web_platform/CSS2/normal_flow/test_inline_block_valign.py index e5996415a..b213190f2 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_block_valign.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_block_valign.py @@ -2,4 +2,4 @@ class TestInlineBlockValign(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-block-valign-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-block-valign-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_block_width.py b/tests/web_platform/CSS2/normal_flow/test_inline_block_width.py index 14ee3bae7..cddf3a92d 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_block_width.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_block_width.py @@ -2,4 +2,4 @@ class TestInlineBlockWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-block-width-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-block-width-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_block_zorder.py b/tests/web_platform/CSS2/normal_flow/test_inline_block_zorder.py index 95f8bc9a0..352856d19 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_block_zorder.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_block_zorder.py @@ -2,4 +2,4 @@ class TestInlineBlockZorder(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-block-zorder-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-block-zorder-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_non_replaced_height.py b/tests/web_platform/CSS2/normal_flow/test_inline_non_replaced_height.py index 21c7e098d..5c6eb95cb 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_non_replaced_height.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_non_replaced_height.py @@ -2,4 +2,4 @@ class TestInlineNonReplacedHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-non-replaced-height-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-non-replaced-height-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_non_replaced_width.py b/tests/web_platform/CSS2/normal_flow/test_inline_non_replaced_width.py index f135a3126..aaead74fc 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_non_replaced_width.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_non_replaced_width.py @@ -2,4 +2,4 @@ class TestInlineNonReplacedWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-non-replaced-width-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-non-replaced-width-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_replaced_height.py b/tests/web_platform/CSS2/normal_flow/test_inline_replaced_height.py index 94a9473dc..70b60ac77 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_replaced_height.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_replaced_height.py @@ -2,4 +2,4 @@ class TestInlineReplacedHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-replaced-height-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-replaced-height-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_replaced_width.py b/tests/web_platform/CSS2/normal_flow/test_inline_replaced_width.py index 15d7443d6..49f65338d 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_replaced_width.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_replaced_width.py @@ -2,4 +2,4 @@ class TestInlineReplacedWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-replaced-width-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-replaced-width-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_table.py b/tests/web_platform/CSS2/normal_flow/test_inline_table.py index 5c05c60f9..aa6c0d748 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_table.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_table.py @@ -2,4 +2,4 @@ class TestInlineTable(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-table-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-table-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_table_height.py b/tests/web_platform/CSS2/normal_flow/test_inline_table_height.py index a780a7b6c..da3da18ed 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_table_height.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_table_height.py @@ -2,4 +2,4 @@ class TestInlineTableHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-table-height-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-table-height-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_table_valign.py b/tests/web_platform/CSS2/normal_flow/test_inline_table_valign.py index 688529fbd..5b6831197 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_table_valign.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_table_valign.py @@ -2,4 +2,4 @@ class TestInlineTableValign(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-table-valign-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-table-valign-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_table_width.py b/tests/web_platform/CSS2/normal_flow/test_inline_table_width.py index 1614f82ee..e3a59fa61 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_table_width.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_table_width.py @@ -2,4 +2,4 @@ class TestInlineTableWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-table-width-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-table-width-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inline_table_zorder.py b/tests/web_platform/CSS2/normal_flow/test_inline_table_zorder.py index b099bff0a..3e6dc0130 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inline_table_zorder.py +++ b/tests/web_platform/CSS2/normal_flow/test_inline_table_zorder.py @@ -2,4 +2,4 @@ class TestInlineTableZorder(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-table-zorder-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-table-zorder-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_inlines.py b/tests/web_platform/CSS2/normal_flow/test_inlines.py index 41ee8fe56..2831d7c7a 100644 --- a/tests/web_platform/CSS2/normal_flow/test_inlines.py +++ b/tests/web_platform/CSS2/normal_flow/test_inlines.py @@ -2,4 +2,4 @@ class TestInlines(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inlines-')) + vars().update(W3CTestCase.find_tests(__file__, "inlines-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_max_height.py b/tests/web_platform/CSS2/normal_flow/test_max_height.py index 043410ea8..22f84d85e 100644 --- a/tests/web_platform/CSS2/normal_flow/test_max_height.py +++ b/tests/web_platform/CSS2/normal_flow/test_max_height.py @@ -2,4 +2,4 @@ class TestMaxHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'max-height-')) + vars().update(W3CTestCase.find_tests(__file__, "max-height-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_max_height_applies_to.py b/tests/web_platform/CSS2/normal_flow/test_max_height_applies_to.py index aae18434e..7933e4c22 100644 --- a/tests/web_platform/CSS2/normal_flow/test_max_height_applies_to.py +++ b/tests/web_platform/CSS2/normal_flow/test_max_height_applies_to.py @@ -2,4 +2,4 @@ class TestMaxHeightAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'max-height-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "max-height-applies-to-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_max_height_max_width.py b/tests/web_platform/CSS2/normal_flow/test_max_height_max_width.py index 1a98dde30..3803021a8 100644 --- a/tests/web_platform/CSS2/normal_flow/test_max_height_max_width.py +++ b/tests/web_platform/CSS2/normal_flow/test_max_height_max_width.py @@ -2,4 +2,4 @@ class TestMaxHeightMaxWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'max-height-max-width-')) + vars().update(W3CTestCase.find_tests(__file__, "max-height-max-width-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_max_height_percentage.py b/tests/web_platform/CSS2/normal_flow/test_max_height_percentage.py index 19777a9e6..d0015a159 100644 --- a/tests/web_platform/CSS2/normal_flow/test_max_height_percentage.py +++ b/tests/web_platform/CSS2/normal_flow/test_max_height_percentage.py @@ -2,4 +2,4 @@ class TestMaxHeightPercentage(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'max-height-percentage-')) + vars().update(W3CTestCase.find_tests(__file__, "max-height-percentage-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_max_width.py b/tests/web_platform/CSS2/normal_flow/test_max_width.py index 46955ed2b..4aa2365d2 100644 --- a/tests/web_platform/CSS2/normal_flow/test_max_width.py +++ b/tests/web_platform/CSS2/normal_flow/test_max_width.py @@ -2,4 +2,4 @@ class TestMaxWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'max-width-')) + vars().update(W3CTestCase.find_tests(__file__, "max-width-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_max_width_applies_to.py b/tests/web_platform/CSS2/normal_flow/test_max_width_applies_to.py index 2d2a535a9..ad02c2df4 100644 --- a/tests/web_platform/CSS2/normal_flow/test_max_width_applies_to.py +++ b/tests/web_platform/CSS2/normal_flow/test_max_width_applies_to.py @@ -2,4 +2,4 @@ class TestMaxWidthAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'max-width-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "max-width-applies-to-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_max_width_percentage.py b/tests/web_platform/CSS2/normal_flow/test_max_width_percentage.py index cb0371234..60db56be5 100644 --- a/tests/web_platform/CSS2/normal_flow/test_max_width_percentage.py +++ b/tests/web_platform/CSS2/normal_flow/test_max_width_percentage.py @@ -2,4 +2,4 @@ class TestMaxWidthPercentage(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'max-width-percentage-')) + vars().update(W3CTestCase.find_tests(__file__, "max-width-percentage-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_min_height.py b/tests/web_platform/CSS2/normal_flow/test_min_height.py index 7743ae779..bfd926dea 100644 --- a/tests/web_platform/CSS2/normal_flow/test_min_height.py +++ b/tests/web_platform/CSS2/normal_flow/test_min_height.py @@ -2,4 +2,4 @@ class TestMinHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'min-height-')) + vars().update(W3CTestCase.find_tests(__file__, "min-height-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_min_height_applies_to.py b/tests/web_platform/CSS2/normal_flow/test_min_height_applies_to.py index e5cbf817d..810b4050d 100644 --- a/tests/web_platform/CSS2/normal_flow/test_min_height_applies_to.py +++ b/tests/web_platform/CSS2/normal_flow/test_min_height_applies_to.py @@ -2,4 +2,4 @@ class TestMinHeightAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'min-height-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "min-height-applies-to-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_min_height_percentage.py b/tests/web_platform/CSS2/normal_flow/test_min_height_percentage.py index d7cc34451..4e931de38 100644 --- a/tests/web_platform/CSS2/normal_flow/test_min_height_percentage.py +++ b/tests/web_platform/CSS2/normal_flow/test_min_height_percentage.py @@ -2,4 +2,4 @@ class TestMinHeightPercentage(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'min-height-percentage-')) + vars().update(W3CTestCase.find_tests(__file__, "min-height-percentage-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_min_width.py b/tests/web_platform/CSS2/normal_flow/test_min_width.py index 9ccd92c4d..54bb9dbc2 100644 --- a/tests/web_platform/CSS2/normal_flow/test_min_width.py +++ b/tests/web_platform/CSS2/normal_flow/test_min_width.py @@ -2,4 +2,4 @@ class TestMinWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'min-width-')) + vars().update(W3CTestCase.find_tests(__file__, "min-width-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_min_width_applies_to.py b/tests/web_platform/CSS2/normal_flow/test_min_width_applies_to.py index a7dcd97fc..7e85fa65d 100644 --- a/tests/web_platform/CSS2/normal_flow/test_min_width_applies_to.py +++ b/tests/web_platform/CSS2/normal_flow/test_min_width_applies_to.py @@ -2,4 +2,4 @@ class TestMinWidthAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'min-width-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "min-width-applies-to-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_min_width_percentage.py b/tests/web_platform/CSS2/normal_flow/test_min_width_percentage.py index 63cd38607..4f157f697 100644 --- a/tests/web_platform/CSS2/normal_flow/test_min_width_percentage.py +++ b/tests/web_platform/CSS2/normal_flow/test_min_width_percentage.py @@ -2,4 +2,4 @@ class TestMinWidthPercentage(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'min-width-percentage-')) + vars().update(W3CTestCase.find_tests(__file__, "min-width-percentage-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_replaced_elements.py b/tests/web_platform/CSS2/normal_flow/test_replaced_elements.py index a142b7d38..a6254e0bc 100644 --- a/tests/web_platform/CSS2/normal_flow/test_replaced_elements.py +++ b/tests/web_platform/CSS2/normal_flow/test_replaced_elements.py @@ -2,4 +2,4 @@ class TestReplacedElements(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'replaced-elements-')) + vars().update(W3CTestCase.find_tests(__file__, "replaced-elements-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_replaced_intrinsic.py b/tests/web_platform/CSS2/normal_flow/test_replaced_intrinsic.py index 3edd4f782..62f741a7b 100644 --- a/tests/web_platform/CSS2/normal_flow/test_replaced_intrinsic.py +++ b/tests/web_platform/CSS2/normal_flow/test_replaced_intrinsic.py @@ -2,4 +2,4 @@ class TestReplacedIntrinsic(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'replaced-intrinsic-')) + vars().update(W3CTestCase.find_tests(__file__, "replaced-intrinsic-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_root_box.py b/tests/web_platform/CSS2/normal_flow/test_root_box.py index 00cab833e..e06406dca 100644 --- a/tests/web_platform/CSS2/normal_flow/test_root_box.py +++ b/tests/web_platform/CSS2/normal_flow/test_root_box.py @@ -2,4 +2,4 @@ class TestRootBox(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'root-box-')) + vars().update(W3CTestCase.find_tests(__file__, "root-box-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_table_in_inline.py b/tests/web_platform/CSS2/normal_flow/test_table_in_inline.py index 294c27c4f..1e24968b5 100644 --- a/tests/web_platform/CSS2/normal_flow/test_table_in_inline.py +++ b/tests/web_platform/CSS2/normal_flow/test_table_in_inline.py @@ -2,4 +2,4 @@ class TestTableInInline(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'table-in-inline-')) + vars().update(W3CTestCase.find_tests(__file__, "table-in-inline-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_width.py b/tests/web_platform/CSS2/normal_flow/test_width.py index 48db24a90..8eb03d5e2 100644 --- a/tests/web_platform/CSS2/normal_flow/test_width.py +++ b/tests/web_platform/CSS2/normal_flow/test_width.py @@ -2,4 +2,4 @@ class TestWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'width-')) + vars().update(W3CTestCase.find_tests(__file__, "width-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_width_applies_to.py b/tests/web_platform/CSS2/normal_flow/test_width_applies_to.py index cc6040081..489e2775b 100644 --- a/tests/web_platform/CSS2/normal_flow/test_width_applies_to.py +++ b/tests/web_platform/CSS2/normal_flow/test_width_applies_to.py @@ -2,4 +2,4 @@ class TestWidthAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'width-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "width-applies-to-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_width_inherit.py b/tests/web_platform/CSS2/normal_flow/test_width_inherit.py index eb08b37f5..3ce4ef6d6 100644 --- a/tests/web_platform/CSS2/normal_flow/test_width_inherit.py +++ b/tests/web_platform/CSS2/normal_flow/test_width_inherit.py @@ -2,4 +2,4 @@ class TestWidthInherit(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'width-inherit-')) + vars().update(W3CTestCase.find_tests(__file__, "width-inherit-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_width_non_replaced_inline.py b/tests/web_platform/CSS2/normal_flow/test_width_non_replaced_inline.py index 9c3adb35e..6f8f0657c 100644 --- a/tests/web_platform/CSS2/normal_flow/test_width_non_replaced_inline.py +++ b/tests/web_platform/CSS2/normal_flow/test_width_non_replaced_inline.py @@ -2,4 +2,4 @@ class TestWidthNonReplacedInline(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'width-non-replaced-inline-')) + vars().update(W3CTestCase.find_tests(__file__, "width-non-replaced-inline-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_width_percentage.py b/tests/web_platform/CSS2/normal_flow/test_width_percentage.py index ebbf9a14c..82a054937 100644 --- a/tests/web_platform/CSS2/normal_flow/test_width_percentage.py +++ b/tests/web_platform/CSS2/normal_flow/test_width_percentage.py @@ -2,4 +2,4 @@ class TestWidthPercentage(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'width-percentage-')) + vars().update(W3CTestCase.find_tests(__file__, "width-percentage-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_width_replaced_element.py b/tests/web_platform/CSS2/normal_flow/test_width_replaced_element.py index 6bbe90b48..90d089d0b 100644 --- a/tests/web_platform/CSS2/normal_flow/test_width_replaced_element.py +++ b/tests/web_platform/CSS2/normal_flow/test_width_replaced_element.py @@ -2,4 +2,4 @@ class TestWidthReplacedElement(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'width-replaced-element-')) + vars().update(W3CTestCase.find_tests(__file__, "width-replaced-element-")) diff --git a/tests/web_platform/CSS2/normal_flow/test_width_undefined.py b/tests/web_platform/CSS2/normal_flow/test_width_undefined.py index e5a6e8a83..0de29400b 100644 --- a/tests/web_platform/CSS2/normal_flow/test_width_undefined.py +++ b/tests/web_platform/CSS2/normal_flow/test_width_undefined.py @@ -2,4 +2,4 @@ class TestWidthUndefined(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'width-undefined-')) + vars().update(W3CTestCase.find_tests(__file__, "width-undefined-")) diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-001.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-001.json index eb9f370ab..5af625ee8 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-001.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-001.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-002.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-002.json index 7a3a2eb03..ff0365e10 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-002.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-002.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-003.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-003.json index 873b3e786..fe6378ad8 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-003.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-003.json @@ -70,4 +70,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-004.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-004.json index 1ebcaec5d..115050289 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-004.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-004.json @@ -70,4 +70,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-005.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-005.json index e3aed297e..2d6b45c5c 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-005.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-005.json @@ -70,4 +70,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-006.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-006.json index 9d3144a56..187d34af0 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-006.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-006.json @@ -97,4 +97,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-007.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-007.json index 39d8a6889..642793fd5 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-007.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-007.json @@ -66,4 +66,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-008.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-008.json index 7bae5c6b3..6c157ca02 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-008.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-008.json @@ -63,4 +63,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-009.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-009.json index 8b87fb932..54bb47215 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-009.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-009.json @@ -64,4 +64,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-010.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-010.json index e412df921..eebbcc74d 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-010.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-010.json @@ -70,4 +70,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-011.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-011.json index 1e6896127..867fb4f41 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-011.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-011.json @@ -70,4 +70,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-012.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-012.json index 79276cbe9..74337f355 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-012.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-height-012.json @@ -70,4 +70,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-001.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-001.json index eddcda08e..7797ba60b 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-001.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-001.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-002.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-002.json index 5403df040..fa5b03810 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-002.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-002.json @@ -78,4 +78,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-003.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-003.json index fafc447b5..604209294 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-003.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-003.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-004.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-004.json index ac698710b..984f5b37b 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-004.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-004.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-005.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-005.json index cda97e0d5..3fb066a4f 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-005.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-005.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-006.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-006.json index 4c1f79f45..5d102d8a0 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-006.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-006.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-007.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-007.json index 474ffd3ff..9f52656f6 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-007.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-007.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-008.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-008.json index 26dfb7847..10b62af6a 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-008.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-008.json @@ -64,4 +64,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-009.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-009.json index b0ad36f79..98ee1f0b0 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-009.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-009.json @@ -81,4 +81,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-010.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-010.json index 7bf5ea96d..c799e3082 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-010.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-010.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-011.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-011.json index 84025b76a..cf152d7c6 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-011.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-011.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-012.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-012.json index 6f4fe3a9c..24107a8bd 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-012.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-max-height-012.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-001.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-001.json index 0b7ac76ad..fd1e3f476 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-001.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-001.json @@ -81,4 +81,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-002.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-002.json index f58c78f6a..40b20f1f9 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-002.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-002.json @@ -81,4 +81,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-003.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-003.json index 65a3482c8..3528f700c 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-003.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-003.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-004.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-004.json index 3eadd9adb..1e1e336c4 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-004.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-004.json @@ -83,4 +83,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-005.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-005.json index 0bd62d417..0ae976bde 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-005.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-005.json @@ -83,4 +83,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-006.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-006.json index 2dbcf0e9b..f0b67f6ef 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-006.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-006.json @@ -83,4 +83,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-007.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-007.json index 5e3d25060..900a34d1f 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-007.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-007.json @@ -83,4 +83,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-008.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-008.json index f0f40b76c..839f29246 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-008.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-008.json @@ -83,4 +83,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-009.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-009.json index a70bd8ff3..e0a610348 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-009.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-009.json @@ -83,4 +83,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-010.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-010.json index d3426ede9..7f645b306 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-010.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-010.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-011.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-011.json index 43b519cfd..4e751c48b 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-011.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-011.json @@ -83,4 +83,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-012.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-012.json index 973890fef..d42132f35 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-012.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-012.json @@ -83,4 +83,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-013.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-013.json index 8cafad9c0..3ad92c394 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-013.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-013.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-014.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-014.json index 32abfbb36..7a47043ff 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-014.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-014.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-015.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-015.json index 6a9fd229e..af0d81cc6 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-015.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-015.json @@ -70,4 +70,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-016.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-016.json index d6f31000a..9fa2d4f65 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-016.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-016.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-017.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-017.json index 189be5231..786b627d0 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-017.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-017.json @@ -54,4 +54,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-018.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-018.json index 4d115ee7a..fa5734df6 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-018.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-018.json @@ -55,4 +55,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-019.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-019.json index 0a66a5749..37bcc6545 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-019.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-019.json @@ -56,4 +56,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-020.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-020.json index bd69bd8c4..813dd0733 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-020.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-020.json @@ -54,4 +54,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-021.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-021.json index 2102d81fc..b972b6c06 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-021.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-021.json @@ -54,4 +54,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-022.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-022.json index eb1ead051..da0f23aba 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-022.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-022.json @@ -55,4 +55,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-023.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-023.json index 53740d08a..c88f60a7f 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-023.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-023.json @@ -56,4 +56,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-024.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-024.json index 695517576..28be9d6fc 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-024.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-024.json @@ -54,4 +54,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-025.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-025.json index 0f7edaa0f..9cd38abbb 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-025.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-025.json @@ -54,4 +54,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-026.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-026.json index 104cf89ee..ad1b99663 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-026.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-026.json @@ -54,4 +54,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-027.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-027.json index ce5db8ffd..b294840bb 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-027.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-027.json @@ -65,4 +65,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-028.json b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-028.json index 0d178ed90..8ed936077 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-028.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-non-replaced-width-028.json @@ -90,4 +90,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-001.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-001.json index f55f2115b..77af1bd04 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-001.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-001.json @@ -42,4 +42,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-002.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-002.json index 93993c3dc..f6ab3636c 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-002.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-002.json @@ -57,4 +57,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-003.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-003.json index f3eafac4e..0511a6bac 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-003.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-003.json @@ -57,4 +57,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-004.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-004.json index eace0a449..804377a54 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-004.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-004.json @@ -80,4 +80,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-005.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-005.json index c57277aaa..c0ae1f79b 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-005.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-005.json @@ -80,4 +80,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-006.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-006.json index f012ba00e..8f3836cb5 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-006.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-006.json @@ -63,4 +63,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-007.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-007.json index 6388fb818..ae60f4e99 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-007.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-007.json @@ -77,4 +77,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-008.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-008.json index 3fe5435ba..8b7736be2 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-008.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-008.json @@ -64,4 +64,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-009.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-009.json index f4a6958ba..c33092557 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-009.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-009.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-010.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-010.json index 0f9e5c4ba..1769436e1 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-010.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-010.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-011.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-011.json index c6db222f7..f2166a95c 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-011.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-011.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-012.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-012.json index 39116e677..12c17dec0 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-012.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-012.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-013.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-013.json index 670239202..0c0e2146b 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-013.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-013.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-014.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-014.json index d0d4698ca..4c735b849 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-014.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-014.json @@ -80,4 +80,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-016.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-016.json index e3f40244d..4c7743cfe 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-016.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-016.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-017.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-017.json index a36874831..fca4cc31f 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-017.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-017.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-018.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-018.json index 9f8797d82..e4ab67446 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-018.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-018.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-019.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-019.json index 71f0af7e0..21b1f749e 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-019.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-019.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-020.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-020.json index 8a10db81c..e64ecf144 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-020.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-020.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-021.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-021.json index e36713d2d..f6c3c75cd 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-021.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-021.json @@ -80,4 +80,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-022.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-022.json index fd5ddb7b5..d19f27276 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-022.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-022.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-023.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-023.json index 3bdd2828d..5c7f03c68 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-023.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-023.json @@ -64,4 +64,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-024.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-024.json index 29a51b2cf..3a956ee8e 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-024.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-024.json @@ -64,4 +64,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-025.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-025.json index 7c7633d98..ecfcc0d69 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-025.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-025.json @@ -84,4 +84,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-026.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-026.json index 2d05b32f8..93b8c2283 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-026.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-026.json @@ -84,4 +84,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-027.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-027.json index 04b0638b9..11509fbf7 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-027.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-027.json @@ -70,4 +70,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-028.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-028.json index 631bc8335..a1a26e61e 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-028.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-028.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-029.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-029.json index 878e810f7..0ad6df355 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-029.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-029.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-030.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-030.json index 356e41c96..052fb0251 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-030.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-030.json @@ -64,4 +64,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-031.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-031.json index afd911730..3a21e48fc 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-031.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-031.json @@ -64,4 +64,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-032.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-032.json index 25d971a58..81123d5c5 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-032.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-032.json @@ -84,4 +84,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-033.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-033.json index 1a9ce8af2..de567e11c 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-033.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-033.json @@ -84,4 +84,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-034.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-034.json index 05d1a81fc..f37a80fa3 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-034.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-034.json @@ -70,4 +70,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-035.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-035.json index 5b2a73bcf..afdee9e8c 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-035.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-035.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-036.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-036.json index 74dc26628..1f2078750 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-036.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-height-036.json @@ -136,4 +136,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-001.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-001.json index 9c0a37291..ffcac9944 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-001.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-001.json @@ -73,4 +73,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-002.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-002.json index 1d400943a..68d58361f 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-002.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-002.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003.json index 2834d60dd..105981015 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003.json @@ -80,4 +80,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003a.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003a.json index b4126f8b3..74207ce81 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003a.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003a.json @@ -53,4 +53,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003b.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003b.json index c6450c68b..3a9776c50 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003b.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003b.json @@ -53,4 +53,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003c.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003c.json index 7779c8cc8..83306101f 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003c.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-003c.json @@ -53,4 +53,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-004.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-004.json index 8f1cd4a59..86aaf89ff 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-004.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-004.json @@ -87,4 +87,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-006.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-006.json index 018598acb..701a21a00 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-006.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-006.json @@ -74,4 +74,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-008.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-008.json index 3057ee875..f648abf9a 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-008.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-008.json @@ -76,4 +76,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-009.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-009.json index 620e637a4..44959d4b3 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-009.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-009.json @@ -83,4 +83,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-010.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-010.json index 5ece7b126..b68eade7b 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-010.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-010.json @@ -84,4 +84,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-011.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-011.json index cf24425b0..c58229d09 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-011.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-011.json @@ -91,4 +91,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-013.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-013.json index bb33bb665..613f4583f 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-013.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-013.json @@ -77,4 +77,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-015.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-015.json index b214e3468..55275a2d2 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-015.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-015.json @@ -77,4 +77,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-020.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-020.json index 9f69dc96d..b9f7fbc30 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-020.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-020.json @@ -77,4 +77,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-022.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-022.json index 57d2d19af..40e492a81 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-022.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-022.json @@ -78,4 +78,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-023.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-023.json index 88a288df8..29240fa76 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-023.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-023.json @@ -84,4 +84,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-024.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-024.json index f0064c240..fdf983256 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-024.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-024.json @@ -85,4 +85,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-025.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-025.json index 4c68373a1..e3ac67393 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-025.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-025.json @@ -92,4 +92,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-027.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-027.json index 0cefa6a59..362ac4dc4 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-027.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-027.json @@ -78,4 +78,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-029.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-029.json index fc236f155..d4edc3d6f 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-029.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-029.json @@ -78,4 +78,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-030.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-030.json index 381dfc71f..bf18ba0ee 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-030.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-030.json @@ -84,4 +84,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-031.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-031.json index 12f2ee562..60ed51c6d 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-031.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-031.json @@ -85,4 +85,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-032.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-032.json index a9be54868..26489f50f 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-032.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-032.json @@ -91,4 +91,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-034.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-034.json index 472373549..05f93ca52 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-034.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-034.json @@ -77,4 +77,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-036.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-036.json index 626ef99b3..77034c17a 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-036.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-036.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-037.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-037.json index 894f50455..bb1044e48 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-037.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-037.json @@ -84,4 +84,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-038.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-038.json index ddc1f12a7..8341384c3 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-038.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-038.json @@ -85,4 +85,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-039.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-039.json index 59dd818be..670ca12a8 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-039.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-039.json @@ -93,4 +93,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-041.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-041.json index bd2e749f2..ffd14fd6d 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-041.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-041.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-043.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-043.json index 592cc059e..a80217acf 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-043.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-043.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-048.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-048.json index 5abfa8da6..e68c722b8 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-048.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-048.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-050.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-050.json index 73f0b9854..e4d9a0f42 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-050.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-050.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-051.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-051.json index 8ad9c3a81..b18d23e66 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-051.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-051.json @@ -84,4 +84,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-052.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-052.json index 18ed4b316..6dc9e6360 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-052.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-052.json @@ -85,4 +85,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-053.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-053.json index b3d9bf208..5f2020354 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-053.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-053.json @@ -95,4 +95,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-055.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-055.json index a0115a73a..df5e00d3e 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-055.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-055.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-057.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-057.json index ae1ce9bcc..f54eef269 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-057.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-057.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-062.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-062.json index 99ade3a73..1fe58f90e 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-062.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-062.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-064.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-064.json index 8548f17b3..1ddc9ff78 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-064.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-064.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-065.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-065.json index 11cb6cd24..26ad2263a 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-065.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-065.json @@ -84,4 +84,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-066.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-066.json index ec996245a..df662c50b 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-066.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-066.json @@ -85,4 +85,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-067.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-067.json index c09569d59..5a5466c47 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-067.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-067.json @@ -95,4 +95,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-069.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-069.json index 382351c55..04881da4b 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-069.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-069.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-071.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-071.json index 8942f8868..ba65f6387 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-071.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-071.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-076.json b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-076.json index ff3ecd21e..d32d4c919 100644 --- a/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-076.json +++ b/tests/web_platform/CSS2/positioning/data/absolute-replaced-width-076.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-001.json b/tests/web_platform/CSS2/positioning/data/abspos-001.json index b5c3fa34a..f8ebc550b 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-001.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-001.json @@ -189,4 +189,4 @@ "border_right_color": "initial" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-002.json b/tests/web_platform/CSS2/positioning/data/abspos-002.json index 82d100c54..a32a330b6 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-002.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-002.json @@ -98,4 +98,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-007.json b/tests/web_platform/CSS2/positioning/data/abspos-007.json index c31ab58fd..74e5f5d67 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-007.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-007.json @@ -97,4 +97,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-008.json b/tests/web_platform/CSS2/positioning/data/abspos-008.json index 073ac19dd..c767e7324 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-008.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-008.json @@ -94,4 +94,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-009.json b/tests/web_platform/CSS2/positioning/data/abspos-009.json index 5a6d76b3a..6594befdb 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-009.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-009.json @@ -55,4 +55,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-011.json b/tests/web_platform/CSS2/positioning/data/abspos-011.json index 50aac054c..9044cc5b0 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-011.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-011.json @@ -113,4 +113,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-012.json b/tests/web_platform/CSS2/positioning/data/abspos-012.json index a76b71d1f..2e2bfe416 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-012.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-012.json @@ -123,4 +123,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-013.json b/tests/web_platform/CSS2/positioning/data/abspos-013.json index e9c6cafee..18badfee3 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-013.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-013.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-014.json b/tests/web_platform/CSS2/positioning/data/abspos-014.json index 872a706d7..d092936c1 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-014.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-014.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-015.json b/tests/web_platform/CSS2/positioning/data/abspos-015.json index 93422e442..5c9a95a30 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-015.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-015.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-016.json b/tests/web_platform/CSS2/positioning/data/abspos-016.json index 39ef8299c..84aa6006c 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-016.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-016.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-017.json b/tests/web_platform/CSS2/positioning/data/abspos-017.json index 66c92f264..a5204f111 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-017.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-017.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-018.json b/tests/web_platform/CSS2/positioning/data/abspos-018.json index a000564ac..7edae9caf 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-018.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-018.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-019.json b/tests/web_platform/CSS2/positioning/data/abspos-019.json index 93422e442..5c9a95a30 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-019.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-019.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-020.json b/tests/web_platform/CSS2/positioning/data/abspos-020.json index 39ef8299c..84aa6006c 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-020.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-020.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-022.json b/tests/web_platform/CSS2/positioning/data/abspos-022.json index 92372fbc7..8da3ebaf7 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-022.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-022.json @@ -127,4 +127,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-024.json b/tests/web_platform/CSS2/positioning/data/abspos-024.json index 1071ad02c..94ceea8a8 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-024.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-024.json @@ -50,4 +50,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-025.json b/tests/web_platform/CSS2/positioning/data/abspos-025.json index a5e2593c3..dd977d4c1 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-025.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-025.json @@ -67,4 +67,4 @@ "font_weight": "normal" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-026.json b/tests/web_platform/CSS2/positioning/data/abspos-026.json index 4103c26fd..869417bc6 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-026.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-026.json @@ -45,4 +45,4 @@ "font_weight": "normal" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-027.json b/tests/web_platform/CSS2/positioning/data/abspos-027.json index 63cceb85a..462f60214 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-027.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-027.json @@ -110,4 +110,4 @@ "font_weight": "normal" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-028.json b/tests/web_platform/CSS2/positioning/data/abspos-028.json index 70920941c..6be2fc070 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-028.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-028.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-001.json b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-001.json index 4a637c1d0..902694bdb 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-001.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-001.json @@ -72,4 +72,4 @@ "unicode_bidi": "embed" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-002.json b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-002.json index 4d1bc6f69..c6fbba780 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-002.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-002.json @@ -72,4 +72,4 @@ "unicode_bidi": "embed" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-003.json b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-003.json index bf720c6a1..fc858ad1f 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-003.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-003.json @@ -72,4 +72,4 @@ "unicode_bidi": "embed" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-004.json b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-004.json index 46352ee3e..e496da8c5 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-004.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-004.json @@ -72,4 +72,4 @@ "unicode_bidi": "embed" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-005.json b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-005.json index d6a6616d9..996028360 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-005.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-005.json @@ -72,4 +72,4 @@ "unicode_bidi": "embed" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-006.json b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-006.json index 1d97d026f..189cb3708 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-006.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-006.json @@ -72,4 +72,4 @@ "unicode_bidi": "embed" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-007.json b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-007.json index b52f8dc03..f5140be20 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-007.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-007.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-008.json b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-008.json index d632193db..d7dcad910 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-008.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-008.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-009.json b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-009.json index 18d00a030..2aa4f2b2f 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-009.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-009.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-010.json b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-010.json index a857b4bd4..5cab7a65d 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-containing-block-010.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-containing-block-010.json @@ -140,4 +140,4 @@ "border_right_color": "red" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-overflow-001.json b/tests/web_platform/CSS2/positioning/data/abspos-overflow-001.json index 6a74f22bf..54f5ffcd6 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-overflow-001.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-overflow-001.json @@ -122,4 +122,4 @@ "border_right_color": "initial" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-overflow-002.json b/tests/web_platform/CSS2/positioning/data/abspos-overflow-002.json index 2004a7cd1..81ba2207d 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-overflow-002.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-overflow-002.json @@ -126,4 +126,4 @@ "border_right_color": "initial" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-overflow-003.json b/tests/web_platform/CSS2/positioning/data/abspos-overflow-003.json index deaa3cbdd..c65fc80bd 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-overflow-003.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-overflow-003.json @@ -127,4 +127,4 @@ "border_right_color": "initial" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-overflow-004.json b/tests/web_platform/CSS2/positioning/data/abspos-overflow-004.json index dee3b2cad..039e94e27 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-overflow-004.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-overflow-004.json @@ -104,4 +104,4 @@ "border_right_color": "initial" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-overflow-005.json b/tests/web_platform/CSS2/positioning/data/abspos-overflow-005.json index b8888d603..80e82a9d7 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-overflow-005.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-overflow-005.json @@ -108,4 +108,4 @@ "border_right_color": "initial" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-overflow-006.json b/tests/web_platform/CSS2/positioning/data/abspos-overflow-006.json index e7402bbdd..529df54be 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-overflow-006.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-overflow-006.json @@ -110,4 +110,4 @@ "border_right_color": "initial" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-overflow-007.json b/tests/web_platform/CSS2/positioning/data/abspos-overflow-007.json index 909d167a4..c4dde218e 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-overflow-007.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-overflow-007.json @@ -108,4 +108,4 @@ "border_right_color": "initial" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-overflow-008.json b/tests/web_platform/CSS2/positioning/data/abspos-overflow-008.json index 0fe2bb450..f239b6685 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-overflow-008.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-overflow-008.json @@ -112,4 +112,4 @@ "border_right_color": "initial" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-overflow-009.json b/tests/web_platform/CSS2/positioning/data/abspos-overflow-009.json index 67abb07a5..95c572e2a 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-overflow-009.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-overflow-009.json @@ -114,4 +114,4 @@ "border_right_color": "initial" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-overflow-010.json b/tests/web_platform/CSS2/positioning/data/abspos-overflow-010.json index 2f56523e2..aa6e5f5f0 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-overflow-010.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-overflow-010.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-overflow-011.json b/tests/web_platform/CSS2/positioning/data/abspos-overflow-011.json index 7b21f3271..faf439491 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-overflow-011.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-overflow-011.json @@ -81,4 +81,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-overflow-012.json b/tests/web_platform/CSS2/positioning/data/abspos-overflow-012.json index 723b07da1..514a9ce2d 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-overflow-012.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-overflow-012.json @@ -77,4 +77,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-width-001.json b/tests/web_platform/CSS2/positioning/data/abspos-width-001.json index a3eea0655..3aca62ccc 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-width-001.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-width-001.json @@ -124,4 +124,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-width-002.json b/tests/web_platform/CSS2/positioning/data/abspos-width-002.json index fb5ea4c6d..8968cd4e3 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-width-002.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-width-002.json @@ -83,4 +83,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-width-003.json b/tests/web_platform/CSS2/positioning/data/abspos-width-003.json index 435b66da7..af92b5989 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-width-003.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-width-003.json @@ -83,4 +83,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-width-004.json b/tests/web_platform/CSS2/positioning/data/abspos-width-004.json index 781595390..8c92fd27f 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-width-004.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-width-004.json @@ -83,4 +83,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-width-005.json b/tests/web_platform/CSS2/positioning/data/abspos-width-005.json index b882e91c2..d152c50d9 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-width-005.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-width-005.json @@ -86,4 +86,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/abspos-zero-width-001.json b/tests/web_platform/CSS2/positioning/data/abspos-zero-width-001.json index b59e59b18..515c01a85 100644 --- a/tests/web_platform/CSS2/positioning/data/abspos-zero-width-001.json +++ b/tests/web_platform/CSS2/positioning/data/abspos-zero-width-001.json @@ -41,4 +41,4 @@ "unicode_bidi": "embed" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-004.json b/tests/web_platform/CSS2/positioning/data/bottom-004.json index 23ecf3e8f..b578dfcc4 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-004.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-004.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-005.json b/tests/web_platform/CSS2/positioning/data/bottom-005.json index b9a920705..cb6f092e7 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-005.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-005.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-006.json b/tests/web_platform/CSS2/positioning/data/bottom-006.json index 9bb4343d8..bdfbb0303 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-006.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-006.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-007.json b/tests/web_platform/CSS2/positioning/data/bottom-007.json index 3b21ec71f..a353a7a91 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-007.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-007.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-008.json b/tests/web_platform/CSS2/positioning/data/bottom-008.json index 7db5658e9..9c763d0de 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-008.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-008.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-016.json b/tests/web_platform/CSS2/positioning/data/bottom-016.json index 233b3a185..52a242188 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-016.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-016.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-017.json b/tests/web_platform/CSS2/positioning/data/bottom-017.json index b4598bc21..5a6805ee2 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-017.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-017.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-018.json b/tests/web_platform/CSS2/positioning/data/bottom-018.json index bbc9cdb18..53346831f 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-018.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-018.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-019.json b/tests/web_platform/CSS2/positioning/data/bottom-019.json index 515085871..77b3747a5 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-019.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-019.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-020.json b/tests/web_platform/CSS2/positioning/data/bottom-020.json index b9478bb37..1b63474c4 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-020.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-020.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-028.json b/tests/web_platform/CSS2/positioning/data/bottom-028.json index 332322a9b..022629afd 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-028.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-028.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-029.json b/tests/web_platform/CSS2/positioning/data/bottom-029.json index dbfdce59e..e477eca34 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-029.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-029.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-030.json b/tests/web_platform/CSS2/positioning/data/bottom-030.json index bf03fcd0f..d2fd6f446 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-030.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-030.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-031.json b/tests/web_platform/CSS2/positioning/data/bottom-031.json index b6ee0ae2a..637d7b8a7 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-031.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-031.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-032.json b/tests/web_platform/CSS2/positioning/data/bottom-032.json index 131bab51a..5c3207424 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-032.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-032.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-040.json b/tests/web_platform/CSS2/positioning/data/bottom-040.json index fa7f0aeab..6b7bb1987 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-040.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-040.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-041.json b/tests/web_platform/CSS2/positioning/data/bottom-041.json index 4eab74e7e..2b11db4f9 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-041.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-041.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-042.json b/tests/web_platform/CSS2/positioning/data/bottom-042.json index 6e3482374..7b6ac5d70 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-042.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-042.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-043.json b/tests/web_platform/CSS2/positioning/data/bottom-043.json index 5c1831f45..477f39d8c 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-043.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-043.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-044.json b/tests/web_platform/CSS2/positioning/data/bottom-044.json index f322838fc..1c8738412 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-044.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-044.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-052.json b/tests/web_platform/CSS2/positioning/data/bottom-052.json index 78a97fa7a..c31eee59c 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-052.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-052.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-053.json b/tests/web_platform/CSS2/positioning/data/bottom-053.json index 1e7d89dec..9738e75f3 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-053.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-053.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-054.json b/tests/web_platform/CSS2/positioning/data/bottom-054.json index 45f811c3e..979e086ee 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-054.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-054.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-055.json b/tests/web_platform/CSS2/positioning/data/bottom-055.json index 252a06c6a..8ba99b7e5 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-055.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-055.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-056.json b/tests/web_platform/CSS2/positioning/data/bottom-056.json index 571505e7a..97b9a2e88 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-056.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-056.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-064.json b/tests/web_platform/CSS2/positioning/data/bottom-064.json index 4c4a9ce3c..1bf3fdb7c 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-064.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-064.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-065.json b/tests/web_platform/CSS2/positioning/data/bottom-065.json index 38122bfbd..4c3b34c18 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-065.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-065.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-066.json b/tests/web_platform/CSS2/positioning/data/bottom-066.json index b71dabf53..a0ce8361d 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-066.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-066.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-067.json b/tests/web_platform/CSS2/positioning/data/bottom-067.json index 9e7d6a443..ba89ed68a 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-067.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-067.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-068.json b/tests/web_platform/CSS2/positioning/data/bottom-068.json index f0252a9a6..4cf7136d4 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-068.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-068.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-076.json b/tests/web_platform/CSS2/positioning/data/bottom-076.json index aacd60b4d..456b63bb2 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-076.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-076.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-077.json b/tests/web_platform/CSS2/positioning/data/bottom-077.json index 1eb11a96c..2c31db478 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-077.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-077.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-078.json b/tests/web_platform/CSS2/positioning/data/bottom-078.json index d032af729..228231749 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-078.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-078.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-079.json b/tests/web_platform/CSS2/positioning/data/bottom-079.json index 6a76fa0bf..5a44eec0c 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-079.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-079.json @@ -56,4 +56,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-080.json b/tests/web_platform/CSS2/positioning/data/bottom-080.json index 20c5aeb3f..0d0f60fac 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-080.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-080.json @@ -56,4 +56,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-088.json b/tests/web_platform/CSS2/positioning/data/bottom-088.json index 7b8035f17..5eba72c71 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-088.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-088.json @@ -55,4 +55,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-089.json b/tests/web_platform/CSS2/positioning/data/bottom-089.json index 91430267d..0b450232d 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-089.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-089.json @@ -55,4 +55,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-090.json b/tests/web_platform/CSS2/positioning/data/bottom-090.json index eb17f5153..7c14fc16e 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-090.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-090.json @@ -55,4 +55,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-091.json b/tests/web_platform/CSS2/positioning/data/bottom-091.json index 497bef2d3..9d49fee2a 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-091.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-091.json @@ -55,4 +55,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-092.json b/tests/web_platform/CSS2/positioning/data/bottom-092.json index fab2c5bbc..c167548c9 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-092.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-092.json @@ -55,4 +55,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-100.json b/tests/web_platform/CSS2/positioning/data/bottom-100.json index 76165ee4c..4317cdd0b 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-100.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-100.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-101.json b/tests/web_platform/CSS2/positioning/data/bottom-101.json index 40fa4f321..9fb1cf8af 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-101.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-101.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-102.json b/tests/web_platform/CSS2/positioning/data/bottom-102.json index 2b59ef9ce..10216eef6 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-102.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-102.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-103.json b/tests/web_platform/CSS2/positioning/data/bottom-103.json index 14b8b3aec..00046f2c0 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-103.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-103.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-104.json b/tests/web_platform/CSS2/positioning/data/bottom-104.json index d674137e7..70e283e42 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-104.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-104.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-109.json b/tests/web_platform/CSS2/positioning/data/bottom-109.json index 6041de152..12258e4a1 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-109.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-109.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-110.json b/tests/web_platform/CSS2/positioning/data/bottom-110.json index 2130b85a0..be197e45a 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-110.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-110.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-111.json b/tests/web_platform/CSS2/positioning/data/bottom-111.json index 58017dee0..f05f844c0 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-111.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-111.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-112.json b/tests/web_platform/CSS2/positioning/data/bottom-112.json index b724fc60d..f01cafd93 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-112.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-112.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-113.json b/tests/web_platform/CSS2/positioning/data/bottom-113.json index 8ef806e3e..908eb86fc 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-113.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-113.json @@ -57,4 +57,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-001.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-001.json index 4476bead5..7d7fad67d 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-001.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-001.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-002.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-002.json index 95adfecaf..00f392b82 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-002.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-002.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-003.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-003.json index ea1252b04..c514880b0 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-003.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-003.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-004.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-004.json index b0b91e355..93e0a366d 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-004.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-004.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-005.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-005.json index f10abd369..8d2a1e59f 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-005.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-005.json @@ -66,4 +66,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-006.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-006.json index e10dc119f..9d398f83f 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-006.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-006.json @@ -66,4 +66,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-007.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-007.json index 6949e34d3..d2e9939aa 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-007.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-007.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-008.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-008.json index d9d52e1d1..5e20fe58d 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-008.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-008.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-009.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-009.json index 6e4d0b100..6861f8547 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-009.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-009.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-010.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-010.json index bf1880611..51bbfccad 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-010.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-010.json @@ -40,4 +40,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-012.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-012.json index c53c60b58..edcb6ffe2 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-012.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-012.json @@ -64,4 +64,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-013.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-013.json index 52b774229..fb5b5be63 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-013.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-013.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-014.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-014.json index d854c0a40..27d0a602f 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-014.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-014.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-015.json b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-015.json index 9228f65c7..c6d51fd9c 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-applies-to-015.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-applies-to-015.json @@ -65,4 +65,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-offset-001.json b/tests/web_platform/CSS2/positioning/data/bottom-offset-001.json index 24bf9ab48..fe8690b13 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-offset-001.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-offset-001.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-offset-002.json b/tests/web_platform/CSS2/positioning/data/bottom-offset-002.json index eff1c1105..92520dae9 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-offset-002.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-offset-002.json @@ -61,4 +61,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-offset-003.json b/tests/web_platform/CSS2/positioning/data/bottom-offset-003.json index 64310d49e..129d8322b 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-offset-003.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-offset-003.json @@ -69,4 +69,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/bottom-offset-percentage-001.json b/tests/web_platform/CSS2/positioning/data/bottom-offset-percentage-001.json index d5550f50e..930b7a483 100644 --- a/tests/web_platform/CSS2/positioning/data/bottom-offset-percentage-001.json +++ b/tests/web_platform/CSS2/positioning/data/bottom-offset-percentage-001.json @@ -89,4 +89,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-001.json b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-001.json index a0f43cfb4..db500f85c 100644 --- a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-001.json +++ b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-001.json @@ -85,4 +85,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-002.json b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-002.json index c410c9326..1c8bb732f 100644 --- a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-002.json +++ b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-002.json @@ -84,4 +84,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-003.json b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-003.json index 59aa3401c..d606238f3 100644 --- a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-003.json +++ b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-003.json @@ -84,4 +84,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-004.json b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-004.json index eb66a0e15..e2b05f2fc 100644 --- a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-004.json +++ b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-004.json @@ -74,4 +74,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-005.json b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-005.json index 1e51ef07e..b8e78385c 100644 --- a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-005.json +++ b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-005.json @@ -85,4 +85,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-005a.json b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-005a.json index e41befa3d..96e78c5f7 100644 --- a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-005a.json +++ b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-005a.json @@ -87,4 +87,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-005b.json b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-005b.json index b9fc2ef48..f38de2d6c 100644 --- a/tests/web_platform/CSS2/positioning/data/dynamic-top-change-005b.json +++ b/tests/web_platform/CSS2/positioning/data/dynamic-top-change-005b.json @@ -85,4 +85,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-004.json b/tests/web_platform/CSS2/positioning/data/left-004.json index 8760478e7..60e4595fa 100644 --- a/tests/web_platform/CSS2/positioning/data/left-004.json +++ b/tests/web_platform/CSS2/positioning/data/left-004.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-005.json b/tests/web_platform/CSS2/positioning/data/left-005.json index a76e6f19e..b4334bf68 100644 --- a/tests/web_platform/CSS2/positioning/data/left-005.json +++ b/tests/web_platform/CSS2/positioning/data/left-005.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-006.json b/tests/web_platform/CSS2/positioning/data/left-006.json index 2eb8faeb2..c0d47d20e 100644 --- a/tests/web_platform/CSS2/positioning/data/left-006.json +++ b/tests/web_platform/CSS2/positioning/data/left-006.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-007.json b/tests/web_platform/CSS2/positioning/data/left-007.json index ab1c5d474..5a1d745de 100644 --- a/tests/web_platform/CSS2/positioning/data/left-007.json +++ b/tests/web_platform/CSS2/positioning/data/left-007.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-008.json b/tests/web_platform/CSS2/positioning/data/left-008.json index 2d4f059f7..f75164b69 100644 --- a/tests/web_platform/CSS2/positioning/data/left-008.json +++ b/tests/web_platform/CSS2/positioning/data/left-008.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-016.json b/tests/web_platform/CSS2/positioning/data/left-016.json index 0dc1a123b..ec67eb59e 100644 --- a/tests/web_platform/CSS2/positioning/data/left-016.json +++ b/tests/web_platform/CSS2/positioning/data/left-016.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-017.json b/tests/web_platform/CSS2/positioning/data/left-017.json index 77fc11e2f..ae497dc32 100644 --- a/tests/web_platform/CSS2/positioning/data/left-017.json +++ b/tests/web_platform/CSS2/positioning/data/left-017.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-018.json b/tests/web_platform/CSS2/positioning/data/left-018.json index cc8b61c8a..aa4ed24a4 100644 --- a/tests/web_platform/CSS2/positioning/data/left-018.json +++ b/tests/web_platform/CSS2/positioning/data/left-018.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-019.json b/tests/web_platform/CSS2/positioning/data/left-019.json index f0e336de1..3324c62eb 100644 --- a/tests/web_platform/CSS2/positioning/data/left-019.json +++ b/tests/web_platform/CSS2/positioning/data/left-019.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-020.json b/tests/web_platform/CSS2/positioning/data/left-020.json index 43a47a6f2..73a4f2b88 100644 --- a/tests/web_platform/CSS2/positioning/data/left-020.json +++ b/tests/web_platform/CSS2/positioning/data/left-020.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-028.json b/tests/web_platform/CSS2/positioning/data/left-028.json index 62f30c91f..0fcdb75c1 100644 --- a/tests/web_platform/CSS2/positioning/data/left-028.json +++ b/tests/web_platform/CSS2/positioning/data/left-028.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-029.json b/tests/web_platform/CSS2/positioning/data/left-029.json index 002864628..9b5a9607a 100644 --- a/tests/web_platform/CSS2/positioning/data/left-029.json +++ b/tests/web_platform/CSS2/positioning/data/left-029.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-030.json b/tests/web_platform/CSS2/positioning/data/left-030.json index 4ea92832e..0a2ef6d5d 100644 --- a/tests/web_platform/CSS2/positioning/data/left-030.json +++ b/tests/web_platform/CSS2/positioning/data/left-030.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-031.json b/tests/web_platform/CSS2/positioning/data/left-031.json index 96e97c91e..18fa407a1 100644 --- a/tests/web_platform/CSS2/positioning/data/left-031.json +++ b/tests/web_platform/CSS2/positioning/data/left-031.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-032.json b/tests/web_platform/CSS2/positioning/data/left-032.json index fb44791ac..0fe4184f1 100644 --- a/tests/web_platform/CSS2/positioning/data/left-032.json +++ b/tests/web_platform/CSS2/positioning/data/left-032.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-040.json b/tests/web_platform/CSS2/positioning/data/left-040.json index 8bb6db750..df4886cda 100644 --- a/tests/web_platform/CSS2/positioning/data/left-040.json +++ b/tests/web_platform/CSS2/positioning/data/left-040.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-041.json b/tests/web_platform/CSS2/positioning/data/left-041.json index e04afd60f..cbd0f1db5 100644 --- a/tests/web_platform/CSS2/positioning/data/left-041.json +++ b/tests/web_platform/CSS2/positioning/data/left-041.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-042.json b/tests/web_platform/CSS2/positioning/data/left-042.json index 5ddfb4fd9..b030e4113 100644 --- a/tests/web_platform/CSS2/positioning/data/left-042.json +++ b/tests/web_platform/CSS2/positioning/data/left-042.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-043.json b/tests/web_platform/CSS2/positioning/data/left-043.json index f35dc2ae6..e08431fc9 100644 --- a/tests/web_platform/CSS2/positioning/data/left-043.json +++ b/tests/web_platform/CSS2/positioning/data/left-043.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-044.json b/tests/web_platform/CSS2/positioning/data/left-044.json index 41a89fffb..7b7f94496 100644 --- a/tests/web_platform/CSS2/positioning/data/left-044.json +++ b/tests/web_platform/CSS2/positioning/data/left-044.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-052.json b/tests/web_platform/CSS2/positioning/data/left-052.json index 9a479913a..a0d215b52 100644 --- a/tests/web_platform/CSS2/positioning/data/left-052.json +++ b/tests/web_platform/CSS2/positioning/data/left-052.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-053.json b/tests/web_platform/CSS2/positioning/data/left-053.json index 02d343298..f93d84335 100644 --- a/tests/web_platform/CSS2/positioning/data/left-053.json +++ b/tests/web_platform/CSS2/positioning/data/left-053.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-054.json b/tests/web_platform/CSS2/positioning/data/left-054.json index 7794672f1..1958f5de9 100644 --- a/tests/web_platform/CSS2/positioning/data/left-054.json +++ b/tests/web_platform/CSS2/positioning/data/left-054.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-055.json b/tests/web_platform/CSS2/positioning/data/left-055.json index 24792075c..ebc6f8086 100644 --- a/tests/web_platform/CSS2/positioning/data/left-055.json +++ b/tests/web_platform/CSS2/positioning/data/left-055.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-056.json b/tests/web_platform/CSS2/positioning/data/left-056.json index db02e2da9..d9dc5b7b4 100644 --- a/tests/web_platform/CSS2/positioning/data/left-056.json +++ b/tests/web_platform/CSS2/positioning/data/left-056.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-064.json b/tests/web_platform/CSS2/positioning/data/left-064.json index 94e8df190..68703431a 100644 --- a/tests/web_platform/CSS2/positioning/data/left-064.json +++ b/tests/web_platform/CSS2/positioning/data/left-064.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-065.json b/tests/web_platform/CSS2/positioning/data/left-065.json index 5d38d7dd9..6738f2080 100644 --- a/tests/web_platform/CSS2/positioning/data/left-065.json +++ b/tests/web_platform/CSS2/positioning/data/left-065.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-066.json b/tests/web_platform/CSS2/positioning/data/left-066.json index eef1797ff..8b3b0cbf8 100644 --- a/tests/web_platform/CSS2/positioning/data/left-066.json +++ b/tests/web_platform/CSS2/positioning/data/left-066.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-067.json b/tests/web_platform/CSS2/positioning/data/left-067.json index 5328e3934..e45587760 100644 --- a/tests/web_platform/CSS2/positioning/data/left-067.json +++ b/tests/web_platform/CSS2/positioning/data/left-067.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-068.json b/tests/web_platform/CSS2/positioning/data/left-068.json index f4456f22d..d3e200b7d 100644 --- a/tests/web_platform/CSS2/positioning/data/left-068.json +++ b/tests/web_platform/CSS2/positioning/data/left-068.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-076.json b/tests/web_platform/CSS2/positioning/data/left-076.json index 2b0b90c40..b2384b2d3 100644 --- a/tests/web_platform/CSS2/positioning/data/left-076.json +++ b/tests/web_platform/CSS2/positioning/data/left-076.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-077.json b/tests/web_platform/CSS2/positioning/data/left-077.json index 2cc35f729..4a2daf14e 100644 --- a/tests/web_platform/CSS2/positioning/data/left-077.json +++ b/tests/web_platform/CSS2/positioning/data/left-077.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-078.json b/tests/web_platform/CSS2/positioning/data/left-078.json index bced90cc1..764452daf 100644 --- a/tests/web_platform/CSS2/positioning/data/left-078.json +++ b/tests/web_platform/CSS2/positioning/data/left-078.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-079.json b/tests/web_platform/CSS2/positioning/data/left-079.json index 075189c9e..09e44156f 100644 --- a/tests/web_platform/CSS2/positioning/data/left-079.json +++ b/tests/web_platform/CSS2/positioning/data/left-079.json @@ -60,4 +60,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-080.json b/tests/web_platform/CSS2/positioning/data/left-080.json index 566975f41..0136fcc45 100644 --- a/tests/web_platform/CSS2/positioning/data/left-080.json +++ b/tests/web_platform/CSS2/positioning/data/left-080.json @@ -60,4 +60,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-088.json b/tests/web_platform/CSS2/positioning/data/left-088.json index f713fb831..c909f4092 100644 --- a/tests/web_platform/CSS2/positioning/data/left-088.json +++ b/tests/web_platform/CSS2/positioning/data/left-088.json @@ -57,4 +57,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-089.json b/tests/web_platform/CSS2/positioning/data/left-089.json index 87038d958..75b70ea92 100644 --- a/tests/web_platform/CSS2/positioning/data/left-089.json +++ b/tests/web_platform/CSS2/positioning/data/left-089.json @@ -57,4 +57,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-090.json b/tests/web_platform/CSS2/positioning/data/left-090.json index 8d211578a..d841de498 100644 --- a/tests/web_platform/CSS2/positioning/data/left-090.json +++ b/tests/web_platform/CSS2/positioning/data/left-090.json @@ -57,4 +57,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-091.json b/tests/web_platform/CSS2/positioning/data/left-091.json index 793e38e75..5673b2cf3 100644 --- a/tests/web_platform/CSS2/positioning/data/left-091.json +++ b/tests/web_platform/CSS2/positioning/data/left-091.json @@ -60,4 +60,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-092.json b/tests/web_platform/CSS2/positioning/data/left-092.json index e8dca74d6..4da393b9d 100644 --- a/tests/web_platform/CSS2/positioning/data/left-092.json +++ b/tests/web_platform/CSS2/positioning/data/left-092.json @@ -60,4 +60,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-100.json b/tests/web_platform/CSS2/positioning/data/left-100.json index 662b5226f..341aa04ea 100644 --- a/tests/web_platform/CSS2/positioning/data/left-100.json +++ b/tests/web_platform/CSS2/positioning/data/left-100.json @@ -46,4 +46,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-101.json b/tests/web_platform/CSS2/positioning/data/left-101.json index 73b85cb4b..b784a0df2 100644 --- a/tests/web_platform/CSS2/positioning/data/left-101.json +++ b/tests/web_platform/CSS2/positioning/data/left-101.json @@ -46,4 +46,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-102.json b/tests/web_platform/CSS2/positioning/data/left-102.json index 71030302b..4529c4da3 100644 --- a/tests/web_platform/CSS2/positioning/data/left-102.json +++ b/tests/web_platform/CSS2/positioning/data/left-102.json @@ -46,4 +46,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-103.json b/tests/web_platform/CSS2/positioning/data/left-103.json index 46812662d..da8b56eca 100644 --- a/tests/web_platform/CSS2/positioning/data/left-103.json +++ b/tests/web_platform/CSS2/positioning/data/left-103.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-104.json b/tests/web_platform/CSS2/positioning/data/left-104.json index 02ee4cda7..b67720f62 100644 --- a/tests/web_platform/CSS2/positioning/data/left-104.json +++ b/tests/web_platform/CSS2/positioning/data/left-104.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-109.json b/tests/web_platform/CSS2/positioning/data/left-109.json index 2d8add2c5..efe7fc385 100644 --- a/tests/web_platform/CSS2/positioning/data/left-109.json +++ b/tests/web_platform/CSS2/positioning/data/left-109.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-110.json b/tests/web_platform/CSS2/positioning/data/left-110.json index 64a6b332b..879c7516f 100644 --- a/tests/web_platform/CSS2/positioning/data/left-110.json +++ b/tests/web_platform/CSS2/positioning/data/left-110.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-111.json b/tests/web_platform/CSS2/positioning/data/left-111.json index 6ce19f145..0dae11bcd 100644 --- a/tests/web_platform/CSS2/positioning/data/left-111.json +++ b/tests/web_platform/CSS2/positioning/data/left-111.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-112.json b/tests/web_platform/CSS2/positioning/data/left-112.json index 266231994..c069f9b9e 100644 --- a/tests/web_platform/CSS2/positioning/data/left-112.json +++ b/tests/web_platform/CSS2/positioning/data/left-112.json @@ -45,4 +45,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-113.json b/tests/web_platform/CSS2/positioning/data/left-113.json index 2ba381a9e..e917c4646 100644 --- a/tests/web_platform/CSS2/positioning/data/left-113.json +++ b/tests/web_platform/CSS2/positioning/data/left-113.json @@ -61,4 +61,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-001.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-001.json index 1006b2f21..0ef2a7a9d 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-001.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-001.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-002.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-002.json index 0e1066687..93c665881 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-002.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-002.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-003.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-003.json index 8c3fd7641..581a26334 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-003.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-003.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-004.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-004.json index 3106efab0..6bdbff6f5 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-004.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-004.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-005.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-005.json index f78a75ad7..5fbfdbccb 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-005.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-005.json @@ -66,4 +66,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-006.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-006.json index 8d507b6dc..ef175a889 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-006.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-006.json @@ -66,4 +66,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-007.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-007.json index 9fc073b71..5ead88946 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-007.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-007.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-008.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-008.json index 4071d37b9..053998d15 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-008.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-008.json @@ -41,4 +41,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-009.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-009.json index 699425bf3..18ca9344a 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-009.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-009.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-010.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-010.json index 0f1870015..074eb3b66 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-010.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-010.json @@ -41,4 +41,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-012.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-012.json index 469155031..f6b38ee02 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-012.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-012.json @@ -74,4 +74,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-013.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-013.json index 4d6d42b49..c8695f86b 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-013.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-013.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-014.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-014.json index 3de4d5c2f..bde4a9ca0 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-014.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-014.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-applies-to-015.json b/tests/web_platform/CSS2/positioning/data/left-applies-to-015.json index 848193e5b..46e2b6cf1 100644 --- a/tests/web_platform/CSS2/positioning/data/left-applies-to-015.json +++ b/tests/web_platform/CSS2/positioning/data/left-applies-to-015.json @@ -65,4 +65,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-offset-001.json b/tests/web_platform/CSS2/positioning/data/left-offset-001.json index 91167cac1..c84308cef 100644 --- a/tests/web_platform/CSS2/positioning/data/left-offset-001.json +++ b/tests/web_platform/CSS2/positioning/data/left-offset-001.json @@ -61,4 +61,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-offset-002.json b/tests/web_platform/CSS2/positioning/data/left-offset-002.json index e9289fcb2..fe437afee 100644 --- a/tests/web_platform/CSS2/positioning/data/left-offset-002.json +++ b/tests/web_platform/CSS2/positioning/data/left-offset-002.json @@ -61,4 +61,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-offset-003.json b/tests/web_platform/CSS2/positioning/data/left-offset-003.json index 3510f4f92..0ee01c6f4 100644 --- a/tests/web_platform/CSS2/positioning/data/left-offset-003.json +++ b/tests/web_platform/CSS2/positioning/data/left-offset-003.json @@ -78,4 +78,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-offset-percentage-001.json b/tests/web_platform/CSS2/positioning/data/left-offset-percentage-001.json index 8c92eb780..e81bf6afe 100644 --- a/tests/web_platform/CSS2/positioning/data/left-offset-percentage-001.json +++ b/tests/web_platform/CSS2/positioning/data/left-offset-percentage-001.json @@ -73,4 +73,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/left-offset-percentage-002.json b/tests/web_platform/CSS2/positioning/data/left-offset-percentage-002.json index 21421c04c..0ffaedabc 100644 --- a/tests/web_platform/CSS2/positioning/data/left-offset-percentage-002.json +++ b/tests/web_platform/CSS2/positioning/data/left-offset-percentage-002.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-001.json b/tests/web_platform/CSS2/positioning/data/position-001.json index 048652df5..2e7da9655 100644 --- a/tests/web_platform/CSS2/positioning/data/position-001.json +++ b/tests/web_platform/CSS2/positioning/data/position-001.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-002.json b/tests/web_platform/CSS2/positioning/data/position-002.json index 1d06c7d81..36664aefb 100644 --- a/tests/web_platform/CSS2/positioning/data/position-002.json +++ b/tests/web_platform/CSS2/positioning/data/position-002.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-003.json b/tests/web_platform/CSS2/positioning/data/position-003.json index 62660ba7c..5c101f2f8 100644 --- a/tests/web_platform/CSS2/positioning/data/position-003.json +++ b/tests/web_platform/CSS2/positioning/data/position-003.json @@ -81,4 +81,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-004.json b/tests/web_platform/CSS2/positioning/data/position-004.json index 0c6bff2fb..b86e6e5bf 100644 --- a/tests/web_platform/CSS2/positioning/data/position-004.json +++ b/tests/web_platform/CSS2/positioning/data/position-004.json @@ -91,4 +91,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-005.json b/tests/web_platform/CSS2/positioning/data/position-005.json index ae1f58958..69f85c4aa 100644 --- a/tests/web_platform/CSS2/positioning/data/position-005.json +++ b/tests/web_platform/CSS2/positioning/data/position-005.json @@ -82,4 +82,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-006.json b/tests/web_platform/CSS2/positioning/data/position-006.json index 7ce276709..70f4ab3d8 100644 --- a/tests/web_platform/CSS2/positioning/data/position-006.json +++ b/tests/web_platform/CSS2/positioning/data/position-006.json @@ -34,4 +34,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-absolute-001.json b/tests/web_platform/CSS2/positioning/data/position-absolute-001.json index a514cb5b2..2d41116ac 100644 --- a/tests/web_platform/CSS2/positioning/data/position-absolute-001.json +++ b/tests/web_platform/CSS2/positioning/data/position-absolute-001.json @@ -66,4 +66,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-absolute-002.json b/tests/web_platform/CSS2/positioning/data/position-absolute-002.json index 5aa46a86f..abd73eb5c 100644 --- a/tests/web_platform/CSS2/positioning/data/position-absolute-002.json +++ b/tests/web_platform/CSS2/positioning/data/position-absolute-002.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-absolute-003.json b/tests/web_platform/CSS2/positioning/data/position-absolute-003.json index 3bc319299..46ff34b95 100644 --- a/tests/web_platform/CSS2/positioning/data/position-absolute-003.json +++ b/tests/web_platform/CSS2/positioning/data/position-absolute-003.json @@ -70,4 +70,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-absolute-004.json b/tests/web_platform/CSS2/positioning/data/position-absolute-004.json index 37e9b5f61..8cf9d4c8c 100644 --- a/tests/web_platform/CSS2/positioning/data/position-absolute-004.json +++ b/tests/web_platform/CSS2/positioning/data/position-absolute-004.json @@ -69,4 +69,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-absolute-005.json b/tests/web_platform/CSS2/positioning/data/position-absolute-005.json index d953080ad..c184cfc94 100644 --- a/tests/web_platform/CSS2/positioning/data/position-absolute-005.json +++ b/tests/web_platform/CSS2/positioning/data/position-absolute-005.json @@ -63,4 +63,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-absolute-006.json b/tests/web_platform/CSS2/positioning/data/position-absolute-006.json index b2888c692..66b0a2f5b 100644 --- a/tests/web_platform/CSS2/positioning/data/position-absolute-006.json +++ b/tests/web_platform/CSS2/positioning/data/position-absolute-006.json @@ -73,4 +73,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-absolute-007.json b/tests/web_platform/CSS2/positioning/data/position-absolute-007.json index abe5226af..5b0d21b9d 100644 --- a/tests/web_platform/CSS2/positioning/data/position-absolute-007.json +++ b/tests/web_platform/CSS2/positioning/data/position-absolute-007.json @@ -74,4 +74,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-absolute-008.json b/tests/web_platform/CSS2/positioning/data/position-absolute-008.json index 4d08d22c8..66e0a7288 100644 --- a/tests/web_platform/CSS2/positioning/data/position-absolute-008.json +++ b/tests/web_platform/CSS2/positioning/data/position-absolute-008.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-001.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-001.json index 42624552f..27d97de7a 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-001.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-001.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-002.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-002.json index 8c2370c7d..5dea71b80 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-002.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-002.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-003.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-003.json index 72c9211b9..efa4ccff8 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-003.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-003.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-004.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-004.json index f05951458..4b47535b4 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-004.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-004.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-005.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-005.json index 0f4814867..bf442f6f9 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-005.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-005.json @@ -66,4 +66,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-006.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-006.json index 910cfba1d..3d9444045 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-006.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-006.json @@ -66,4 +66,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-007.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-007.json index c345d8de0..15ba147b5 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-007.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-007.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-008.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-008.json index 39bc57b7a..bcc547a5b 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-008.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-008.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-009.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-009.json index 8795d0e18..04f332f86 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-009.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-009.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-010.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-010.json index 1d99b1c98..23d6e7f55 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-010.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-010.json @@ -40,4 +40,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-012.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-012.json index a25672fb1..49d10832c 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-012.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-012.json @@ -64,4 +64,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-013.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-013.json index 2f86ae6e3..1ce5f9e3a 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-013.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-013.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-014.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-014.json index d280d7926..78b1150b9 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-014.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-014.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-applies-to-015.json b/tests/web_platform/CSS2/positioning/data/position-applies-to-015.json index f93f98581..a56cc00d8 100644 --- a/tests/web_platform/CSS2/positioning/data/position-applies-to-015.json +++ b/tests/web_platform/CSS2/positioning/data/position-applies-to-015.json @@ -65,4 +65,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-fixed-001.json b/tests/web_platform/CSS2/positioning/data/position-fixed-001.json index 11b4b74f6..c81fdd4ba 100644 --- a/tests/web_platform/CSS2/positioning/data/position-fixed-001.json +++ b/tests/web_platform/CSS2/positioning/data/position-fixed-001.json @@ -67,4 +67,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-fixed-002.json b/tests/web_platform/CSS2/positioning/data/position-fixed-002.json index 3b42a3aa3..3e5e35c00 100644 --- a/tests/web_platform/CSS2/positioning/data/position-fixed-002.json +++ b/tests/web_platform/CSS2/positioning/data/position-fixed-002.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-fixed-003.json b/tests/web_platform/CSS2/positioning/data/position-fixed-003.json index f31e32051..3fd97f343 100644 --- a/tests/web_platform/CSS2/positioning/data/position-fixed-003.json +++ b/tests/web_platform/CSS2/positioning/data/position-fixed-003.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-fixed-004.json b/tests/web_platform/CSS2/positioning/data/position-fixed-004.json index 1ef255613..e624f052f 100644 --- a/tests/web_platform/CSS2/positioning/data/position-fixed-004.json +++ b/tests/web_platform/CSS2/positioning/data/position-fixed-004.json @@ -78,4 +78,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-fixed-005.json b/tests/web_platform/CSS2/positioning/data/position-fixed-005.json index 46c9ff009..c0bc03350 100644 --- a/tests/web_platform/CSS2/positioning/data/position-fixed-005.json +++ b/tests/web_platform/CSS2/positioning/data/position-fixed-005.json @@ -98,4 +98,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-fixed-006.json b/tests/web_platform/CSS2/positioning/data/position-fixed-006.json index 59e85d6c3..095fcc02f 100644 --- a/tests/web_platform/CSS2/positioning/data/position-fixed-006.json +++ b/tests/web_platform/CSS2/positioning/data/position-fixed-006.json @@ -32,4 +32,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-fixed-007.json b/tests/web_platform/CSS2/positioning/data/position-fixed-007.json index c7abe0c1e..61db88c79 100644 --- a/tests/web_platform/CSS2/positioning/data/position-fixed-007.json +++ b/tests/web_platform/CSS2/positioning/data/position-fixed-007.json @@ -40,4 +40,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-001.json b/tests/web_platform/CSS2/positioning/data/position-relative-001.json index fdbb096c5..b4c65cc0b 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-001.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-001.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-002.json b/tests/web_platform/CSS2/positioning/data/position-relative-002.json index 093037a62..4f2218003 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-002.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-002.json @@ -72,4 +72,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-003.json b/tests/web_platform/CSS2/positioning/data/position-relative-003.json index b69e7d798..45ff3a67b 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-003.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-003.json @@ -58,4 +58,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-004.json b/tests/web_platform/CSS2/positioning/data/position-relative-004.json index 7de2a5230..8ec3ef2c4 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-004.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-004.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-005.json b/tests/web_platform/CSS2/positioning/data/position-relative-005.json index f10db9964..e6a47f019 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-005.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-005.json @@ -58,4 +58,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-006.json b/tests/web_platform/CSS2/positioning/data/position-relative-006.json index 58958dd9e..beb8f4800 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-006.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-006.json @@ -66,4 +66,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-007.json b/tests/web_platform/CSS2/positioning/data/position-relative-007.json index eab5d113d..ba2c2b920 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-007.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-007.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-008.json b/tests/web_platform/CSS2/positioning/data/position-relative-008.json index 0d2b27db5..9e218a267 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-008.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-008.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-009.json b/tests/web_platform/CSS2/positioning/data/position-relative-009.json index 47fa3cb47..65f95ff51 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-009.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-009.json @@ -60,4 +60,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-010.json b/tests/web_platform/CSS2/positioning/data/position-relative-010.json index d05779a1e..996c36fce 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-010.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-010.json @@ -60,4 +60,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-013.json b/tests/web_platform/CSS2/positioning/data/position-relative-013.json index 9ac563b9e..0014e82fd 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-013.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-013.json @@ -54,4 +54,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-014.json b/tests/web_platform/CSS2/positioning/data/position-relative-014.json index 75b9ba51b..2f979106d 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-014.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-014.json @@ -58,4 +58,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-015.json b/tests/web_platform/CSS2/positioning/data/position-relative-015.json index 1bde9d774..eebf42c5a 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-015.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-015.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-016.json b/tests/web_platform/CSS2/positioning/data/position-relative-016.json index 213a52f76..8d480e339 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-016.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-016.json @@ -99,4 +99,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-017.json b/tests/web_platform/CSS2/positioning/data/position-relative-017.json index ef714807d..416ee2af6 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-017.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-017.json @@ -60,4 +60,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-018.json b/tests/web_platform/CSS2/positioning/data/position-relative-018.json index 705275a4c..a4dbf10e5 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-018.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-018.json @@ -83,4 +83,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-019.json b/tests/web_platform/CSS2/positioning/data/position-relative-019.json index 90a7a3cd6..8a490bfe1 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-019.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-019.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-020.json b/tests/web_platform/CSS2/positioning/data/position-relative-020.json index 2db982fa4..6311f0c2d 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-020.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-020.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-021.json b/tests/web_platform/CSS2/positioning/data/position-relative-021.json index 2d425c591..201cb7f6d 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-021.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-021.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-022.json b/tests/web_platform/CSS2/positioning/data/position-relative-022.json index f6cbe61e9..1882e6c23 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-022.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-022.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-027.json b/tests/web_platform/CSS2/positioning/data/position-relative-027.json index 437a6e3ac..53c514838 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-027.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-027.json @@ -51,4 +51,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-028.json b/tests/web_platform/CSS2/positioning/data/position-relative-028.json index 4dcbffe93..7b834a4a8 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-028.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-028.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-029.json b/tests/web_platform/CSS2/positioning/data/position-relative-029.json index 85de27ee0..cd4794d0c 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-029.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-029.json @@ -49,4 +49,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-030.json b/tests/web_platform/CSS2/positioning/data/position-relative-030.json index 13f1396dd..a4a6ed1ef 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-030.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-030.json @@ -57,4 +57,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-031.json b/tests/web_platform/CSS2/positioning/data/position-relative-031.json index 2cdb26571..a91df168c 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-031.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-031.json @@ -67,4 +67,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-032.json b/tests/web_platform/CSS2/positioning/data/position-relative-032.json index b0ff31bbb..4198b2a50 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-032.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-032.json @@ -54,4 +54,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-033.json b/tests/web_platform/CSS2/positioning/data/position-relative-033.json index 35a205ad9..2e137e8e6 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-033.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-033.json @@ -81,4 +81,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-034.json b/tests/web_platform/CSS2/positioning/data/position-relative-034.json index f77ca5124..86e894433 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-034.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-034.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-035.json b/tests/web_platform/CSS2/positioning/data/position-relative-035.json index f35b7f14b..3a1828a02 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-035.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-035.json @@ -76,4 +76,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-036.json b/tests/web_platform/CSS2/positioning/data/position-relative-036.json index 4233f677c..fdc559594 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-036.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-036.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-037.json b/tests/web_platform/CSS2/positioning/data/position-relative-037.json index 54441461c..317faecb8 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-037.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-037.json @@ -67,4 +67,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-038.json b/tests/web_platform/CSS2/positioning/data/position-relative-038.json index eaaacbddf..5ff190a6a 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-038.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-038.json @@ -67,4 +67,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-relative-nested-001.json b/tests/web_platform/CSS2/positioning/data/position-relative-nested-001.json index 1c113bf4a..54e29351e 100644 --- a/tests/web_platform/CSS2/positioning/data/position-relative-nested-001.json +++ b/tests/web_platform/CSS2/positioning/data/position-relative-nested-001.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/position-static-001.json b/tests/web_platform/CSS2/positioning/data/position-static-001.json index 9e1138163..b098508b9 100644 --- a/tests/web_platform/CSS2/positioning/data/position-static-001.json +++ b/tests/web_platform/CSS2/positioning/data/position-static-001.json @@ -69,4 +69,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/positioning-float-001.json b/tests/web_platform/CSS2/positioning/data/positioning-float-001.json index e5c1f935d..81af917a0 100644 --- a/tests/web_platform/CSS2/positioning/data/positioning-float-001.json +++ b/tests/web_platform/CSS2/positioning/data/positioning-float-001.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/positioning-float-002.json b/tests/web_platform/CSS2/positioning/data/positioning-float-002.json index 0990cdf20..b7d9b9a61 100644 --- a/tests/web_platform/CSS2/positioning/data/positioning-float-002.json +++ b/tests/web_platform/CSS2/positioning/data/positioning-float-002.json @@ -50,4 +50,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/relpos-calcs-001.json b/tests/web_platform/CSS2/positioning/data/relpos-calcs-001.json index dda76cc8e..803a6c6d0 100644 --- a/tests/web_platform/CSS2/positioning/data/relpos-calcs-001.json +++ b/tests/web_platform/CSS2/positioning/data/relpos-calcs-001.json @@ -93,4 +93,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/relpos-calcs-002.json b/tests/web_platform/CSS2/positioning/data/relpos-calcs-002.json index 8df61acc6..df4539ec7 100644 --- a/tests/web_platform/CSS2/positioning/data/relpos-calcs-002.json +++ b/tests/web_platform/CSS2/positioning/data/relpos-calcs-002.json @@ -93,4 +93,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/relpos-calcs-003.json b/tests/web_platform/CSS2/positioning/data/relpos-calcs-003.json index 94109d7e5..5c0fe6a33 100644 --- a/tests/web_platform/CSS2/positioning/data/relpos-calcs-003.json +++ b/tests/web_platform/CSS2/positioning/data/relpos-calcs-003.json @@ -93,4 +93,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/relpos-calcs-004.json b/tests/web_platform/CSS2/positioning/data/relpos-calcs-004.json index 8d48d6faf..b678fb4f1 100644 --- a/tests/web_platform/CSS2/positioning/data/relpos-calcs-004.json +++ b/tests/web_platform/CSS2/positioning/data/relpos-calcs-004.json @@ -101,4 +101,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/relpos-calcs-005.json b/tests/web_platform/CSS2/positioning/data/relpos-calcs-005.json index a1fababab..209e8079b 100644 --- a/tests/web_platform/CSS2/positioning/data/relpos-calcs-005.json +++ b/tests/web_platform/CSS2/positioning/data/relpos-calcs-005.json @@ -101,4 +101,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/relpos-calcs-006.json b/tests/web_platform/CSS2/positioning/data/relpos-calcs-006.json index c923161ee..507eb3fcc 100644 --- a/tests/web_platform/CSS2/positioning/data/relpos-calcs-006.json +++ b/tests/web_platform/CSS2/positioning/data/relpos-calcs-006.json @@ -97,4 +97,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/relpos-calcs-007.json b/tests/web_platform/CSS2/positioning/data/relpos-calcs-007.json index 56ddfa9f1..efa23b8ac 100644 --- a/tests/web_platform/CSS2/positioning/data/relpos-calcs-007.json +++ b/tests/web_platform/CSS2/positioning/data/relpos-calcs-007.json @@ -93,4 +93,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-004.json b/tests/web_platform/CSS2/positioning/data/right-004.json index 3847e6b19..0dec9986b 100644 --- a/tests/web_platform/CSS2/positioning/data/right-004.json +++ b/tests/web_platform/CSS2/positioning/data/right-004.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-005.json b/tests/web_platform/CSS2/positioning/data/right-005.json index 57bdfba45..d98828e82 100644 --- a/tests/web_platform/CSS2/positioning/data/right-005.json +++ b/tests/web_platform/CSS2/positioning/data/right-005.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-006.json b/tests/web_platform/CSS2/positioning/data/right-006.json index 76295e7f2..f4002cdf8 100644 --- a/tests/web_platform/CSS2/positioning/data/right-006.json +++ b/tests/web_platform/CSS2/positioning/data/right-006.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-007.json b/tests/web_platform/CSS2/positioning/data/right-007.json index befdc986a..7afb9c512 100644 --- a/tests/web_platform/CSS2/positioning/data/right-007.json +++ b/tests/web_platform/CSS2/positioning/data/right-007.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-008.json b/tests/web_platform/CSS2/positioning/data/right-008.json index 5faf515a9..f383210c6 100644 --- a/tests/web_platform/CSS2/positioning/data/right-008.json +++ b/tests/web_platform/CSS2/positioning/data/right-008.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-016.json b/tests/web_platform/CSS2/positioning/data/right-016.json index d686f4012..7f65fa9fe 100644 --- a/tests/web_platform/CSS2/positioning/data/right-016.json +++ b/tests/web_platform/CSS2/positioning/data/right-016.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-017.json b/tests/web_platform/CSS2/positioning/data/right-017.json index a2a596db3..b8884d535 100644 --- a/tests/web_platform/CSS2/positioning/data/right-017.json +++ b/tests/web_platform/CSS2/positioning/data/right-017.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-018.json b/tests/web_platform/CSS2/positioning/data/right-018.json index 80d8c603a..4d322d8dc 100644 --- a/tests/web_platform/CSS2/positioning/data/right-018.json +++ b/tests/web_platform/CSS2/positioning/data/right-018.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-019.json b/tests/web_platform/CSS2/positioning/data/right-019.json index fe3fbf0e9..44d608a0a 100644 --- a/tests/web_platform/CSS2/positioning/data/right-019.json +++ b/tests/web_platform/CSS2/positioning/data/right-019.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-020.json b/tests/web_platform/CSS2/positioning/data/right-020.json index c5be70872..1fce8a19d 100644 --- a/tests/web_platform/CSS2/positioning/data/right-020.json +++ b/tests/web_platform/CSS2/positioning/data/right-020.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-028.json b/tests/web_platform/CSS2/positioning/data/right-028.json index 9b0955a3e..b979fcfa4 100644 --- a/tests/web_platform/CSS2/positioning/data/right-028.json +++ b/tests/web_platform/CSS2/positioning/data/right-028.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-029.json b/tests/web_platform/CSS2/positioning/data/right-029.json index 591ba1093..c5af8044f 100644 --- a/tests/web_platform/CSS2/positioning/data/right-029.json +++ b/tests/web_platform/CSS2/positioning/data/right-029.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-030.json b/tests/web_platform/CSS2/positioning/data/right-030.json index 5a1914826..988d1cb9c 100644 --- a/tests/web_platform/CSS2/positioning/data/right-030.json +++ b/tests/web_platform/CSS2/positioning/data/right-030.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-031.json b/tests/web_platform/CSS2/positioning/data/right-031.json index 4609cde74..73b366fd0 100644 --- a/tests/web_platform/CSS2/positioning/data/right-031.json +++ b/tests/web_platform/CSS2/positioning/data/right-031.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-032.json b/tests/web_platform/CSS2/positioning/data/right-032.json index 28ac4a7c4..55460d181 100644 --- a/tests/web_platform/CSS2/positioning/data/right-032.json +++ b/tests/web_platform/CSS2/positioning/data/right-032.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-040.json b/tests/web_platform/CSS2/positioning/data/right-040.json index eb720a0fc..f6708db8b 100644 --- a/tests/web_platform/CSS2/positioning/data/right-040.json +++ b/tests/web_platform/CSS2/positioning/data/right-040.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-041.json b/tests/web_platform/CSS2/positioning/data/right-041.json index 42cb0aa09..401ba2b0d 100644 --- a/tests/web_platform/CSS2/positioning/data/right-041.json +++ b/tests/web_platform/CSS2/positioning/data/right-041.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-042.json b/tests/web_platform/CSS2/positioning/data/right-042.json index 6492a88fe..45dc94fed 100644 --- a/tests/web_platform/CSS2/positioning/data/right-042.json +++ b/tests/web_platform/CSS2/positioning/data/right-042.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-043.json b/tests/web_platform/CSS2/positioning/data/right-043.json index 4d9fc761f..972c54a66 100644 --- a/tests/web_platform/CSS2/positioning/data/right-043.json +++ b/tests/web_platform/CSS2/positioning/data/right-043.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-044.json b/tests/web_platform/CSS2/positioning/data/right-044.json index 055ae229b..0b32f4e83 100644 --- a/tests/web_platform/CSS2/positioning/data/right-044.json +++ b/tests/web_platform/CSS2/positioning/data/right-044.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-052.json b/tests/web_platform/CSS2/positioning/data/right-052.json index 2dfde57d2..e99ff1678 100644 --- a/tests/web_platform/CSS2/positioning/data/right-052.json +++ b/tests/web_platform/CSS2/positioning/data/right-052.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-053.json b/tests/web_platform/CSS2/positioning/data/right-053.json index bcc85f02e..c6c472ee3 100644 --- a/tests/web_platform/CSS2/positioning/data/right-053.json +++ b/tests/web_platform/CSS2/positioning/data/right-053.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-054.json b/tests/web_platform/CSS2/positioning/data/right-054.json index d35780396..4217778e4 100644 --- a/tests/web_platform/CSS2/positioning/data/right-054.json +++ b/tests/web_platform/CSS2/positioning/data/right-054.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-055.json b/tests/web_platform/CSS2/positioning/data/right-055.json index 4f36e306f..b4771b474 100644 --- a/tests/web_platform/CSS2/positioning/data/right-055.json +++ b/tests/web_platform/CSS2/positioning/data/right-055.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-056.json b/tests/web_platform/CSS2/positioning/data/right-056.json index 5f84a7ddf..290698ed0 100644 --- a/tests/web_platform/CSS2/positioning/data/right-056.json +++ b/tests/web_platform/CSS2/positioning/data/right-056.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-064.json b/tests/web_platform/CSS2/positioning/data/right-064.json index 20408f809..c8bbe72eb 100644 --- a/tests/web_platform/CSS2/positioning/data/right-064.json +++ b/tests/web_platform/CSS2/positioning/data/right-064.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-065.json b/tests/web_platform/CSS2/positioning/data/right-065.json index a1994ebae..d3b4727bd 100644 --- a/tests/web_platform/CSS2/positioning/data/right-065.json +++ b/tests/web_platform/CSS2/positioning/data/right-065.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-066.json b/tests/web_platform/CSS2/positioning/data/right-066.json index f7778d890..839e7f66f 100644 --- a/tests/web_platform/CSS2/positioning/data/right-066.json +++ b/tests/web_platform/CSS2/positioning/data/right-066.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-067.json b/tests/web_platform/CSS2/positioning/data/right-067.json index d9442335d..9aecb2550 100644 --- a/tests/web_platform/CSS2/positioning/data/right-067.json +++ b/tests/web_platform/CSS2/positioning/data/right-067.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-068.json b/tests/web_platform/CSS2/positioning/data/right-068.json index 00c7cb330..9415f682f 100644 --- a/tests/web_platform/CSS2/positioning/data/right-068.json +++ b/tests/web_platform/CSS2/positioning/data/right-068.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-076.json b/tests/web_platform/CSS2/positioning/data/right-076.json index 0c6df1485..3b95c40c4 100644 --- a/tests/web_platform/CSS2/positioning/data/right-076.json +++ b/tests/web_platform/CSS2/positioning/data/right-076.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-077.json b/tests/web_platform/CSS2/positioning/data/right-077.json index e7f70332e..104237288 100644 --- a/tests/web_platform/CSS2/positioning/data/right-077.json +++ b/tests/web_platform/CSS2/positioning/data/right-077.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-078.json b/tests/web_platform/CSS2/positioning/data/right-078.json index 7aa47de30..f330a5b39 100644 --- a/tests/web_platform/CSS2/positioning/data/right-078.json +++ b/tests/web_platform/CSS2/positioning/data/right-078.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-079.json b/tests/web_platform/CSS2/positioning/data/right-079.json index 10eaafb8b..c2c2816ab 100644 --- a/tests/web_platform/CSS2/positioning/data/right-079.json +++ b/tests/web_platform/CSS2/positioning/data/right-079.json @@ -60,4 +60,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-080.json b/tests/web_platform/CSS2/positioning/data/right-080.json index d72d217df..af4e25ebe 100644 --- a/tests/web_platform/CSS2/positioning/data/right-080.json +++ b/tests/web_platform/CSS2/positioning/data/right-080.json @@ -60,4 +60,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-088.json b/tests/web_platform/CSS2/positioning/data/right-088.json index ed8632f08..c370dc4c9 100644 --- a/tests/web_platform/CSS2/positioning/data/right-088.json +++ b/tests/web_platform/CSS2/positioning/data/right-088.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-089.json b/tests/web_platform/CSS2/positioning/data/right-089.json index aa5cf6f71..2cc10617a 100644 --- a/tests/web_platform/CSS2/positioning/data/right-089.json +++ b/tests/web_platform/CSS2/positioning/data/right-089.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-090.json b/tests/web_platform/CSS2/positioning/data/right-090.json index f0d1d20e8..9d50c69cb 100644 --- a/tests/web_platform/CSS2/positioning/data/right-090.json +++ b/tests/web_platform/CSS2/positioning/data/right-090.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-091.json b/tests/web_platform/CSS2/positioning/data/right-091.json index 096e53c4c..35ca5a169 100644 --- a/tests/web_platform/CSS2/positioning/data/right-091.json +++ b/tests/web_platform/CSS2/positioning/data/right-091.json @@ -60,4 +60,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-092.json b/tests/web_platform/CSS2/positioning/data/right-092.json index 5dfb80793..9cf7c9e6e 100644 --- a/tests/web_platform/CSS2/positioning/data/right-092.json +++ b/tests/web_platform/CSS2/positioning/data/right-092.json @@ -60,4 +60,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-100.json b/tests/web_platform/CSS2/positioning/data/right-100.json index 29f9d221c..731b60e20 100644 --- a/tests/web_platform/CSS2/positioning/data/right-100.json +++ b/tests/web_platform/CSS2/positioning/data/right-100.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-101.json b/tests/web_platform/CSS2/positioning/data/right-101.json index b4260b697..e1eefe835 100644 --- a/tests/web_platform/CSS2/positioning/data/right-101.json +++ b/tests/web_platform/CSS2/positioning/data/right-101.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-102.json b/tests/web_platform/CSS2/positioning/data/right-102.json index ca2ce57b7..b8a1b5453 100644 --- a/tests/web_platform/CSS2/positioning/data/right-102.json +++ b/tests/web_platform/CSS2/positioning/data/right-102.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-103.json b/tests/web_platform/CSS2/positioning/data/right-103.json index 849a1f812..2743ef8ce 100644 --- a/tests/web_platform/CSS2/positioning/data/right-103.json +++ b/tests/web_platform/CSS2/positioning/data/right-103.json @@ -49,4 +49,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-104.json b/tests/web_platform/CSS2/positioning/data/right-104.json index 33025d7b2..b5a6eeb6d 100644 --- a/tests/web_platform/CSS2/positioning/data/right-104.json +++ b/tests/web_platform/CSS2/positioning/data/right-104.json @@ -49,4 +49,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-109.json b/tests/web_platform/CSS2/positioning/data/right-109.json index 0317d9e48..e5c71f274 100644 --- a/tests/web_platform/CSS2/positioning/data/right-109.json +++ b/tests/web_platform/CSS2/positioning/data/right-109.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-110.json b/tests/web_platform/CSS2/positioning/data/right-110.json index 69b75755f..be1e25aec 100644 --- a/tests/web_platform/CSS2/positioning/data/right-110.json +++ b/tests/web_platform/CSS2/positioning/data/right-110.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-111.json b/tests/web_platform/CSS2/positioning/data/right-111.json index fc9a07aab..15017db7f 100644 --- a/tests/web_platform/CSS2/positioning/data/right-111.json +++ b/tests/web_platform/CSS2/positioning/data/right-111.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-112.json b/tests/web_platform/CSS2/positioning/data/right-112.json index 6822d5521..99821f7cf 100644 --- a/tests/web_platform/CSS2/positioning/data/right-112.json +++ b/tests/web_platform/CSS2/positioning/data/right-112.json @@ -47,4 +47,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-113.json b/tests/web_platform/CSS2/positioning/data/right-113.json index cd8818825..9568eefae 100644 --- a/tests/web_platform/CSS2/positioning/data/right-113.json +++ b/tests/web_platform/CSS2/positioning/data/right-113.json @@ -64,4 +64,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-001.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-001.json index db4dad39b..fb1d0fbc2 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-001.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-001.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-002.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-002.json index 96480957c..b07c8871e 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-002.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-002.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-003.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-003.json index 0389a5424..4528ee9ac 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-003.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-003.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-004.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-004.json index 24ad77583..b59c468ef 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-004.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-004.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-005.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-005.json index 913a5b211..af87a035e 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-005.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-005.json @@ -66,4 +66,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-006.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-006.json index eb34d901d..eaecd639f 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-006.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-006.json @@ -66,4 +66,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-007.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-007.json index d2fb36368..f558d551c 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-007.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-007.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-008.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-008.json index 4ba490ed3..f29af9116 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-008.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-008.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-009.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-009.json index 32271ca16..780cf4622 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-009.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-009.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-010.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-010.json index 619ace7a0..2e65d54c2 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-010.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-010.json @@ -40,4 +40,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-012.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-012.json index 718331a7f..101f9fe8f 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-012.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-012.json @@ -74,4 +74,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-013.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-013.json index d5d6c9f1f..d163ac2e7 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-013.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-013.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-014.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-014.json index 570b42924..e8abe27d5 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-014.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-014.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-applies-to-015.json b/tests/web_platform/CSS2/positioning/data/right-applies-to-015.json index a4debbc6e..ea2bafb3c 100644 --- a/tests/web_platform/CSS2/positioning/data/right-applies-to-015.json +++ b/tests/web_platform/CSS2/positioning/data/right-applies-to-015.json @@ -65,4 +65,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-offset-001.json b/tests/web_platform/CSS2/positioning/data/right-offset-001.json index fe6538b9a..6ca723f24 100644 --- a/tests/web_platform/CSS2/positioning/data/right-offset-001.json +++ b/tests/web_platform/CSS2/positioning/data/right-offset-001.json @@ -72,4 +72,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-offset-002.json b/tests/web_platform/CSS2/positioning/data/right-offset-002.json index 4f93d85e3..3da5fb843 100644 --- a/tests/web_platform/CSS2/positioning/data/right-offset-002.json +++ b/tests/web_platform/CSS2/positioning/data/right-offset-002.json @@ -61,4 +61,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-offset-003.json b/tests/web_platform/CSS2/positioning/data/right-offset-003.json index 19405a825..d5d812399 100644 --- a/tests/web_platform/CSS2/positioning/data/right-offset-003.json +++ b/tests/web_platform/CSS2/positioning/data/right-offset-003.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-offset-004.json b/tests/web_platform/CSS2/positioning/data/right-offset-004.json index 5262e6696..2a6afaa7a 100644 --- a/tests/web_platform/CSS2/positioning/data/right-offset-004.json +++ b/tests/web_platform/CSS2/positioning/data/right-offset-004.json @@ -37,4 +37,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/right-offset-percentage-001.json b/tests/web_platform/CSS2/positioning/data/right-offset-percentage-001.json index 3772e429d..f5df678ab 100644 --- a/tests/web_platform/CSS2/positioning/data/right-offset-percentage-001.json +++ b/tests/web_platform/CSS2/positioning/data/right-offset-percentage-001.json @@ -69,4 +69,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-004.json b/tests/web_platform/CSS2/positioning/data/top-004.json index 4fe21d397..f9b33b226 100644 --- a/tests/web_platform/CSS2/positioning/data/top-004.json +++ b/tests/web_platform/CSS2/positioning/data/top-004.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-005.json b/tests/web_platform/CSS2/positioning/data/top-005.json index 49991b3e0..d8714ffd8 100644 --- a/tests/web_platform/CSS2/positioning/data/top-005.json +++ b/tests/web_platform/CSS2/positioning/data/top-005.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-006.json b/tests/web_platform/CSS2/positioning/data/top-006.json index a0e9564b7..64ba360d9 100644 --- a/tests/web_platform/CSS2/positioning/data/top-006.json +++ b/tests/web_platform/CSS2/positioning/data/top-006.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-007.json b/tests/web_platform/CSS2/positioning/data/top-007.json index b32044943..622e184ab 100644 --- a/tests/web_platform/CSS2/positioning/data/top-007.json +++ b/tests/web_platform/CSS2/positioning/data/top-007.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-008.json b/tests/web_platform/CSS2/positioning/data/top-008.json index 4e527e130..26d105649 100644 --- a/tests/web_platform/CSS2/positioning/data/top-008.json +++ b/tests/web_platform/CSS2/positioning/data/top-008.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-016.json b/tests/web_platform/CSS2/positioning/data/top-016.json index 68608d796..9992db0c7 100644 --- a/tests/web_platform/CSS2/positioning/data/top-016.json +++ b/tests/web_platform/CSS2/positioning/data/top-016.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-017.json b/tests/web_platform/CSS2/positioning/data/top-017.json index 4c6b3f444..aedf6bb1d 100644 --- a/tests/web_platform/CSS2/positioning/data/top-017.json +++ b/tests/web_platform/CSS2/positioning/data/top-017.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-018.json b/tests/web_platform/CSS2/positioning/data/top-018.json index 3b193dcaf..598ecc4ba 100644 --- a/tests/web_platform/CSS2/positioning/data/top-018.json +++ b/tests/web_platform/CSS2/positioning/data/top-018.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-019.json b/tests/web_platform/CSS2/positioning/data/top-019.json index a3a1a4013..29e5dd29b 100644 --- a/tests/web_platform/CSS2/positioning/data/top-019.json +++ b/tests/web_platform/CSS2/positioning/data/top-019.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-020.json b/tests/web_platform/CSS2/positioning/data/top-020.json index a52d1375f..08bda26ff 100644 --- a/tests/web_platform/CSS2/positioning/data/top-020.json +++ b/tests/web_platform/CSS2/positioning/data/top-020.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-028.json b/tests/web_platform/CSS2/positioning/data/top-028.json index b23a3c8f5..89c36942a 100644 --- a/tests/web_platform/CSS2/positioning/data/top-028.json +++ b/tests/web_platform/CSS2/positioning/data/top-028.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-029.json b/tests/web_platform/CSS2/positioning/data/top-029.json index 2db8cf575..1ec14fc82 100644 --- a/tests/web_platform/CSS2/positioning/data/top-029.json +++ b/tests/web_platform/CSS2/positioning/data/top-029.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-030.json b/tests/web_platform/CSS2/positioning/data/top-030.json index 7f5686cff..4ff1382ce 100644 --- a/tests/web_platform/CSS2/positioning/data/top-030.json +++ b/tests/web_platform/CSS2/positioning/data/top-030.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-031.json b/tests/web_platform/CSS2/positioning/data/top-031.json index ed70aa73e..e5ba6292e 100644 --- a/tests/web_platform/CSS2/positioning/data/top-031.json +++ b/tests/web_platform/CSS2/positioning/data/top-031.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-032.json b/tests/web_platform/CSS2/positioning/data/top-032.json index 242c3565c..d56df97be 100644 --- a/tests/web_platform/CSS2/positioning/data/top-032.json +++ b/tests/web_platform/CSS2/positioning/data/top-032.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-040.json b/tests/web_platform/CSS2/positioning/data/top-040.json index 52be7d646..44a0b5e74 100644 --- a/tests/web_platform/CSS2/positioning/data/top-040.json +++ b/tests/web_platform/CSS2/positioning/data/top-040.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-041.json b/tests/web_platform/CSS2/positioning/data/top-041.json index 4508474a5..d833b12a8 100644 --- a/tests/web_platform/CSS2/positioning/data/top-041.json +++ b/tests/web_platform/CSS2/positioning/data/top-041.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-042.json b/tests/web_platform/CSS2/positioning/data/top-042.json index 82fad0a8b..d28285d08 100644 --- a/tests/web_platform/CSS2/positioning/data/top-042.json +++ b/tests/web_platform/CSS2/positioning/data/top-042.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-043.json b/tests/web_platform/CSS2/positioning/data/top-043.json index 0a532299f..c305f1714 100644 --- a/tests/web_platform/CSS2/positioning/data/top-043.json +++ b/tests/web_platform/CSS2/positioning/data/top-043.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-044.json b/tests/web_platform/CSS2/positioning/data/top-044.json index 53ab30ea8..d3d5ee882 100644 --- a/tests/web_platform/CSS2/positioning/data/top-044.json +++ b/tests/web_platform/CSS2/positioning/data/top-044.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-052.json b/tests/web_platform/CSS2/positioning/data/top-052.json index 2668ea457..48823acbe 100644 --- a/tests/web_platform/CSS2/positioning/data/top-052.json +++ b/tests/web_platform/CSS2/positioning/data/top-052.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-053.json b/tests/web_platform/CSS2/positioning/data/top-053.json index eee7b3f2b..aa38c15f5 100644 --- a/tests/web_platform/CSS2/positioning/data/top-053.json +++ b/tests/web_platform/CSS2/positioning/data/top-053.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-054.json b/tests/web_platform/CSS2/positioning/data/top-054.json index bcd7f2506..1d959ee94 100644 --- a/tests/web_platform/CSS2/positioning/data/top-054.json +++ b/tests/web_platform/CSS2/positioning/data/top-054.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-055.json b/tests/web_platform/CSS2/positioning/data/top-055.json index c330b03b5..2a5fa23e3 100644 --- a/tests/web_platform/CSS2/positioning/data/top-055.json +++ b/tests/web_platform/CSS2/positioning/data/top-055.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-056.json b/tests/web_platform/CSS2/positioning/data/top-056.json index e68572f92..a9ceb3709 100644 --- a/tests/web_platform/CSS2/positioning/data/top-056.json +++ b/tests/web_platform/CSS2/positioning/data/top-056.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-064.json b/tests/web_platform/CSS2/positioning/data/top-064.json index 0a6483db1..567b3311d 100644 --- a/tests/web_platform/CSS2/positioning/data/top-064.json +++ b/tests/web_platform/CSS2/positioning/data/top-064.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-065.json b/tests/web_platform/CSS2/positioning/data/top-065.json index fac2a5964..a51d59642 100644 --- a/tests/web_platform/CSS2/positioning/data/top-065.json +++ b/tests/web_platform/CSS2/positioning/data/top-065.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-066.json b/tests/web_platform/CSS2/positioning/data/top-066.json index 32e0a81eb..bcaf82eb0 100644 --- a/tests/web_platform/CSS2/positioning/data/top-066.json +++ b/tests/web_platform/CSS2/positioning/data/top-066.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-067.json b/tests/web_platform/CSS2/positioning/data/top-067.json index c1fa9c350..cd5c1fd1a 100644 --- a/tests/web_platform/CSS2/positioning/data/top-067.json +++ b/tests/web_platform/CSS2/positioning/data/top-067.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-068.json b/tests/web_platform/CSS2/positioning/data/top-068.json index eb590708b..c1af46115 100644 --- a/tests/web_platform/CSS2/positioning/data/top-068.json +++ b/tests/web_platform/CSS2/positioning/data/top-068.json @@ -62,4 +62,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-076.json b/tests/web_platform/CSS2/positioning/data/top-076.json index 8c5da07a8..42b1246e5 100644 --- a/tests/web_platform/CSS2/positioning/data/top-076.json +++ b/tests/web_platform/CSS2/positioning/data/top-076.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-077.json b/tests/web_platform/CSS2/positioning/data/top-077.json index 61c401728..89b4e74f2 100644 --- a/tests/web_platform/CSS2/positioning/data/top-077.json +++ b/tests/web_platform/CSS2/positioning/data/top-077.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-078.json b/tests/web_platform/CSS2/positioning/data/top-078.json index 6b8b83068..fce45954e 100644 --- a/tests/web_platform/CSS2/positioning/data/top-078.json +++ b/tests/web_platform/CSS2/positioning/data/top-078.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-079.json b/tests/web_platform/CSS2/positioning/data/top-079.json index 8e9faff11..4bb48e4c8 100644 --- a/tests/web_platform/CSS2/positioning/data/top-079.json +++ b/tests/web_platform/CSS2/positioning/data/top-079.json @@ -80,4 +80,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-080.json b/tests/web_platform/CSS2/positioning/data/top-080.json index fba56a126..a24f98c16 100644 --- a/tests/web_platform/CSS2/positioning/data/top-080.json +++ b/tests/web_platform/CSS2/positioning/data/top-080.json @@ -80,4 +80,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-088.json b/tests/web_platform/CSS2/positioning/data/top-088.json index 919e0d8a3..8df21f4bb 100644 --- a/tests/web_platform/CSS2/positioning/data/top-088.json +++ b/tests/web_platform/CSS2/positioning/data/top-088.json @@ -55,4 +55,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-089.json b/tests/web_platform/CSS2/positioning/data/top-089.json index 3fca2a8ae..192598a63 100644 --- a/tests/web_platform/CSS2/positioning/data/top-089.json +++ b/tests/web_platform/CSS2/positioning/data/top-089.json @@ -55,4 +55,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-090.json b/tests/web_platform/CSS2/positioning/data/top-090.json index df8d5ad01..a459b0f12 100644 --- a/tests/web_platform/CSS2/positioning/data/top-090.json +++ b/tests/web_platform/CSS2/positioning/data/top-090.json @@ -55,4 +55,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-091.json b/tests/web_platform/CSS2/positioning/data/top-091.json index 42a9dfcb9..cdda1a0c8 100644 --- a/tests/web_platform/CSS2/positioning/data/top-091.json +++ b/tests/web_platform/CSS2/positioning/data/top-091.json @@ -80,4 +80,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-092.json b/tests/web_platform/CSS2/positioning/data/top-092.json index 6f41f792b..4bd2101ea 100644 --- a/tests/web_platform/CSS2/positioning/data/top-092.json +++ b/tests/web_platform/CSS2/positioning/data/top-092.json @@ -80,4 +80,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-100.json b/tests/web_platform/CSS2/positioning/data/top-100.json index 2f39011cf..03c9c8f2e 100644 --- a/tests/web_platform/CSS2/positioning/data/top-100.json +++ b/tests/web_platform/CSS2/positioning/data/top-100.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-101.json b/tests/web_platform/CSS2/positioning/data/top-101.json index 6e3d1f1d2..4ca7cbb97 100644 --- a/tests/web_platform/CSS2/positioning/data/top-101.json +++ b/tests/web_platform/CSS2/positioning/data/top-101.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-102.json b/tests/web_platform/CSS2/positioning/data/top-102.json index 21cacc811..acdc9abf7 100644 --- a/tests/web_platform/CSS2/positioning/data/top-102.json +++ b/tests/web_platform/CSS2/positioning/data/top-102.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-103.json b/tests/web_platform/CSS2/positioning/data/top-103.json index ec9320476..376ebe85d 100644 --- a/tests/web_platform/CSS2/positioning/data/top-103.json +++ b/tests/web_platform/CSS2/positioning/data/top-103.json @@ -63,4 +63,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-104.json b/tests/web_platform/CSS2/positioning/data/top-104.json index 70eab765c..dd35c57eb 100644 --- a/tests/web_platform/CSS2/positioning/data/top-104.json +++ b/tests/web_platform/CSS2/positioning/data/top-104.json @@ -63,4 +63,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-109.json b/tests/web_platform/CSS2/positioning/data/top-109.json index 5f75ba6b2..9dc7dda0c 100644 --- a/tests/web_platform/CSS2/positioning/data/top-109.json +++ b/tests/web_platform/CSS2/positioning/data/top-109.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-110.json b/tests/web_platform/CSS2/positioning/data/top-110.json index 7eb38f77f..a71faaa77 100644 --- a/tests/web_platform/CSS2/positioning/data/top-110.json +++ b/tests/web_platform/CSS2/positioning/data/top-110.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-111.json b/tests/web_platform/CSS2/positioning/data/top-111.json index bf4bbeb14..6c6a8679b 100644 --- a/tests/web_platform/CSS2/positioning/data/top-111.json +++ b/tests/web_platform/CSS2/positioning/data/top-111.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-112.json b/tests/web_platform/CSS2/positioning/data/top-112.json index cfd803279..6bf6977dc 100644 --- a/tests/web_platform/CSS2/positioning/data/top-112.json +++ b/tests/web_platform/CSS2/positioning/data/top-112.json @@ -43,4 +43,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-113.json b/tests/web_platform/CSS2/positioning/data/top-113.json index b5f69eb52..85b09b058 100644 --- a/tests/web_platform/CSS2/positioning/data/top-113.json +++ b/tests/web_platform/CSS2/positioning/data/top-113.json @@ -65,4 +65,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-001.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-001.json index 0b767eb5c..60bfcb7b3 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-001.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-001.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-002.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-002.json index 5c811a928..3fcf6c368 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-002.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-002.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-003.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-003.json index fe9c27014..296cc410f 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-003.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-003.json @@ -68,4 +68,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-004.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-004.json index b6449c90f..ffd031fd1 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-004.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-004.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-005.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-005.json index 58ce4faa5..273049109 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-005.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-005.json @@ -66,4 +66,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-006.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-006.json index aef172ca7..2edb8dd8b 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-006.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-006.json @@ -66,4 +66,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-007.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-007.json index 15ae47d4d..9c88fa4a8 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-007.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-007.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-008.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-008.json index a63e5cf54..2db7103cb 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-008.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-008.json @@ -44,4 +44,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-009.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-009.json index 679eb2f5d..0fe00d489 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-009.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-009.json @@ -48,4 +48,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-010.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-010.json index d4382746b..20fd92862 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-010.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-010.json @@ -40,4 +40,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-012.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-012.json index 19d6f476f..20e463ec1 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-012.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-012.json @@ -74,4 +74,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-013.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-013.json index c7a423b60..82cb5e7ac 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-013.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-013.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-014.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-014.json index 234c731da..4575897e9 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-014.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-014.json @@ -59,4 +59,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-applies-to-015.json b/tests/web_platform/CSS2/positioning/data/top-applies-to-015.json index 3aa1d2574..7b4c7c0d0 100644 --- a/tests/web_platform/CSS2/positioning/data/top-applies-to-015.json +++ b/tests/web_platform/CSS2/positioning/data/top-applies-to-015.json @@ -65,4 +65,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-offset-001.json b/tests/web_platform/CSS2/positioning/data/top-offset-001.json index 2a7cb7637..86e87e472 100644 --- a/tests/web_platform/CSS2/positioning/data/top-offset-001.json +++ b/tests/web_platform/CSS2/positioning/data/top-offset-001.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-offset-002.json b/tests/web_platform/CSS2/positioning/data/top-offset-002.json index 02006cfb6..69accecc0 100644 --- a/tests/web_platform/CSS2/positioning/data/top-offset-002.json +++ b/tests/web_platform/CSS2/positioning/data/top-offset-002.json @@ -60,4 +60,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-offset-003.json b/tests/web_platform/CSS2/positioning/data/top-offset-003.json index 84107d941..082e9d3f3 100644 --- a/tests/web_platform/CSS2/positioning/data/top-offset-003.json +++ b/tests/web_platform/CSS2/positioning/data/top-offset-003.json @@ -71,4 +71,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-offset-percentage-001.json b/tests/web_platform/CSS2/positioning/data/top-offset-percentage-001.json index dc88751bb..88d783a18 100644 --- a/tests/web_platform/CSS2/positioning/data/top-offset-percentage-001.json +++ b/tests/web_platform/CSS2/positioning/data/top-offset-percentage-001.json @@ -89,4 +89,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/data/top-offset-percentage-002.json b/tests/web_platform/CSS2/positioning/data/top-offset-percentage-002.json index b885a534c..857bbe0ad 100644 --- a/tests/web_platform/CSS2/positioning/data/top-offset-percentage-002.json +++ b/tests/web_platform/CSS2/positioning/data/top-offset-percentage-002.json @@ -79,4 +79,4 @@ "display": "block" } } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-001.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-001.json index 2d42b7904..56da25768 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-001.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-001.json @@ -139,4 +139,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-002.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-002.json index de49a9a06..dfd7f5cb5 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-002.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-002.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-003.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-003.json index 165cf04ac..8b381ff45 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-003.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-003.json @@ -139,4 +139,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-004.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-004.json index 165cf04ac..8b381ff45 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-004.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-004.json @@ -139,4 +139,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-005.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-005.json index 165cf04ac..8b381ff45 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-005.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-005.json @@ -139,4 +139,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-006.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-006.json index adaba91b4..152da0c43 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-006.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-006.json @@ -185,4 +185,4 @@ 320 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-007.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-007.json index f2cc51305..2f1bd00f8 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-007.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-007.json @@ -141,4 +141,4 @@ 300 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-008.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-008.json index c26212a72..7ab7d653c 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-008.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-008.json @@ -139,4 +139,4 @@ 288 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-009.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-009.json index 477439310..b9ed42fcc 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-009.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-009.json @@ -141,4 +141,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-010.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-010.json index 165cf04ac..8b381ff45 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-010.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-010.json @@ -139,4 +139,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-011.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-011.json index 165cf04ac..8b381ff45 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-011.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-011.json @@ -139,4 +139,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-012.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-012.json index 165cf04ac..8b381ff45 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-012.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-height-012.json @@ -139,4 +139,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-001.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-001.json index 2739db67a..42bdf9e51 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-001.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-001.json @@ -139,4 +139,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-002.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-002.json index 8e42a1769..a80ede43e 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-002.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-002.json @@ -140,4 +140,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-003.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-003.json index f6bd8e0ce..cd468661c 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-003.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-003.json @@ -139,4 +139,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-004.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-004.json index 165cf04ac..8b381ff45 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-004.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-004.json @@ -139,4 +139,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-005.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-005.json index 165cf04ac..8b381ff45 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-005.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-005.json @@ -139,4 +139,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-006.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-006.json index 165cf04ac..8b381ff45 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-006.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-006.json @@ -139,4 +139,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-007.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-007.json index ed88f030f..cbcf1e8e7 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-007.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-007.json @@ -186,4 +186,4 @@ 400 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-008.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-008.json index f441ed226..d2b60031a 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-008.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-008.json @@ -139,4 +139,4 @@ 288 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-009.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-009.json index 145c2daa7..c2c1722f9 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-009.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-009.json @@ -186,4 +186,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-010.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-010.json index 165cf04ac..8b381ff45 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-010.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-010.json @@ -139,4 +139,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-011.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-011.json index f6bd8e0ce..cd468661c 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-011.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-011.json @@ -139,4 +139,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-012.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-012.json index 165cf04ac..8b381ff45 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-012.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-max-height-012.json @@ -139,4 +139,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-001.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-001.json index de49a9a06..dfd7f5cb5 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-001.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-001.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-002.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-002.json index 1ccb2971d..daf1c2bae 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-002.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-002.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-003.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-003.json index b6a1fb73a..7b8bde5c1 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-003.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-003.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-004.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-004.json index 1ccb2971d..daf1c2bae 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-004.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-004.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-005.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-005.json index de49a9a06..dfd7f5cb5 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-005.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-005.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-006.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-006.json index 1ccb2971d..daf1c2bae 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-006.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-006.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-007.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-007.json index de49a9a06..dfd7f5cb5 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-007.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-007.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-008.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-008.json index 2014cef2a..534e99153 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-008.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-008.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-009.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-009.json index 4e53237ce..fbae698a3 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-009.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-009.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-010.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-010.json index de49a9a06..dfd7f5cb5 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-010.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-010.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-011.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-011.json index de49a9a06..dfd7f5cb5 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-011.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-011.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-012.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-012.json index 1ccb2971d..daf1c2bae 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-012.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-012.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-013.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-013.json index 1ccb2971d..daf1c2bae 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-013.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-013.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-014.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-014.json index de49a9a06..dfd7f5cb5 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-014.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-014.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-015.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-015.json index 32f30ef69..00528d5cd 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-015.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-015.json @@ -139,4 +139,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-016.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-016.json index 1ccb2971d..daf1c2bae 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-016.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-016.json @@ -141,4 +141,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-017.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-017.json index f639b7ead..5db93a3b1 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-017.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-017.json @@ -141,4 +141,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-018.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-018.json index ae22095cb..56a6ac4ec 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-018.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-018.json @@ -141,4 +141,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-019.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-019.json index 656ba0583..27cf31aa4 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-019.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-019.json @@ -141,4 +141,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-020.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-020.json index f639b7ead..5db93a3b1 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-020.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-020.json @@ -141,4 +141,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-021.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-021.json index 90063164d..fea3685d3 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-021.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-021.json @@ -141,4 +141,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-022.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-022.json index bdf346315..b73563e23 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-022.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-022.json @@ -141,4 +141,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-023.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-023.json index ccdddaa93..47a532ffd 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-023.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-023.json @@ -141,4 +141,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-024.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-024.json index 90063164d..fea3685d3 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-024.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-024.json @@ -141,4 +141,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-025.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-025.json index 20e050edf..699cce20e 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-025.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-025.json @@ -139,4 +139,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-026.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-026.json index 930e943b5..ab9e1b2fe 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-026.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-026.json @@ -139,4 +139,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-027.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-027.json index 6ee43b0f4..5dca0d9c1 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-027.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-027.json @@ -185,4 +185,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-028.json b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-028.json index 3263bf10c..1c49a7b45 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-028.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-non-replaced-width-028.json @@ -297,4 +297,4 @@ 52 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-001.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-001.json index 08aebb2eb..4e4487c21 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-001.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-001.json @@ -139,4 +139,4 @@ 21 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-002.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-002.json index 6df183542..10f77ca7c 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-002.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-002.json @@ -185,4 +185,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-003.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-003.json index 150a070b6..8df648dc4 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-003.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-003.json @@ -185,4 +185,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-004.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-004.json index 033d837a4..c70ca013b 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-004.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-004.json @@ -185,4 +185,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-005.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-005.json index f35461286..a1e75e487 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-005.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-005.json @@ -185,4 +185,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-006.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-006.json index 106379a03..3f3414a6c 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-006.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-006.json @@ -233,4 +233,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-007.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-007.json index 1c3b16d1a..64c700ec1 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-007.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-007.json @@ -185,4 +185,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-008.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-008.json index d9c602eb5..1383ccdbf 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-008.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-008.json @@ -185,4 +185,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-009.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-009.json index 9158e84cd..b9c933c16 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-009.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-009.json @@ -185,4 +185,4 @@ 3 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-010.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-010.json index 6d92803e4..5ea8f6758 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-010.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-010.json @@ -185,4 +185,4 @@ 3 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-011.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-011.json index 0a314abae..c5557e36c 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-011.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-011.json @@ -185,4 +185,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-012.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-012.json index 6e09d53ea..a8ddee038 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-012.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-012.json @@ -185,4 +185,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-013.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-013.json index 4bad77dc2..e832af972 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-013.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-013.json @@ -233,4 +233,4 @@ 195 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-014.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-014.json index c310dd418..e9d5f9a62 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-014.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-014.json @@ -185,4 +185,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-016.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-016.json index 9158e84cd..b9c933c16 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-016.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-016.json @@ -185,4 +185,4 @@ 3 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-017.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-017.json index 6d92803e4..5ea8f6758 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-017.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-017.json @@ -185,4 +185,4 @@ 3 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-018.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-018.json index 0a314abae..c5557e36c 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-018.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-018.json @@ -185,4 +185,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-019.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-019.json index 6e09d53ea..a8ddee038 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-019.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-019.json @@ -185,4 +185,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-020.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-020.json index 4bad77dc2..e832af972 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-020.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-020.json @@ -233,4 +233,4 @@ 195 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-021.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-021.json index c310dd418..e9d5f9a62 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-021.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-021.json @@ -185,4 +185,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-022.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-022.json index d9c602eb5..1383ccdbf 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-022.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-022.json @@ -185,4 +185,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-023.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-023.json index 9158e84cd..b9c933c16 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-023.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-023.json @@ -185,4 +185,4 @@ 3 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-024.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-024.json index 6d92803e4..5ea8f6758 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-024.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-024.json @@ -185,4 +185,4 @@ 3 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-025.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-025.json index 0a314abae..c5557e36c 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-025.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-025.json @@ -185,4 +185,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-026.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-026.json index 6e09d53ea..a8ddee038 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-026.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-026.json @@ -185,4 +185,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-027.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-027.json index 4bad77dc2..e832af972 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-027.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-027.json @@ -233,4 +233,4 @@ 195 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-028.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-028.json index 86ebee8e7..cf0b61b79 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-028.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-028.json @@ -185,4 +185,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-029.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-029.json index d9c602eb5..1383ccdbf 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-029.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-029.json @@ -185,4 +185,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-030.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-030.json index 9158e84cd..b9c933c16 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-030.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-030.json @@ -185,4 +185,4 @@ 3 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-031.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-031.json index 6d92803e4..5ea8f6758 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-031.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-031.json @@ -185,4 +185,4 @@ 3 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-032.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-032.json index 0a314abae..c5557e36c 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-032.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-032.json @@ -185,4 +185,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-033.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-033.json index 6e09d53ea..a8ddee038 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-033.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-033.json @@ -185,4 +185,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-034.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-034.json index 4bad77dc2..e832af972 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-034.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-034.json @@ -233,4 +233,4 @@ 195 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-035.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-035.json index 86ebee8e7..cf0b61b79 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-035.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-035.json @@ -185,4 +185,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-036.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-036.json index 48feed990..1ad4297f4 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-036.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-height-036.json @@ -369,4 +369,4 @@ 45 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-001.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-001.json index d1e56847a..e72f4931f 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-001.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-001.json @@ -185,4 +185,4 @@ 198 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-002.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-002.json index 3ff449537..9fbde24ea 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-002.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-002.json @@ -233,4 +233,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003.json index 8896a91b9..44a0d8011 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003.json @@ -233,4 +233,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003a.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003a.json index ec73dec32..f4a2b4d30 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003a.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003a.json @@ -233,4 +233,4 @@ 225 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003b.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003b.json index ebc80439d..7c459f764 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003b.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003b.json @@ -233,4 +233,4 @@ 300 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003c.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003c.json index 015ef0460..fc1160407 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003c.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-003c.json @@ -233,4 +233,4 @@ 300 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-004.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-004.json index 129e13261..9e83b879f 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-004.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-004.json @@ -281,4 +281,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-006.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-006.json index b9235373a..8631d168a 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-006.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-006.json @@ -185,4 +185,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-008.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-008.json index d1e56847a..e72f4931f 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-008.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-008.json @@ -185,4 +185,4 @@ 198 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-009.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-009.json index 3ff449537..9fbde24ea 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-009.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-009.json @@ -233,4 +233,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-010.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-010.json index 8896a91b9..44a0d8011 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-010.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-010.json @@ -233,4 +233,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-011.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-011.json index 129e13261..9e83b879f 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-011.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-011.json @@ -281,4 +281,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-013.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-013.json index b9235373a..8631d168a 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-013.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-013.json @@ -185,4 +185,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-015.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-015.json index a46395108..c72b2cc91 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-015.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-015.json @@ -185,4 +185,4 @@ 198 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-020.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-020.json index 428d646c7..3b58331dd 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-020.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-020.json @@ -185,4 +185,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-022.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-022.json index ce61c316f..640d3e504 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-022.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-022.json @@ -185,4 +185,4 @@ 198 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-023.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-023.json index 98f4421b7..31c59af00 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-023.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-023.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-024.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-024.json index 96cc0b5be..3988ffcaf 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-024.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-024.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-025.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-025.json index ce223f351..255f36ac3 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-025.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-025.json @@ -281,4 +281,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-027.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-027.json index 428d646c7..3b58331dd 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-027.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-027.json @@ -185,4 +185,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-029.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-029.json index ce61c316f..640d3e504 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-029.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-029.json @@ -185,4 +185,4 @@ 198 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-030.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-030.json index 98f4421b7..31c59af00 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-030.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-030.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-031.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-031.json index 96cc0b5be..3988ffcaf 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-031.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-031.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-032.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-032.json index ce223f351..255f36ac3 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-032.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-032.json @@ -281,4 +281,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-034.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-034.json index 428d646c7..3b58331dd 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-034.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-034.json @@ -185,4 +185,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-036.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-036.json index 5ebabb3e2..6c2ee3389 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-036.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-036.json @@ -185,4 +185,4 @@ 198 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-037.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-037.json index 436713cfe..3e8ae710c 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-037.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-037.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-038.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-038.json index f27a0fb33..4ac829547 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-038.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-038.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-039.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-039.json index c20b44feb..261a1517e 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-039.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-039.json @@ -281,4 +281,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-041.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-041.json index bfc23da24..c67906dfb 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-041.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-041.json @@ -185,4 +185,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-043.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-043.json index 5ebabb3e2..6c2ee3389 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-043.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-043.json @@ -185,4 +185,4 @@ 198 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-048.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-048.json index bfc23da24..c67906dfb 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-048.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-048.json @@ -185,4 +185,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-050.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-050.json index 5ebabb3e2..6c2ee3389 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-050.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-050.json @@ -185,4 +185,4 @@ 198 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-051.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-051.json index 436713cfe..3e8ae710c 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-051.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-051.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-052.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-052.json index f27a0fb33..4ac829547 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-052.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-052.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-053.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-053.json index c20b44feb..261a1517e 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-053.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-053.json @@ -281,4 +281,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-055.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-055.json index bfc23da24..c67906dfb 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-055.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-055.json @@ -185,4 +185,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-057.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-057.json index 5ebabb3e2..6c2ee3389 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-057.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-057.json @@ -185,4 +185,4 @@ 198 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-062.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-062.json index bfc23da24..c67906dfb 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-062.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-062.json @@ -185,4 +185,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-064.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-064.json index 5ebabb3e2..6c2ee3389 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-064.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-064.json @@ -185,4 +185,4 @@ 198 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-065.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-065.json index 436713cfe..3e8ae710c 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-065.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-065.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-066.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-066.json index f27a0fb33..4ac829547 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-066.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-066.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-067.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-067.json index c20b44feb..261a1517e 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-067.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-067.json @@ -281,4 +281,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-069.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-069.json index bfc23da24..c67906dfb 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-069.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-069.json @@ -185,4 +185,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-071.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-071.json index 5ebabb3e2..6c2ee3389 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-071.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-071.json @@ -185,4 +185,4 @@ 198 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-076.json b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-076.json index bfc23da24..c67906dfb 100644 --- a/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-076.json +++ b/tests/web_platform/CSS2/positioning/ref/absolute-replaced-width-076.json @@ -185,4 +185,4 @@ 294 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-001.json b/tests/web_platform/CSS2/positioning/ref/abspos-001.json index 50833df69..79c654116 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-001.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-001.json @@ -185,4 +185,4 @@ 98 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-002.json b/tests/web_platform/CSS2/positioning/ref/abspos-002.json index 75b7a620f..2ae94764e 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-002.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-002.json @@ -236,4 +236,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-007.json b/tests/web_platform/CSS2/positioning/ref/abspos-007.json index 4689a329a..62bd49d77 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-007.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-007.json @@ -295,4 +295,4 @@ 34 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-008.json b/tests/web_platform/CSS2/positioning/ref/abspos-008.json index 09f0648db..241a7482f 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-008.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-008.json @@ -237,4 +237,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-009.json b/tests/web_platform/CSS2/positioning/ref/abspos-009.json index cc4f4baea..63266a684 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-009.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-009.json @@ -137,4 +137,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-011.json b/tests/web_platform/CSS2/positioning/ref/abspos-011.json index 3c3e58a18..6e5b84a04 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-011.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-011.json @@ -237,4 +237,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-012.json b/tests/web_platform/CSS2/positioning/ref/abspos-012.json index 71465c7b5..6b0792a58 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-012.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-012.json @@ -285,4 +285,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-013.json b/tests/web_platform/CSS2/positioning/ref/abspos-013.json index d5c30a000..7affb2333 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-013.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-013.json @@ -141,4 +141,4 @@ 20 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-014.json b/tests/web_platform/CSS2/positioning/ref/abspos-014.json index 5e54e721b..b60ceba1e 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-014.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-014.json @@ -141,4 +141,4 @@ 84 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-015.json b/tests/web_platform/CSS2/positioning/ref/abspos-015.json index 66caa6af0..0db140f2c 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-015.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-015.json @@ -141,4 +141,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-016.json b/tests/web_platform/CSS2/positioning/ref/abspos-016.json index 383b8ec50..119d8e367 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-016.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-016.json @@ -141,4 +141,4 @@ 64 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-017.json b/tests/web_platform/CSS2/positioning/ref/abspos-017.json index 66caa6af0..0db140f2c 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-017.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-017.json @@ -141,4 +141,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-018.json b/tests/web_platform/CSS2/positioning/ref/abspos-018.json index 383b8ec50..119d8e367 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-018.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-018.json @@ -141,4 +141,4 @@ 64 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-019.json b/tests/web_platform/CSS2/positioning/ref/abspos-019.json index 66caa6af0..0db140f2c 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-019.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-019.json @@ -141,4 +141,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-020.json b/tests/web_platform/CSS2/positioning/ref/abspos-020.json index 383b8ec50..119d8e367 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-020.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-020.json @@ -141,4 +141,4 @@ 64 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-022.json b/tests/web_platform/CSS2/positioning/ref/abspos-022.json index 179558398..bcd0d1612 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-022.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-022.json @@ -329,4 +329,4 @@ 64 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-024.json b/tests/web_platform/CSS2/positioning/ref/abspos-024.json index 80279a826..5b7cc29d4 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-024.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-024.json @@ -137,4 +137,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-025.json b/tests/web_platform/CSS2/positioning/ref/abspos-025.json index 76f98cd8e..1b447f916 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-025.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-025.json @@ -201,4 +201,4 @@ 20 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-026.json b/tests/web_platform/CSS2/positioning/ref/abspos-026.json index fe962b4a4..9c756a61b 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-026.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-026.json @@ -91,4 +91,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-027.json b/tests/web_platform/CSS2/positioning/ref/abspos-027.json index e24e9dce8..ef2589ede 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-027.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-027.json @@ -299,4 +299,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-028.json b/tests/web_platform/CSS2/positioning/ref/abspos-028.json index ad4dba5e4..a0372346b 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-028.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-028.json @@ -185,4 +185,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-001.json b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-001.json index ee30845fa..18e9922c4 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-001.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-001.json @@ -155,4 +155,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-002.json b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-002.json index ee30845fa..18e9922c4 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-002.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-002.json @@ -155,4 +155,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-003.json b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-003.json index ee30845fa..18e9922c4 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-003.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-003.json @@ -155,4 +155,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-004.json b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-004.json index ee30845fa..18e9922c4 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-004.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-004.json @@ -155,4 +155,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-005.json b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-005.json index 01d298dc9..849893261 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-005.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-005.json @@ -155,4 +155,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-006.json b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-006.json index 01d298dc9..849893261 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-006.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-006.json @@ -155,4 +155,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-007.json b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-007.json index 0e73ca501..fa046bf9e 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-007.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-007.json @@ -155,4 +155,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-008.json b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-008.json index 0e73ca501..fa046bf9e 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-008.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-008.json @@ -155,4 +155,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-009.json b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-009.json index 0e73ca501..fa046bf9e 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-009.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-009.json @@ -155,4 +155,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-010.json b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-010.json index 3c9d6f8dc..6e6a3bebc 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-010.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-containing-block-010.json @@ -258,4 +258,4 @@ 180 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-001.json b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-001.json index e9f93c1ee..7f0eb50cf 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-001.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-001.json @@ -237,4 +237,4 @@ 200 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-002.json b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-002.json index 75150b4e3..b43004572 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-002.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-002.json @@ -237,4 +237,4 @@ 200 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-003.json b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-003.json index 90e05d927..373a2f934 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-003.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-003.json @@ -237,4 +237,4 @@ 258 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-004.json b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-004.json index 366ff1921..68dd4580f 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-004.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-004.json @@ -189,4 +189,4 @@ 146 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-005.json b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-005.json index a1ea4b3e8..3d3b0ac30 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-005.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-005.json @@ -189,4 +189,4 @@ 146 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-006.json b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-006.json index 895086fee..30d213274 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-006.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-006.json @@ -189,4 +189,4 @@ 208 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-007.json b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-007.json index acfaf53a9..22762c59b 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-007.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-007.json @@ -196,4 +196,4 @@ 146 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-008.json b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-008.json index 97d6e078d..ea8e95a47 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-008.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-008.json @@ -196,4 +196,4 @@ 146 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-009.json b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-009.json index 40c19d4bb..c8cc56cb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-009.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-009.json @@ -196,4 +196,4 @@ 208 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-010.json b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-010.json index f73d0d916..95182d7de 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-010.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-010.json @@ -147,4 +147,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-011.json b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-011.json index c3c55c0b7..2cf80f6df 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-011.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-011.json @@ -189,4 +189,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-012.json b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-012.json index 90c1ac73b..37bf81fd5 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-overflow-012.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-overflow-012.json @@ -189,4 +189,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-width-001.json b/tests/web_platform/CSS2/positioning/ref/abspos-width-001.json index 3eae9a54b..26eb72ba5 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-width-001.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-width-001.json @@ -434,4 +434,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-width-002.json b/tests/web_platform/CSS2/positioning/ref/abspos-width-002.json index 8e2fe322c..863034c24 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-width-002.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-width-002.json @@ -242,4 +242,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-width-003.json b/tests/web_platform/CSS2/positioning/ref/abspos-width-003.json index 8e2fe322c..863034c24 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-width-003.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-width-003.json @@ -242,4 +242,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-width-004.json b/tests/web_platform/CSS2/positioning/ref/abspos-width-004.json index 7961370d1..f00822e22 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-width-004.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-width-004.json @@ -140,4 +140,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-width-005.json b/tests/web_platform/CSS2/positioning/ref/abspos-width-005.json index c4e3484f1..571274f6f 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-width-005.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-width-005.json @@ -141,4 +141,4 @@ 114 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/abspos-zero-width-001.json b/tests/web_platform/CSS2/positioning/ref/abspos-zero-width-001.json index 22069aac7..a7481aede 100644 --- a/tests/web_platform/CSS2/positioning/ref/abspos-zero-width-001.json +++ b/tests/web_platform/CSS2/positioning/ref/abspos-zero-width-001.json @@ -91,4 +91,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-004.json b/tests/web_platform/CSS2/positioning/ref/bottom-004.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-004.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-004.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-005.json b/tests/web_platform/CSS2/positioning/ref/bottom-005.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-005.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-005.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-006.json b/tests/web_platform/CSS2/positioning/ref/bottom-006.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-006.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-006.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-007.json b/tests/web_platform/CSS2/positioning/ref/bottom-007.json index 69d04e24a..f6db29573 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-007.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-007.json @@ -139,4 +139,4 @@ 99 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-008.json b/tests/web_platform/CSS2/positioning/ref/bottom-008.json index 69d04e24a..f6db29573 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-008.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-008.json @@ -139,4 +139,4 @@ 99 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-016.json b/tests/web_platform/CSS2/positioning/ref/bottom-016.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-016.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-016.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-017.json b/tests/web_platform/CSS2/positioning/ref/bottom-017.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-017.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-017.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-018.json b/tests/web_platform/CSS2/positioning/ref/bottom-018.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-018.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-018.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-019.json b/tests/web_platform/CSS2/positioning/ref/bottom-019.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-019.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-019.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-020.json b/tests/web_platform/CSS2/positioning/ref/bottom-020.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-020.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-020.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-028.json b/tests/web_platform/CSS2/positioning/ref/bottom-028.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-028.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-028.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-029.json b/tests/web_platform/CSS2/positioning/ref/bottom-029.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-029.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-029.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-030.json b/tests/web_platform/CSS2/positioning/ref/bottom-030.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-030.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-030.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-031.json b/tests/web_platform/CSS2/positioning/ref/bottom-031.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-031.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-031.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-032.json b/tests/web_platform/CSS2/positioning/ref/bottom-032.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-032.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-032.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-040.json b/tests/web_platform/CSS2/positioning/ref/bottom-040.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-040.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-040.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-041.json b/tests/web_platform/CSS2/positioning/ref/bottom-041.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-041.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-041.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-042.json b/tests/web_platform/CSS2/positioning/ref/bottom-042.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-042.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-042.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-043.json b/tests/web_platform/CSS2/positioning/ref/bottom-043.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-043.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-043.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-044.json b/tests/web_platform/CSS2/positioning/ref/bottom-044.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-044.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-044.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-052.json b/tests/web_platform/CSS2/positioning/ref/bottom-052.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-052.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-052.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-053.json b/tests/web_platform/CSS2/positioning/ref/bottom-053.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-053.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-053.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-054.json b/tests/web_platform/CSS2/positioning/ref/bottom-054.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-054.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-054.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-055.json b/tests/web_platform/CSS2/positioning/ref/bottom-055.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-055.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-055.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-056.json b/tests/web_platform/CSS2/positioning/ref/bottom-056.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-056.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-056.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-064.json b/tests/web_platform/CSS2/positioning/ref/bottom-064.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-064.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-064.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-065.json b/tests/web_platform/CSS2/positioning/ref/bottom-065.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-065.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-065.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-066.json b/tests/web_platform/CSS2/positioning/ref/bottom-066.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-066.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-066.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-067.json b/tests/web_platform/CSS2/positioning/ref/bottom-067.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-067.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-067.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-068.json b/tests/web_platform/CSS2/positioning/ref/bottom-068.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-068.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-068.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-076.json b/tests/web_platform/CSS2/positioning/ref/bottom-076.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-076.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-076.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-077.json b/tests/web_platform/CSS2/positioning/ref/bottom-077.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-077.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-077.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-078.json b/tests/web_platform/CSS2/positioning/ref/bottom-078.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-078.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-078.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-079.json b/tests/web_platform/CSS2/positioning/ref/bottom-079.json index 6a15648c6..35ea607e7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-079.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-079.json @@ -139,4 +139,4 @@ 140 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-080.json b/tests/web_platform/CSS2/positioning/ref/bottom-080.json index 6a15648c6..35ea607e7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-080.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-080.json @@ -139,4 +139,4 @@ 140 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-088.json b/tests/web_platform/CSS2/positioning/ref/bottom-088.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-088.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-088.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-089.json b/tests/web_platform/CSS2/positioning/ref/bottom-089.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-089.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-089.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-090.json b/tests/web_platform/CSS2/positioning/ref/bottom-090.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-090.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-090.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-091.json b/tests/web_platform/CSS2/positioning/ref/bottom-091.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-091.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-091.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-092.json b/tests/web_platform/CSS2/positioning/ref/bottom-092.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-092.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-092.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-100.json b/tests/web_platform/CSS2/positioning/ref/bottom-100.json index 150afe2a5..d694734d6 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-100.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-100.json @@ -139,4 +139,4 @@ 101 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-101.json b/tests/web_platform/CSS2/positioning/ref/bottom-101.json index 150afe2a5..d694734d6 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-101.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-101.json @@ -139,4 +139,4 @@ 101 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-102.json b/tests/web_platform/CSS2/positioning/ref/bottom-102.json index 150afe2a5..d694734d6 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-102.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-102.json @@ -139,4 +139,4 @@ 101 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-103.json b/tests/web_platform/CSS2/positioning/ref/bottom-103.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-103.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-103.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-104.json b/tests/web_platform/CSS2/positioning/ref/bottom-104.json index eb1c31e24..d3e582eb7 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-104.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-104.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-109.json b/tests/web_platform/CSS2/positioning/ref/bottom-109.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-109.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-109.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-110.json b/tests/web_platform/CSS2/positioning/ref/bottom-110.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-110.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-110.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-111.json b/tests/web_platform/CSS2/positioning/ref/bottom-111.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-111.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-111.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-112.json b/tests/web_platform/CSS2/positioning/ref/bottom-112.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-112.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-112.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-113.json b/tests/web_platform/CSS2/positioning/ref/bottom-113.json index 36f370f5e..8c9a29a3f 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-113.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-113.json @@ -187,4 +187,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-001.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-001.json index 05337a602..7faccb3e0 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-001.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-001.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-002.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-002.json index 05337a602..7faccb3e0 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-002.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-002.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-003.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-003.json index 05337a602..7faccb3e0 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-003.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-003.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-004.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-004.json index 6d6efc934..137fd96d2 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-004.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-004.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-005.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-005.json index 340073779..a5b4bf728 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-005.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-005.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-006.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-006.json index 340073779..a5b4bf728 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-006.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-006.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-007.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-007.json index d0bd863ff..377573b96 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-007.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-007.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-008.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-008.json index 4b3f19c54..64c478e2c 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-008.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-008.json @@ -93,4 +93,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-009.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-009.json index 4c4f3082e..084be0d42 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-009.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-009.json @@ -139,4 +139,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-010.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-010.json index 89ce312b1..fa6a128f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-010.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-010.json @@ -91,4 +91,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-012.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-012.json index 88697969b..b37b993ef 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-012.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-012.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-013.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-013.json index c5a4995f0..f821c426e 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-013.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-013.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-014.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-014.json index c5a4995f0..f821c426e 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-014.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-014.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-015.json b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-015.json index d4b7f220d..8e506dc58 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-015.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-applies-to-015.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-offset-001.json b/tests/web_platform/CSS2/positioning/ref/bottom-offset-001.json index 88c92a4ac..24922b061 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-offset-001.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-offset-001.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-offset-002.json b/tests/web_platform/CSS2/positioning/ref/bottom-offset-002.json index 84394a0ec..b457b5613 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-offset-002.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-offset-002.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-offset-003.json b/tests/web_platform/CSS2/positioning/ref/bottom-offset-003.json index d8411ba5f..4da7875b1 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-offset-003.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-offset-003.json @@ -185,4 +185,4 @@ 144 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/bottom-offset-percentage-001.json b/tests/web_platform/CSS2/positioning/ref/bottom-offset-percentage-001.json index 668070ed6..a4008a87a 100644 --- a/tests/web_platform/CSS2/positioning/ref/bottom-offset-percentage-001.json +++ b/tests/web_platform/CSS2/positioning/ref/bottom-offset-percentage-001.json @@ -185,4 +185,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-001.json b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-001.json index 0700b8588..45205059c 100644 --- a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-001.json +++ b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-001.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-002.json b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-002.json index f1f84cbed..455d63337 100644 --- a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-002.json +++ b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-002.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-003.json b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-003.json index f1f84cbed..455d63337 100644 --- a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-003.json +++ b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-003.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-004.json b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-004.json index 2b8dc375b..5f313d93c 100644 --- a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-004.json +++ b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-004.json @@ -185,4 +185,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-005.json b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-005.json index b541f0fee..cf07d3d3f 100644 --- a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-005.json +++ b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-005.json @@ -233,4 +233,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-005a.json b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-005a.json index 05b9ed014..8945711c2 100644 --- a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-005a.json +++ b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-005a.json @@ -233,4 +233,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-005b.json b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-005b.json index b541f0fee..cf07d3d3f 100644 --- a/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-005b.json +++ b/tests/web_platform/CSS2/positioning/ref/dynamic-top-change-005b.json @@ -233,4 +233,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-004.json b/tests/web_platform/CSS2/positioning/ref/left-004.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-004.json +++ b/tests/web_platform/CSS2/positioning/ref/left-004.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-005.json b/tests/web_platform/CSS2/positioning/ref/left-005.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-005.json +++ b/tests/web_platform/CSS2/positioning/ref/left-005.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-006.json b/tests/web_platform/CSS2/positioning/ref/left-006.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-006.json +++ b/tests/web_platform/CSS2/positioning/ref/left-006.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-007.json b/tests/web_platform/CSS2/positioning/ref/left-007.json index c4636a1c1..e6def77ac 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-007.json +++ b/tests/web_platform/CSS2/positioning/ref/left-007.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-008.json b/tests/web_platform/CSS2/positioning/ref/left-008.json index c4636a1c1..e6def77ac 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-008.json +++ b/tests/web_platform/CSS2/positioning/ref/left-008.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-016.json b/tests/web_platform/CSS2/positioning/ref/left-016.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-016.json +++ b/tests/web_platform/CSS2/positioning/ref/left-016.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-017.json b/tests/web_platform/CSS2/positioning/ref/left-017.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-017.json +++ b/tests/web_platform/CSS2/positioning/ref/left-017.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-018.json b/tests/web_platform/CSS2/positioning/ref/left-018.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-018.json +++ b/tests/web_platform/CSS2/positioning/ref/left-018.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-019.json b/tests/web_platform/CSS2/positioning/ref/left-019.json index 407ace862..d529bbc74 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-019.json +++ b/tests/web_platform/CSS2/positioning/ref/left-019.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-020.json b/tests/web_platform/CSS2/positioning/ref/left-020.json index 407ace862..d529bbc74 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-020.json +++ b/tests/web_platform/CSS2/positioning/ref/left-020.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-028.json b/tests/web_platform/CSS2/positioning/ref/left-028.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-028.json +++ b/tests/web_platform/CSS2/positioning/ref/left-028.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-029.json b/tests/web_platform/CSS2/positioning/ref/left-029.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-029.json +++ b/tests/web_platform/CSS2/positioning/ref/left-029.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-030.json b/tests/web_platform/CSS2/positioning/ref/left-030.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-030.json +++ b/tests/web_platform/CSS2/positioning/ref/left-030.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-031.json b/tests/web_platform/CSS2/positioning/ref/left-031.json index f0bf6a46d..8cff80ea2 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-031.json +++ b/tests/web_platform/CSS2/positioning/ref/left-031.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-032.json b/tests/web_platform/CSS2/positioning/ref/left-032.json index f0bf6a46d..8cff80ea2 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-032.json +++ b/tests/web_platform/CSS2/positioning/ref/left-032.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-040.json b/tests/web_platform/CSS2/positioning/ref/left-040.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-040.json +++ b/tests/web_platform/CSS2/positioning/ref/left-040.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-041.json b/tests/web_platform/CSS2/positioning/ref/left-041.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-041.json +++ b/tests/web_platform/CSS2/positioning/ref/left-041.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-042.json b/tests/web_platform/CSS2/positioning/ref/left-042.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-042.json +++ b/tests/web_platform/CSS2/positioning/ref/left-042.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-043.json b/tests/web_platform/CSS2/positioning/ref/left-043.json index 407ace862..d529bbc74 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-043.json +++ b/tests/web_platform/CSS2/positioning/ref/left-043.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-044.json b/tests/web_platform/CSS2/positioning/ref/left-044.json index 407ace862..d529bbc74 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-044.json +++ b/tests/web_platform/CSS2/positioning/ref/left-044.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-052.json b/tests/web_platform/CSS2/positioning/ref/left-052.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-052.json +++ b/tests/web_platform/CSS2/positioning/ref/left-052.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-053.json b/tests/web_platform/CSS2/positioning/ref/left-053.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-053.json +++ b/tests/web_platform/CSS2/positioning/ref/left-053.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-054.json b/tests/web_platform/CSS2/positioning/ref/left-054.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-054.json +++ b/tests/web_platform/CSS2/positioning/ref/left-054.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-055.json b/tests/web_platform/CSS2/positioning/ref/left-055.json index 407ace862..d529bbc74 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-055.json +++ b/tests/web_platform/CSS2/positioning/ref/left-055.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-056.json b/tests/web_platform/CSS2/positioning/ref/left-056.json index 407ace862..d529bbc74 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-056.json +++ b/tests/web_platform/CSS2/positioning/ref/left-056.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-064.json b/tests/web_platform/CSS2/positioning/ref/left-064.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-064.json +++ b/tests/web_platform/CSS2/positioning/ref/left-064.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-065.json b/tests/web_platform/CSS2/positioning/ref/left-065.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-065.json +++ b/tests/web_platform/CSS2/positioning/ref/left-065.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-066.json b/tests/web_platform/CSS2/positioning/ref/left-066.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-066.json +++ b/tests/web_platform/CSS2/positioning/ref/left-066.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-067.json b/tests/web_platform/CSS2/positioning/ref/left-067.json index 407ace862..d529bbc74 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-067.json +++ b/tests/web_platform/CSS2/positioning/ref/left-067.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-068.json b/tests/web_platform/CSS2/positioning/ref/left-068.json index 407ace862..d529bbc74 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-068.json +++ b/tests/web_platform/CSS2/positioning/ref/left-068.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-076.json b/tests/web_platform/CSS2/positioning/ref/left-076.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-076.json +++ b/tests/web_platform/CSS2/positioning/ref/left-076.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-077.json b/tests/web_platform/CSS2/positioning/ref/left-077.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-077.json +++ b/tests/web_platform/CSS2/positioning/ref/left-077.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-078.json b/tests/web_platform/CSS2/positioning/ref/left-078.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-078.json +++ b/tests/web_platform/CSS2/positioning/ref/left-078.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-079.json b/tests/web_platform/CSS2/positioning/ref/left-079.json index 73cbffc85..bdcd4b26d 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-079.json +++ b/tests/web_platform/CSS2/positioning/ref/left-079.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-080.json b/tests/web_platform/CSS2/positioning/ref/left-080.json index 73cbffc85..bdcd4b26d 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-080.json +++ b/tests/web_platform/CSS2/positioning/ref/left-080.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-088.json b/tests/web_platform/CSS2/positioning/ref/left-088.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-088.json +++ b/tests/web_platform/CSS2/positioning/ref/left-088.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-089.json b/tests/web_platform/CSS2/positioning/ref/left-089.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-089.json +++ b/tests/web_platform/CSS2/positioning/ref/left-089.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-090.json b/tests/web_platform/CSS2/positioning/ref/left-090.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-090.json +++ b/tests/web_platform/CSS2/positioning/ref/left-090.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-091.json b/tests/web_platform/CSS2/positioning/ref/left-091.json index 407ace862..d529bbc74 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-091.json +++ b/tests/web_platform/CSS2/positioning/ref/left-091.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-092.json b/tests/web_platform/CSS2/positioning/ref/left-092.json index 407ace862..d529bbc74 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-092.json +++ b/tests/web_platform/CSS2/positioning/ref/left-092.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-100.json b/tests/web_platform/CSS2/positioning/ref/left-100.json index a742007ef..d9cb263e7 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-100.json +++ b/tests/web_platform/CSS2/positioning/ref/left-100.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-101.json b/tests/web_platform/CSS2/positioning/ref/left-101.json index a742007ef..d9cb263e7 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-101.json +++ b/tests/web_platform/CSS2/positioning/ref/left-101.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-102.json b/tests/web_platform/CSS2/positioning/ref/left-102.json index a742007ef..d9cb263e7 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-102.json +++ b/tests/web_platform/CSS2/positioning/ref/left-102.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-103.json b/tests/web_platform/CSS2/positioning/ref/left-103.json index 1e4895c81..bbc22def5 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-103.json +++ b/tests/web_platform/CSS2/positioning/ref/left-103.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-104.json b/tests/web_platform/CSS2/positioning/ref/left-104.json index 1e4895c81..bbc22def5 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-104.json +++ b/tests/web_platform/CSS2/positioning/ref/left-104.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-109.json b/tests/web_platform/CSS2/positioning/ref/left-109.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-109.json +++ b/tests/web_platform/CSS2/positioning/ref/left-109.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-110.json b/tests/web_platform/CSS2/positioning/ref/left-110.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-110.json +++ b/tests/web_platform/CSS2/positioning/ref/left-110.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-111.json b/tests/web_platform/CSS2/positioning/ref/left-111.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-111.json +++ b/tests/web_platform/CSS2/positioning/ref/left-111.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-112.json b/tests/web_platform/CSS2/positioning/ref/left-112.json index cfe293e2b..a996d26f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-112.json +++ b/tests/web_platform/CSS2/positioning/ref/left-112.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-113.json b/tests/web_platform/CSS2/positioning/ref/left-113.json index 53bb988b8..fa440f438 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-113.json +++ b/tests/web_platform/CSS2/positioning/ref/left-113.json @@ -187,4 +187,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-001.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-001.json index 6166fe58c..8e8163b1e 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-001.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-001.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-002.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-002.json index 6166fe58c..8e8163b1e 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-002.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-002.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-003.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-003.json index 6166fe58c..8e8163b1e 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-003.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-003.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-004.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-004.json index 25a1e78fe..b6aad21ff 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-004.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-004.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-005.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-005.json index eced9e5b7..513d258be 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-005.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-005.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-006.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-006.json index eced9e5b7..513d258be 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-006.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-006.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-007.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-007.json index 5f4010a03..e069a21ac 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-007.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-007.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-008.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-008.json index 45a1a8daf..934296954 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-008.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-008.json @@ -93,4 +93,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-009.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-009.json index 2bcb12530..00e253bf1 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-009.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-009.json @@ -139,4 +139,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-010.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-010.json index d8f331367..7cb0ca0c5 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-010.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-010.json @@ -91,4 +91,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-012.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-012.json index 2c94a2673..ba1cde81c 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-012.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-012.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-013.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-013.json index 24f43f822..557f5735a 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-013.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-013.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-014.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-014.json index 24f43f822..557f5735a 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-014.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-014.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-applies-to-015.json b/tests/web_platform/CSS2/positioning/ref/left-applies-to-015.json index b8240c3f1..150f248bb 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-applies-to-015.json +++ b/tests/web_platform/CSS2/positioning/ref/left-applies-to-015.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-offset-001.json b/tests/web_platform/CSS2/positioning/ref/left-offset-001.json index 9efe8a23f..db2c9d308 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-offset-001.json +++ b/tests/web_platform/CSS2/positioning/ref/left-offset-001.json @@ -139,4 +139,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-offset-002.json b/tests/web_platform/CSS2/positioning/ref/left-offset-002.json index 9efe8a23f..db2c9d308 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-offset-002.json +++ b/tests/web_platform/CSS2/positioning/ref/left-offset-002.json @@ -139,4 +139,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-offset-003.json b/tests/web_platform/CSS2/positioning/ref/left-offset-003.json index c456037af..b178b5266 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-offset-003.json +++ b/tests/web_platform/CSS2/positioning/ref/left-offset-003.json @@ -185,4 +185,4 @@ 102 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-offset-percentage-001.json b/tests/web_platform/CSS2/positioning/ref/left-offset-percentage-001.json index 3e08fdf91..1f1ce65ea 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-offset-percentage-001.json +++ b/tests/web_platform/CSS2/positioning/ref/left-offset-percentage-001.json @@ -139,4 +139,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/left-offset-percentage-002.json b/tests/web_platform/CSS2/positioning/ref/left-offset-percentage-002.json index 93626effd..b5b8b7cc3 100644 --- a/tests/web_platform/CSS2/positioning/ref/left-offset-percentage-002.json +++ b/tests/web_platform/CSS2/positioning/ref/left-offset-percentage-002.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-001.json b/tests/web_platform/CSS2/positioning/ref/position-001.json index 273a7bd14..4cf279894 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-001.json +++ b/tests/web_platform/CSS2/positioning/ref/position-001.json @@ -141,4 +141,4 @@ 24 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-002.json b/tests/web_platform/CSS2/positioning/ref/position-002.json index 47ceaa561..aace859df 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-002.json +++ b/tests/web_platform/CSS2/positioning/ref/position-002.json @@ -141,4 +141,4 @@ 24 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-003.json b/tests/web_platform/CSS2/positioning/ref/position-003.json index 97231392c..0a8d0ce47 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-003.json +++ b/tests/web_platform/CSS2/positioning/ref/position-003.json @@ -141,4 +141,4 @@ 6 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-004.json b/tests/web_platform/CSS2/positioning/ref/position-004.json index e2a150e70..7946f342f 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-004.json +++ b/tests/web_platform/CSS2/positioning/ref/position-004.json @@ -189,4 +189,4 @@ 3000 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-005.json b/tests/web_platform/CSS2/positioning/ref/position-005.json index da0d951c0..b7073ca0a 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-005.json +++ b/tests/web_platform/CSS2/positioning/ref/position-005.json @@ -141,4 +141,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-006.json b/tests/web_platform/CSS2/positioning/ref/position-006.json index a69dffdec..80fd7bfc6 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-006.json +++ b/tests/web_platform/CSS2/positioning/ref/position-006.json @@ -93,4 +93,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-absolute-001.json b/tests/web_platform/CSS2/positioning/ref/position-absolute-001.json index 0ee2e3a81..1b8172e91 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-absolute-001.json +++ b/tests/web_platform/CSS2/positioning/ref/position-absolute-001.json @@ -185,4 +185,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-absolute-002.json b/tests/web_platform/CSS2/positioning/ref/position-absolute-002.json index fd5d13f8e..4dee6becd 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-absolute-002.json +++ b/tests/web_platform/CSS2/positioning/ref/position-absolute-002.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-absolute-003.json b/tests/web_platform/CSS2/positioning/ref/position-absolute-003.json index 638904dfa..ed4e747d5 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-absolute-003.json +++ b/tests/web_platform/CSS2/positioning/ref/position-absolute-003.json @@ -185,4 +185,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-absolute-004.json b/tests/web_platform/CSS2/positioning/ref/position-absolute-004.json index 4bc9a1b70..85bc70eb3 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-absolute-004.json +++ b/tests/web_platform/CSS2/positioning/ref/position-absolute-004.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-absolute-005.json b/tests/web_platform/CSS2/positioning/ref/position-absolute-005.json index eb5988ad8..373eff37b 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-absolute-005.json +++ b/tests/web_platform/CSS2/positioning/ref/position-absolute-005.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-absolute-006.json b/tests/web_platform/CSS2/positioning/ref/position-absolute-006.json index 84f90e97b..e29ccc679 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-absolute-006.json +++ b/tests/web_platform/CSS2/positioning/ref/position-absolute-006.json @@ -187,4 +187,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-absolute-007.json b/tests/web_platform/CSS2/positioning/ref/position-absolute-007.json index f26742597..d7b53b582 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-absolute-007.json +++ b/tests/web_platform/CSS2/positioning/ref/position-absolute-007.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-absolute-008.json b/tests/web_platform/CSS2/positioning/ref/position-absolute-008.json index 0ee2e3a81..1b8172e91 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-absolute-008.json +++ b/tests/web_platform/CSS2/positioning/ref/position-absolute-008.json @@ -185,4 +185,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-001.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-001.json index 05337a602..7faccb3e0 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-001.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-001.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-002.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-002.json index 05337a602..7faccb3e0 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-002.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-002.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-003.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-003.json index 05337a602..7faccb3e0 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-003.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-003.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-004.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-004.json index 6d6efc934..137fd96d2 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-004.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-004.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-005.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-005.json index 340073779..a5b4bf728 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-005.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-005.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-006.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-006.json index 340073779..a5b4bf728 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-006.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-006.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-007.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-007.json index d0bd863ff..377573b96 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-007.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-007.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-008.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-008.json index 4b3f19c54..64c478e2c 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-008.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-008.json @@ -93,4 +93,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-009.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-009.json index 4c4f3082e..084be0d42 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-009.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-009.json @@ -139,4 +139,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-010.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-010.json index 89ce312b1..fa6a128f1 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-010.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-010.json @@ -91,4 +91,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-012.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-012.json index 88697969b..b37b993ef 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-012.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-012.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-013.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-013.json index c5a4995f0..f821c426e 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-013.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-013.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-014.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-014.json index c5a4995f0..f821c426e 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-014.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-014.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-applies-to-015.json b/tests/web_platform/CSS2/positioning/ref/position-applies-to-015.json index d4b7f220d..8e506dc58 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-applies-to-015.json +++ b/tests/web_platform/CSS2/positioning/ref/position-applies-to-015.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-fixed-001.json b/tests/web_platform/CSS2/positioning/ref/position-fixed-001.json index 0ee2e3a81..1b8172e91 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-fixed-001.json +++ b/tests/web_platform/CSS2/positioning/ref/position-fixed-001.json @@ -185,4 +185,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-fixed-002.json b/tests/web_platform/CSS2/positioning/ref/position-fixed-002.json index 265ad18b9..9f2b5254c 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-fixed-002.json +++ b/tests/web_platform/CSS2/positioning/ref/position-fixed-002.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-fixed-003.json b/tests/web_platform/CSS2/positioning/ref/position-fixed-003.json index a46f09af9..1027e1565 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-fixed-003.json +++ b/tests/web_platform/CSS2/positioning/ref/position-fixed-003.json @@ -139,4 +139,4 @@ 6000 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-fixed-004.json b/tests/web_platform/CSS2/positioning/ref/position-fixed-004.json index f2b1d5682..dce6fd0de 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-fixed-004.json +++ b/tests/web_platform/CSS2/positioning/ref/position-fixed-004.json @@ -235,4 +235,4 @@ 768 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-fixed-005.json b/tests/web_platform/CSS2/positioning/ref/position-fixed-005.json index e21f0fcee..0b0f272ed 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-fixed-005.json +++ b/tests/web_platform/CSS2/positioning/ref/position-fixed-005.json @@ -283,4 +283,4 @@ 768 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-fixed-006.json b/tests/web_platform/CSS2/positioning/ref/position-fixed-006.json index f6de40253..040347a72 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-fixed-006.json +++ b/tests/web_platform/CSS2/positioning/ref/position-fixed-006.json @@ -52,4 +52,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-fixed-007.json b/tests/web_platform/CSS2/positioning/ref/position-fixed-007.json index 3409fdd30..d70961b86 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-fixed-007.json +++ b/tests/web_platform/CSS2/positioning/ref/position-fixed-007.json @@ -91,4 +91,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-001.json b/tests/web_platform/CSS2/positioning/ref/position-relative-001.json index 04ea4b4c1..443676a83 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-001.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-001.json @@ -285,4 +285,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-002.json b/tests/web_platform/CSS2/positioning/ref/position-relative-002.json index 330479fbf..6b18a1567 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-002.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-002.json @@ -235,4 +235,4 @@ 22 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-003.json b/tests/web_platform/CSS2/positioning/ref/position-relative-003.json index e37baa3f0..cac8b1592 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-003.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-003.json @@ -141,4 +141,4 @@ 24 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-004.json b/tests/web_platform/CSS2/positioning/ref/position-relative-004.json index 72393b9e2..1d54859bd 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-004.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-004.json @@ -183,4 +183,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-005.json b/tests/web_platform/CSS2/positioning/ref/position-relative-005.json index 3cb799ea4..827ad5ea0 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-005.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-005.json @@ -137,4 +137,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-006.json b/tests/web_platform/CSS2/positioning/ref/position-relative-006.json index 5e287dc47..4a0bc429a 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-006.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-006.json @@ -185,4 +185,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-007.json b/tests/web_platform/CSS2/positioning/ref/position-relative-007.json index 11a8c35cf..3e1e25093 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-007.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-007.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-008.json b/tests/web_platform/CSS2/positioning/ref/position-relative-008.json index eb72ead91..a3423ea53 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-008.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-008.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-009.json b/tests/web_platform/CSS2/positioning/ref/position-relative-009.json index f8f77ef83..77f9ebf80 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-009.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-009.json @@ -137,4 +137,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-010.json b/tests/web_platform/CSS2/positioning/ref/position-relative-010.json index 093b2841d..f077ec67f 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-010.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-010.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-013.json b/tests/web_platform/CSS2/positioning/ref/position-relative-013.json index 6e0f9e976..ba1b379dc 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-013.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-013.json @@ -183,4 +183,4 @@ 300 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-014.json b/tests/web_platform/CSS2/positioning/ref/position-relative-014.json index 1a6fbadfc..b7118e205 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-014.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-014.json @@ -137,4 +137,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-015.json b/tests/web_platform/CSS2/positioning/ref/position-relative-015.json index 8cb1fc004..9fb7757be 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-015.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-015.json @@ -137,4 +137,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-016.json b/tests/web_platform/CSS2/positioning/ref/position-relative-016.json index afc62c1bd..f57a83660 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-016.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-016.json @@ -231,4 +231,4 @@ 98 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-017.json b/tests/web_platform/CSS2/positioning/ref/position-relative-017.json index 378507cb4..5b39f82d0 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-017.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-017.json @@ -139,4 +139,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-018.json b/tests/web_platform/CSS2/positioning/ref/position-relative-018.json index 785aed0a6..361ee1fc1 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-018.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-018.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-019.json b/tests/web_platform/CSS2/positioning/ref/position-relative-019.json index 1a6fbadfc..b7118e205 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-019.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-019.json @@ -137,4 +137,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-020.json b/tests/web_platform/CSS2/positioning/ref/position-relative-020.json index 0e20b099e..2a308b5a1 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-020.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-020.json @@ -139,4 +139,4 @@ 144 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-021.json b/tests/web_platform/CSS2/positioning/ref/position-relative-021.json index 0e20b099e..2a308b5a1 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-021.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-021.json @@ -139,4 +139,4 @@ 144 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-022.json b/tests/web_platform/CSS2/positioning/ref/position-relative-022.json index 73a8f49fd..b18966cf5 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-022.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-022.json @@ -139,4 +139,4 @@ 144 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-027.json b/tests/web_platform/CSS2/positioning/ref/position-relative-027.json index 558a32738..685e6a9aa 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-027.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-027.json @@ -155,4 +155,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-028.json b/tests/web_platform/CSS2/positioning/ref/position-relative-028.json index bb04fab1f..9440126ea 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-028.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-028.json @@ -148,4 +148,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-029.json b/tests/web_platform/CSS2/positioning/ref/position-relative-029.json index 0aa77f299..e083da618 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-029.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-029.json @@ -189,4 +189,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-030.json b/tests/web_platform/CSS2/positioning/ref/position-relative-030.json index 05ca7cb6f..1a7570166 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-030.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-030.json @@ -203,4 +203,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-031.json b/tests/web_platform/CSS2/positioning/ref/position-relative-031.json index 13b171c95..6a3c5c21a 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-031.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-031.json @@ -251,4 +251,4 @@ 18 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-032.json b/tests/web_platform/CSS2/positioning/ref/position-relative-032.json index c7f31db4b..432397171 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-032.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-032.json @@ -203,4 +203,4 @@ 20 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-033.json b/tests/web_platform/CSS2/positioning/ref/position-relative-033.json index 0133a722e..9aa3a5646 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-033.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-033.json @@ -196,4 +196,4 @@ 20 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-034.json b/tests/web_platform/CSS2/positioning/ref/position-relative-034.json index fee8b630e..e8e99959a 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-034.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-034.json @@ -141,4 +141,4 @@ 24 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-035.json b/tests/web_platform/CSS2/positioning/ref/position-relative-035.json index 199826c2f..e5a4032b2 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-035.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-035.json @@ -189,4 +189,4 @@ 80 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-036.json b/tests/web_platform/CSS2/positioning/ref/position-relative-036.json index fee8b630e..e8e99959a 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-036.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-036.json @@ -141,4 +141,4 @@ 24 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-037.json b/tests/web_platform/CSS2/positioning/ref/position-relative-037.json index 58086687e..1ce57b99a 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-037.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-037.json @@ -139,4 +139,4 @@ 102 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-038.json b/tests/web_platform/CSS2/positioning/ref/position-relative-038.json index 8cc9716c3..2aa75a068 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-038.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-038.json @@ -139,4 +139,4 @@ 102 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-relative-nested-001.json b/tests/web_platform/CSS2/positioning/ref/position-relative-nested-001.json index 9a788c475..ac13d71fe 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-relative-nested-001.json +++ b/tests/web_platform/CSS2/positioning/ref/position-relative-nested-001.json @@ -187,4 +187,4 @@ 300 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/position-static-001.json b/tests/web_platform/CSS2/positioning/ref/position-static-001.json index aed1f6d38..de22ac8fe 100644 --- a/tests/web_platform/CSS2/positioning/ref/position-static-001.json +++ b/tests/web_platform/CSS2/positioning/ref/position-static-001.json @@ -141,4 +141,4 @@ 192 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/positioning-float-001.json b/tests/web_platform/CSS2/positioning/ref/positioning-float-001.json index c4819f7d6..2f67e52db 100644 --- a/tests/web_platform/CSS2/positioning/ref/positioning-float-001.json +++ b/tests/web_platform/CSS2/positioning/ref/positioning-float-001.json @@ -155,4 +155,4 @@ 55 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/positioning-float-002.json b/tests/web_platform/CSS2/positioning/ref/positioning-float-002.json index 309801e17..ffe0daa4f 100644 --- a/tests/web_platform/CSS2/positioning/ref/positioning-float-002.json +++ b/tests/web_platform/CSS2/positioning/ref/positioning-float-002.json @@ -155,4 +155,4 @@ 20 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-001.json b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-001.json index fd73a4f3b..d772788bf 100644 --- a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-001.json +++ b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-001.json @@ -233,4 +233,4 @@ 180 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-002.json b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-002.json index fd73a4f3b..d772788bf 100644 --- a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-002.json +++ b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-002.json @@ -233,4 +233,4 @@ 180 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-003.json b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-003.json index 90094fbf2..47b4bb1f8 100644 --- a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-003.json +++ b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-003.json @@ -233,4 +233,4 @@ 120 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-004.json b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-004.json index 90094fbf2..47b4bb1f8 100644 --- a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-004.json +++ b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-004.json @@ -233,4 +233,4 @@ 120 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-005.json b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-005.json index 863f0514d..34612389f 100644 --- a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-005.json +++ b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-005.json @@ -233,4 +233,4 @@ 120 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-006.json b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-006.json index 863f0514d..34612389f 100644 --- a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-006.json +++ b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-006.json @@ -233,4 +233,4 @@ 120 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-007.json b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-007.json index 14a62c77b..e16fdb750 100644 --- a/tests/web_platform/CSS2/positioning/ref/relpos-calcs-007.json +++ b/tests/web_platform/CSS2/positioning/ref/relpos-calcs-007.json @@ -233,4 +233,4 @@ 120 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-004.json b/tests/web_platform/CSS2/positioning/ref/right-004.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-004.json +++ b/tests/web_platform/CSS2/positioning/ref/right-004.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-005.json b/tests/web_platform/CSS2/positioning/ref/right-005.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-005.json +++ b/tests/web_platform/CSS2/positioning/ref/right-005.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-006.json b/tests/web_platform/CSS2/positioning/ref/right-006.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-006.json +++ b/tests/web_platform/CSS2/positioning/ref/right-006.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-007.json b/tests/web_platform/CSS2/positioning/ref/right-007.json index e7e04555a..cf63cb447 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-007.json +++ b/tests/web_platform/CSS2/positioning/ref/right-007.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-008.json b/tests/web_platform/CSS2/positioning/ref/right-008.json index e7e04555a..cf63cb447 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-008.json +++ b/tests/web_platform/CSS2/positioning/ref/right-008.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-016.json b/tests/web_platform/CSS2/positioning/ref/right-016.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-016.json +++ b/tests/web_platform/CSS2/positioning/ref/right-016.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-017.json b/tests/web_platform/CSS2/positioning/ref/right-017.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-017.json +++ b/tests/web_platform/CSS2/positioning/ref/right-017.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-018.json b/tests/web_platform/CSS2/positioning/ref/right-018.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-018.json +++ b/tests/web_platform/CSS2/positioning/ref/right-018.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-019.json b/tests/web_platform/CSS2/positioning/ref/right-019.json index 14048215a..c299892e1 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-019.json +++ b/tests/web_platform/CSS2/positioning/ref/right-019.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-020.json b/tests/web_platform/CSS2/positioning/ref/right-020.json index 14048215a..c299892e1 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-020.json +++ b/tests/web_platform/CSS2/positioning/ref/right-020.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-028.json b/tests/web_platform/CSS2/positioning/ref/right-028.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-028.json +++ b/tests/web_platform/CSS2/positioning/ref/right-028.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-029.json b/tests/web_platform/CSS2/positioning/ref/right-029.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-029.json +++ b/tests/web_platform/CSS2/positioning/ref/right-029.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-030.json b/tests/web_platform/CSS2/positioning/ref/right-030.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-030.json +++ b/tests/web_platform/CSS2/positioning/ref/right-030.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-031.json b/tests/web_platform/CSS2/positioning/ref/right-031.json index 0c7d8d09e..7340d77b4 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-031.json +++ b/tests/web_platform/CSS2/positioning/ref/right-031.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-032.json b/tests/web_platform/CSS2/positioning/ref/right-032.json index 0c7d8d09e..7340d77b4 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-032.json +++ b/tests/web_platform/CSS2/positioning/ref/right-032.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-040.json b/tests/web_platform/CSS2/positioning/ref/right-040.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-040.json +++ b/tests/web_platform/CSS2/positioning/ref/right-040.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-041.json b/tests/web_platform/CSS2/positioning/ref/right-041.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-041.json +++ b/tests/web_platform/CSS2/positioning/ref/right-041.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-042.json b/tests/web_platform/CSS2/positioning/ref/right-042.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-042.json +++ b/tests/web_platform/CSS2/positioning/ref/right-042.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-043.json b/tests/web_platform/CSS2/positioning/ref/right-043.json index 14048215a..c299892e1 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-043.json +++ b/tests/web_platform/CSS2/positioning/ref/right-043.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-044.json b/tests/web_platform/CSS2/positioning/ref/right-044.json index 14048215a..c299892e1 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-044.json +++ b/tests/web_platform/CSS2/positioning/ref/right-044.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-052.json b/tests/web_platform/CSS2/positioning/ref/right-052.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-052.json +++ b/tests/web_platform/CSS2/positioning/ref/right-052.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-053.json b/tests/web_platform/CSS2/positioning/ref/right-053.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-053.json +++ b/tests/web_platform/CSS2/positioning/ref/right-053.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-054.json b/tests/web_platform/CSS2/positioning/ref/right-054.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-054.json +++ b/tests/web_platform/CSS2/positioning/ref/right-054.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-055.json b/tests/web_platform/CSS2/positioning/ref/right-055.json index 14048215a..c299892e1 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-055.json +++ b/tests/web_platform/CSS2/positioning/ref/right-055.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-056.json b/tests/web_platform/CSS2/positioning/ref/right-056.json index 14048215a..c299892e1 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-056.json +++ b/tests/web_platform/CSS2/positioning/ref/right-056.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-064.json b/tests/web_platform/CSS2/positioning/ref/right-064.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-064.json +++ b/tests/web_platform/CSS2/positioning/ref/right-064.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-065.json b/tests/web_platform/CSS2/positioning/ref/right-065.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-065.json +++ b/tests/web_platform/CSS2/positioning/ref/right-065.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-066.json b/tests/web_platform/CSS2/positioning/ref/right-066.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-066.json +++ b/tests/web_platform/CSS2/positioning/ref/right-066.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-067.json b/tests/web_platform/CSS2/positioning/ref/right-067.json index 14048215a..c299892e1 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-067.json +++ b/tests/web_platform/CSS2/positioning/ref/right-067.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-068.json b/tests/web_platform/CSS2/positioning/ref/right-068.json index 14048215a..c299892e1 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-068.json +++ b/tests/web_platform/CSS2/positioning/ref/right-068.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-076.json b/tests/web_platform/CSS2/positioning/ref/right-076.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-076.json +++ b/tests/web_platform/CSS2/positioning/ref/right-076.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-077.json b/tests/web_platform/CSS2/positioning/ref/right-077.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-077.json +++ b/tests/web_platform/CSS2/positioning/ref/right-077.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-078.json b/tests/web_platform/CSS2/positioning/ref/right-078.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-078.json +++ b/tests/web_platform/CSS2/positioning/ref/right-078.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-079.json b/tests/web_platform/CSS2/positioning/ref/right-079.json index 122a16958..9066d4047 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-079.json +++ b/tests/web_platform/CSS2/positioning/ref/right-079.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-080.json b/tests/web_platform/CSS2/positioning/ref/right-080.json index 122a16958..9066d4047 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-080.json +++ b/tests/web_platform/CSS2/positioning/ref/right-080.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-088.json b/tests/web_platform/CSS2/positioning/ref/right-088.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-088.json +++ b/tests/web_platform/CSS2/positioning/ref/right-088.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-089.json b/tests/web_platform/CSS2/positioning/ref/right-089.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-089.json +++ b/tests/web_platform/CSS2/positioning/ref/right-089.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-090.json b/tests/web_platform/CSS2/positioning/ref/right-090.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-090.json +++ b/tests/web_platform/CSS2/positioning/ref/right-090.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-091.json b/tests/web_platform/CSS2/positioning/ref/right-091.json index 14048215a..c299892e1 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-091.json +++ b/tests/web_platform/CSS2/positioning/ref/right-091.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-092.json b/tests/web_platform/CSS2/positioning/ref/right-092.json index 14048215a..c299892e1 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-092.json +++ b/tests/web_platform/CSS2/positioning/ref/right-092.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-100.json b/tests/web_platform/CSS2/positioning/ref/right-100.json index 49a83e8b4..98f304eda 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-100.json +++ b/tests/web_platform/CSS2/positioning/ref/right-100.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-101.json b/tests/web_platform/CSS2/positioning/ref/right-101.json index 49a83e8b4..98f304eda 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-101.json +++ b/tests/web_platform/CSS2/positioning/ref/right-101.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-102.json b/tests/web_platform/CSS2/positioning/ref/right-102.json index 49a83e8b4..98f304eda 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-102.json +++ b/tests/web_platform/CSS2/positioning/ref/right-102.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-103.json b/tests/web_platform/CSS2/positioning/ref/right-103.json index 522563293..460bca363 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-103.json +++ b/tests/web_platform/CSS2/positioning/ref/right-103.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-104.json b/tests/web_platform/CSS2/positioning/ref/right-104.json index 522563293..460bca363 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-104.json +++ b/tests/web_platform/CSS2/positioning/ref/right-104.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-109.json b/tests/web_platform/CSS2/positioning/ref/right-109.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-109.json +++ b/tests/web_platform/CSS2/positioning/ref/right-109.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-110.json b/tests/web_platform/CSS2/positioning/ref/right-110.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-110.json +++ b/tests/web_platform/CSS2/positioning/ref/right-110.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-111.json b/tests/web_platform/CSS2/positioning/ref/right-111.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-111.json +++ b/tests/web_platform/CSS2/positioning/ref/right-111.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-112.json b/tests/web_platform/CSS2/positioning/ref/right-112.json index 0562ce036..6709d1949 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-112.json +++ b/tests/web_platform/CSS2/positioning/ref/right-112.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-113.json b/tests/web_platform/CSS2/positioning/ref/right-113.json index 4b0311fe2..0955790e1 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-113.json +++ b/tests/web_platform/CSS2/positioning/ref/right-113.json @@ -187,4 +187,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-001.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-001.json index f69c46a93..c22d181ba 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-001.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-001.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-002.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-002.json index f69c46a93..c22d181ba 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-002.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-002.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-003.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-003.json index f69c46a93..c22d181ba 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-003.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-003.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-004.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-004.json index 979d957ac..87440c760 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-004.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-004.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-005.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-005.json index 0c6fc1694..09a5aa4b4 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-005.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-005.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-006.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-006.json index 0c6fc1694..09a5aa4b4 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-006.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-006.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-007.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-007.json index d8a4f25fc..a8bec4b70 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-007.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-007.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-008.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-008.json index a2571061c..4e68ba44c 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-008.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-008.json @@ -93,4 +93,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-009.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-009.json index 98ad0ca45..a235e4e50 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-009.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-009.json @@ -139,4 +139,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-010.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-010.json index 9028fb496..59064c811 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-010.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-010.json @@ -91,4 +91,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-012.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-012.json index 5a11f1a2a..f44c36b34 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-012.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-012.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-013.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-013.json index e2843f0da..6c4dc9925 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-013.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-013.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-014.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-014.json index e2843f0da..6c4dc9925 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-014.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-014.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-applies-to-015.json b/tests/web_platform/CSS2/positioning/ref/right-applies-to-015.json index 1f8fa0793..fc3d02399 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-applies-to-015.json +++ b/tests/web_platform/CSS2/positioning/ref/right-applies-to-015.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-offset-001.json b/tests/web_platform/CSS2/positioning/ref/right-offset-001.json index a339d44ad..650ae3560 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-offset-001.json +++ b/tests/web_platform/CSS2/positioning/ref/right-offset-001.json @@ -185,4 +185,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-offset-002.json b/tests/web_platform/CSS2/positioning/ref/right-offset-002.json index 9efe8a23f..db2c9d308 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-offset-002.json +++ b/tests/web_platform/CSS2/positioning/ref/right-offset-002.json @@ -139,4 +139,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-offset-003.json b/tests/web_platform/CSS2/positioning/ref/right-offset-003.json index e02c81fdc..d56dd60ca 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-offset-003.json +++ b/tests/web_platform/CSS2/positioning/ref/right-offset-003.json @@ -185,4 +185,4 @@ 100 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-offset-004.json b/tests/web_platform/CSS2/positioning/ref/right-offset-004.json index 419218adf..8b3994ccc 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-offset-004.json +++ b/tests/web_platform/CSS2/positioning/ref/right-offset-004.json @@ -185,4 +185,4 @@ 104 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/right-offset-percentage-001.json b/tests/web_platform/CSS2/positioning/ref/right-offset-percentage-001.json index 14a492b39..c00cadbfb 100644 --- a/tests/web_platform/CSS2/positioning/ref/right-offset-percentage-001.json +++ b/tests/web_platform/CSS2/positioning/ref/right-offset-percentage-001.json @@ -139,4 +139,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-004.json b/tests/web_platform/CSS2/positioning/ref/top-004.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-004.json +++ b/tests/web_platform/CSS2/positioning/ref/top-004.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-005.json b/tests/web_platform/CSS2/positioning/ref/top-005.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-005.json +++ b/tests/web_platform/CSS2/positioning/ref/top-005.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-006.json b/tests/web_platform/CSS2/positioning/ref/top-006.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-006.json +++ b/tests/web_platform/CSS2/positioning/ref/top-006.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-007.json b/tests/web_platform/CSS2/positioning/ref/top-007.json index 4b8c4ae64..9dc788f1f 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-007.json +++ b/tests/web_platform/CSS2/positioning/ref/top-007.json @@ -139,4 +139,4 @@ 3 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-008.json b/tests/web_platform/CSS2/positioning/ref/top-008.json index 4b8c4ae64..9dc788f1f 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-008.json +++ b/tests/web_platform/CSS2/positioning/ref/top-008.json @@ -139,4 +139,4 @@ 3 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-016.json b/tests/web_platform/CSS2/positioning/ref/top-016.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-016.json +++ b/tests/web_platform/CSS2/positioning/ref/top-016.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-017.json b/tests/web_platform/CSS2/positioning/ref/top-017.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-017.json +++ b/tests/web_platform/CSS2/positioning/ref/top-017.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-018.json b/tests/web_platform/CSS2/positioning/ref/top-018.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-018.json +++ b/tests/web_platform/CSS2/positioning/ref/top-018.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-019.json b/tests/web_platform/CSS2/positioning/ref/top-019.json index fdfc14f6d..8bf757468 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-019.json +++ b/tests/web_platform/CSS2/positioning/ref/top-019.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-020.json b/tests/web_platform/CSS2/positioning/ref/top-020.json index fdfc14f6d..8bf757468 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-020.json +++ b/tests/web_platform/CSS2/positioning/ref/top-020.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-028.json b/tests/web_platform/CSS2/positioning/ref/top-028.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-028.json +++ b/tests/web_platform/CSS2/positioning/ref/top-028.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-029.json b/tests/web_platform/CSS2/positioning/ref/top-029.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-029.json +++ b/tests/web_platform/CSS2/positioning/ref/top-029.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-030.json b/tests/web_platform/CSS2/positioning/ref/top-030.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-030.json +++ b/tests/web_platform/CSS2/positioning/ref/top-030.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-031.json b/tests/web_platform/CSS2/positioning/ref/top-031.json index 9076846a8..a3492a3b3 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-031.json +++ b/tests/web_platform/CSS2/positioning/ref/top-031.json @@ -185,4 +185,4 @@ 3 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-032.json b/tests/web_platform/CSS2/positioning/ref/top-032.json index 9076846a8..a3492a3b3 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-032.json +++ b/tests/web_platform/CSS2/positioning/ref/top-032.json @@ -185,4 +185,4 @@ 3 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-040.json b/tests/web_platform/CSS2/positioning/ref/top-040.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-040.json +++ b/tests/web_platform/CSS2/positioning/ref/top-040.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-041.json b/tests/web_platform/CSS2/positioning/ref/top-041.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-041.json +++ b/tests/web_platform/CSS2/positioning/ref/top-041.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-042.json b/tests/web_platform/CSS2/positioning/ref/top-042.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-042.json +++ b/tests/web_platform/CSS2/positioning/ref/top-042.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-043.json b/tests/web_platform/CSS2/positioning/ref/top-043.json index fdfc14f6d..8bf757468 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-043.json +++ b/tests/web_platform/CSS2/positioning/ref/top-043.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-044.json b/tests/web_platform/CSS2/positioning/ref/top-044.json index fdfc14f6d..8bf757468 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-044.json +++ b/tests/web_platform/CSS2/positioning/ref/top-044.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-052.json b/tests/web_platform/CSS2/positioning/ref/top-052.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-052.json +++ b/tests/web_platform/CSS2/positioning/ref/top-052.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-053.json b/tests/web_platform/CSS2/positioning/ref/top-053.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-053.json +++ b/tests/web_platform/CSS2/positioning/ref/top-053.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-054.json b/tests/web_platform/CSS2/positioning/ref/top-054.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-054.json +++ b/tests/web_platform/CSS2/positioning/ref/top-054.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-055.json b/tests/web_platform/CSS2/positioning/ref/top-055.json index fdfc14f6d..8bf757468 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-055.json +++ b/tests/web_platform/CSS2/positioning/ref/top-055.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-056.json b/tests/web_platform/CSS2/positioning/ref/top-056.json index fdfc14f6d..8bf757468 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-056.json +++ b/tests/web_platform/CSS2/positioning/ref/top-056.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-064.json b/tests/web_platform/CSS2/positioning/ref/top-064.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-064.json +++ b/tests/web_platform/CSS2/positioning/ref/top-064.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-065.json b/tests/web_platform/CSS2/positioning/ref/top-065.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-065.json +++ b/tests/web_platform/CSS2/positioning/ref/top-065.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-066.json b/tests/web_platform/CSS2/positioning/ref/top-066.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-066.json +++ b/tests/web_platform/CSS2/positioning/ref/top-066.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-067.json b/tests/web_platform/CSS2/positioning/ref/top-067.json index fdfc14f6d..8bf757468 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-067.json +++ b/tests/web_platform/CSS2/positioning/ref/top-067.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-068.json b/tests/web_platform/CSS2/positioning/ref/top-068.json index fdfc14f6d..8bf757468 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-068.json +++ b/tests/web_platform/CSS2/positioning/ref/top-068.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-076.json b/tests/web_platform/CSS2/positioning/ref/top-076.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-076.json +++ b/tests/web_platform/CSS2/positioning/ref/top-076.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-077.json b/tests/web_platform/CSS2/positioning/ref/top-077.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-077.json +++ b/tests/web_platform/CSS2/positioning/ref/top-077.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-078.json b/tests/web_platform/CSS2/positioning/ref/top-078.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-078.json +++ b/tests/web_platform/CSS2/positioning/ref/top-078.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-079.json b/tests/web_platform/CSS2/positioning/ref/top-079.json index 0cc9348c4..cfff4aca6 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-079.json +++ b/tests/web_platform/CSS2/positioning/ref/top-079.json @@ -185,4 +185,4 @@ 120 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-080.json b/tests/web_platform/CSS2/positioning/ref/top-080.json index 0cc9348c4..cfff4aca6 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-080.json +++ b/tests/web_platform/CSS2/positioning/ref/top-080.json @@ -185,4 +185,4 @@ 120 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-088.json b/tests/web_platform/CSS2/positioning/ref/top-088.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-088.json +++ b/tests/web_platform/CSS2/positioning/ref/top-088.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-089.json b/tests/web_platform/CSS2/positioning/ref/top-089.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-089.json +++ b/tests/web_platform/CSS2/positioning/ref/top-089.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-090.json b/tests/web_platform/CSS2/positioning/ref/top-090.json index 1dcabe3c8..534d169cb 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-090.json +++ b/tests/web_platform/CSS2/positioning/ref/top-090.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-091.json b/tests/web_platform/CSS2/positioning/ref/top-091.json index fdfc14f6d..8bf757468 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-091.json +++ b/tests/web_platform/CSS2/positioning/ref/top-091.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-092.json b/tests/web_platform/CSS2/positioning/ref/top-092.json index fdfc14f6d..8bf757468 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-092.json +++ b/tests/web_platform/CSS2/positioning/ref/top-092.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-100.json b/tests/web_platform/CSS2/positioning/ref/top-100.json index 741232b0f..ab8cc7b8c 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-100.json +++ b/tests/web_platform/CSS2/positioning/ref/top-100.json @@ -139,4 +139,4 @@ 101 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-101.json b/tests/web_platform/CSS2/positioning/ref/top-101.json index 741232b0f..ab8cc7b8c 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-101.json +++ b/tests/web_platform/CSS2/positioning/ref/top-101.json @@ -139,4 +139,4 @@ 101 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-102.json b/tests/web_platform/CSS2/positioning/ref/top-102.json index 741232b0f..ab8cc7b8c 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-102.json +++ b/tests/web_platform/CSS2/positioning/ref/top-102.json @@ -139,4 +139,4 @@ 101 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-103.json b/tests/web_platform/CSS2/positioning/ref/top-103.json index fdfc14f6d..8bf757468 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-103.json +++ b/tests/web_platform/CSS2/positioning/ref/top-103.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-104.json b/tests/web_platform/CSS2/positioning/ref/top-104.json index fdfc14f6d..8bf757468 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-104.json +++ b/tests/web_platform/CSS2/positioning/ref/top-104.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-109.json b/tests/web_platform/CSS2/positioning/ref/top-109.json index 5f46a7b42..fb155e71b 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-109.json +++ b/tests/web_platform/CSS2/positioning/ref/top-109.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-110.json b/tests/web_platform/CSS2/positioning/ref/top-110.json index 5f46a7b42..fb155e71b 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-110.json +++ b/tests/web_platform/CSS2/positioning/ref/top-110.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-111.json b/tests/web_platform/CSS2/positioning/ref/top-111.json index 5f46a7b42..fb155e71b 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-111.json +++ b/tests/web_platform/CSS2/positioning/ref/top-111.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-112.json b/tests/web_platform/CSS2/positioning/ref/top-112.json index 5f46a7b42..fb155e71b 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-112.json +++ b/tests/web_platform/CSS2/positioning/ref/top-112.json @@ -139,4 +139,4 @@ 10 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-113.json b/tests/web_platform/CSS2/positioning/ref/top-113.json index 4f0dd623b..cc49ee8b0 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-113.json +++ b/tests/web_platform/CSS2/positioning/ref/top-113.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-001.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-001.json index ba0f80ae1..4db972abf 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-001.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-001.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-002.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-002.json index ba0f80ae1..4db972abf 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-002.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-002.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-003.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-003.json index ba0f80ae1..4db972abf 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-003.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-003.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-004.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-004.json index 35ed21bf5..9843b1c39 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-004.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-004.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-005.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-005.json index 5b7ccb896..796c28e37 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-005.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-005.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-006.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-006.json index 5b7ccb896..796c28e37 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-006.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-006.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-007.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-007.json index ae6923255..3ff075074 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-007.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-007.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-008.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-008.json index 6af96c1ac..3c70a06d2 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-008.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-008.json @@ -93,4 +93,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-009.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-009.json index 18ca53fa3..88a2e783e 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-009.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-009.json @@ -139,4 +139,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-010.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-010.json index 6280e54e1..0b891f3ed 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-010.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-010.json @@ -91,4 +91,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-012.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-012.json index aaac56ee3..ccaf15499 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-012.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-012.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-013.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-013.json index eff8e18af..e3ec46302 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-013.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-013.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-014.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-014.json index eff8e18af..e3ec46302 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-014.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-014.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-applies-to-015.json b/tests/web_platform/CSS2/positioning/ref/top-applies-to-015.json index a241839fc..8b70ec705 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-applies-to-015.json +++ b/tests/web_platform/CSS2/positioning/ref/top-applies-to-015.json @@ -233,4 +233,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-offset-001.json b/tests/web_platform/CSS2/positioning/ref/top-offset-001.json index 88c92a4ac..24922b061 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-offset-001.json +++ b/tests/web_platform/CSS2/positioning/ref/top-offset-001.json @@ -185,4 +185,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-offset-002.json b/tests/web_platform/CSS2/positioning/ref/top-offset-002.json index 84394a0ec..b457b5613 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-offset-002.json +++ b/tests/web_platform/CSS2/positioning/ref/top-offset-002.json @@ -139,4 +139,4 @@ 96 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-offset-003.json b/tests/web_platform/CSS2/positioning/ref/top-offset-003.json index 189ad9bb7..49e2eb7fc 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-offset-003.json +++ b/tests/web_platform/CSS2/positioning/ref/top-offset-003.json @@ -185,4 +185,4 @@ 120 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-offset-percentage-001.json b/tests/web_platform/CSS2/positioning/ref/top-offset-percentage-001.json index 0b6786306..145f90c03 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-offset-percentage-001.json +++ b/tests/web_platform/CSS2/positioning/ref/top-offset-percentage-001.json @@ -185,4 +185,4 @@ 206 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/ref/top-offset-percentage-002.json b/tests/web_platform/CSS2/positioning/ref/top-offset-percentage-002.json index 93626effd..b5b8b7cc3 100644 --- a/tests/web_platform/CSS2/positioning/ref/top-offset-percentage-002.json +++ b/tests/web_platform/CSS2/positioning/ref/top-offset-percentage-002.json @@ -235,4 +235,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/positioning/test_absolute_non_replaced_height.py b/tests/web_platform/CSS2/positioning/test_absolute_non_replaced_height.py index 81ac786bd..cff89d1a3 100644 --- a/tests/web_platform/CSS2/positioning/test_absolute_non_replaced_height.py +++ b/tests/web_platform/CSS2/positioning/test_absolute_non_replaced_height.py @@ -2,4 +2,4 @@ class TestAbsoluteNonReplacedHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'absolute-non-replaced-height-')) + vars().update(W3CTestCase.find_tests(__file__, "absolute-non-replaced-height-")) diff --git a/tests/web_platform/CSS2/positioning/test_absolute_non_replaced_max_height.py b/tests/web_platform/CSS2/positioning/test_absolute_non_replaced_max_height.py index c9bd830de..e7c29fd2f 100644 --- a/tests/web_platform/CSS2/positioning/test_absolute_non_replaced_max_height.py +++ b/tests/web_platform/CSS2/positioning/test_absolute_non_replaced_max_height.py @@ -2,4 +2,4 @@ class TestAbsoluteNonReplacedMaxHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'absolute-non-replaced-max-height-')) + vars().update(W3CTestCase.find_tests(__file__, "absolute-non-replaced-max-height-")) diff --git a/tests/web_platform/CSS2/positioning/test_absolute_non_replaced_width.py b/tests/web_platform/CSS2/positioning/test_absolute_non_replaced_width.py index 21470f390..1264a7255 100644 --- a/tests/web_platform/CSS2/positioning/test_absolute_non_replaced_width.py +++ b/tests/web_platform/CSS2/positioning/test_absolute_non_replaced_width.py @@ -2,4 +2,4 @@ class TestAbsoluteNonReplacedWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'absolute-non-replaced-width-')) + vars().update(W3CTestCase.find_tests(__file__, "absolute-non-replaced-width-")) diff --git a/tests/web_platform/CSS2/positioning/test_absolute_replaced_height.py b/tests/web_platform/CSS2/positioning/test_absolute_replaced_height.py index 5cfec894d..6a0d882f5 100644 --- a/tests/web_platform/CSS2/positioning/test_absolute_replaced_height.py +++ b/tests/web_platform/CSS2/positioning/test_absolute_replaced_height.py @@ -2,4 +2,4 @@ class TestAbsoluteReplacedHeight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'absolute-replaced-height-')) + vars().update(W3CTestCase.find_tests(__file__, "absolute-replaced-height-")) diff --git a/tests/web_platform/CSS2/positioning/test_absolute_replaced_width.py b/tests/web_platform/CSS2/positioning/test_absolute_replaced_width.py index 5fbf1b501..95b58b1b0 100644 --- a/tests/web_platform/CSS2/positioning/test_absolute_replaced_width.py +++ b/tests/web_platform/CSS2/positioning/test_absolute_replaced_width.py @@ -2,4 +2,4 @@ class TestAbsoluteReplacedWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'absolute-replaced-width-')) + vars().update(W3CTestCase.find_tests(__file__, "absolute-replaced-width-")) diff --git a/tests/web_platform/CSS2/positioning/test_abspos.py b/tests/web_platform/CSS2/positioning/test_abspos.py index 00a6466e8..f442f7272 100644 --- a/tests/web_platform/CSS2/positioning/test_abspos.py +++ b/tests/web_platform/CSS2/positioning/test_abspos.py @@ -2,4 +2,4 @@ class TestAbspos(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'abspos-')) + vars().update(W3CTestCase.find_tests(__file__, "abspos-")) diff --git a/tests/web_platform/CSS2/positioning/test_abspos_containing_block.py b/tests/web_platform/CSS2/positioning/test_abspos_containing_block.py index fcce63c19..acd38ae2d 100644 --- a/tests/web_platform/CSS2/positioning/test_abspos_containing_block.py +++ b/tests/web_platform/CSS2/positioning/test_abspos_containing_block.py @@ -2,4 +2,4 @@ class TestAbsposContainingBlock(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'abspos-containing-block-')) + vars().update(W3CTestCase.find_tests(__file__, "abspos-containing-block-")) diff --git a/tests/web_platform/CSS2/positioning/test_abspos_overflow.py b/tests/web_platform/CSS2/positioning/test_abspos_overflow.py index 186941b5b..6f92daa63 100644 --- a/tests/web_platform/CSS2/positioning/test_abspos_overflow.py +++ b/tests/web_platform/CSS2/positioning/test_abspos_overflow.py @@ -2,4 +2,4 @@ class TestAbsposOverflow(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'abspos-overflow-')) + vars().update(W3CTestCase.find_tests(__file__, "abspos-overflow-")) diff --git a/tests/web_platform/CSS2/positioning/test_abspos_width.py b/tests/web_platform/CSS2/positioning/test_abspos_width.py index fde9ce490..11ee5dd05 100644 --- a/tests/web_platform/CSS2/positioning/test_abspos_width.py +++ b/tests/web_platform/CSS2/positioning/test_abspos_width.py @@ -2,4 +2,4 @@ class TestAbsposWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'abspos-width-')) + vars().update(W3CTestCase.find_tests(__file__, "abspos-width-")) diff --git a/tests/web_platform/CSS2/positioning/test_abspos_zero_width.py b/tests/web_platform/CSS2/positioning/test_abspos_zero_width.py index 0acb075da..46747f37e 100644 --- a/tests/web_platform/CSS2/positioning/test_abspos_zero_width.py +++ b/tests/web_platform/CSS2/positioning/test_abspos_zero_width.py @@ -2,4 +2,4 @@ class TestAbsposZeroWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'abspos-zero-width-')) + vars().update(W3CTestCase.find_tests(__file__, "abspos-zero-width-")) diff --git a/tests/web_platform/CSS2/positioning/test_bottom.py b/tests/web_platform/CSS2/positioning/test_bottom.py index 7dec25efb..4e6916f41 100644 --- a/tests/web_platform/CSS2/positioning/test_bottom.py +++ b/tests/web_platform/CSS2/positioning/test_bottom.py @@ -2,4 +2,4 @@ class TestBottom(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'bottom-')) + vars().update(W3CTestCase.find_tests(__file__, "bottom-")) diff --git a/tests/web_platform/CSS2/positioning/test_bottom_applies_to.py b/tests/web_platform/CSS2/positioning/test_bottom_applies_to.py index 6b65dc7cd..708f5cc83 100644 --- a/tests/web_platform/CSS2/positioning/test_bottom_applies_to.py +++ b/tests/web_platform/CSS2/positioning/test_bottom_applies_to.py @@ -2,4 +2,4 @@ class TestBottomAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'bottom-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "bottom-applies-to-")) diff --git a/tests/web_platform/CSS2/positioning/test_bottom_offset.py b/tests/web_platform/CSS2/positioning/test_bottom_offset.py index 921c22fd1..75b3818cd 100644 --- a/tests/web_platform/CSS2/positioning/test_bottom_offset.py +++ b/tests/web_platform/CSS2/positioning/test_bottom_offset.py @@ -2,4 +2,4 @@ class TestBottomOffset(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'bottom-offset-')) + vars().update(W3CTestCase.find_tests(__file__, "bottom-offset-")) diff --git a/tests/web_platform/CSS2/positioning/test_bottom_offset_percentage.py b/tests/web_platform/CSS2/positioning/test_bottom_offset_percentage.py index 836521180..b5c932994 100644 --- a/tests/web_platform/CSS2/positioning/test_bottom_offset_percentage.py +++ b/tests/web_platform/CSS2/positioning/test_bottom_offset_percentage.py @@ -2,4 +2,4 @@ class TestBottomOffsetPercentage(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'bottom-offset-percentage-')) + vars().update(W3CTestCase.find_tests(__file__, "bottom-offset-percentage-")) diff --git a/tests/web_platform/CSS2/positioning/test_dynamic_top_change.py b/tests/web_platform/CSS2/positioning/test_dynamic_top_change.py index b2ee59093..c6d70e530 100644 --- a/tests/web_platform/CSS2/positioning/test_dynamic_top_change.py +++ b/tests/web_platform/CSS2/positioning/test_dynamic_top_change.py @@ -2,4 +2,4 @@ class TestDynamicTopChange(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'dynamic-top-change-')) + vars().update(W3CTestCase.find_tests(__file__, "dynamic-top-change-")) diff --git a/tests/web_platform/CSS2/positioning/test_left.py b/tests/web_platform/CSS2/positioning/test_left.py index 64ec8cae9..af1e49b90 100644 --- a/tests/web_platform/CSS2/positioning/test_left.py +++ b/tests/web_platform/CSS2/positioning/test_left.py @@ -2,4 +2,4 @@ class TestLeft(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'left-')) + vars().update(W3CTestCase.find_tests(__file__, "left-")) diff --git a/tests/web_platform/CSS2/positioning/test_left_applies_to.py b/tests/web_platform/CSS2/positioning/test_left_applies_to.py index d6b69c366..6b17176b9 100644 --- a/tests/web_platform/CSS2/positioning/test_left_applies_to.py +++ b/tests/web_platform/CSS2/positioning/test_left_applies_to.py @@ -2,4 +2,4 @@ class TestLeftAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'left-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "left-applies-to-")) diff --git a/tests/web_platform/CSS2/positioning/test_left_offset.py b/tests/web_platform/CSS2/positioning/test_left_offset.py index e16868c98..956e21e7b 100644 --- a/tests/web_platform/CSS2/positioning/test_left_offset.py +++ b/tests/web_platform/CSS2/positioning/test_left_offset.py @@ -2,4 +2,4 @@ class TestLeftOffset(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'left-offset-')) + vars().update(W3CTestCase.find_tests(__file__, "left-offset-")) diff --git a/tests/web_platform/CSS2/positioning/test_left_offset_percentage.py b/tests/web_platform/CSS2/positioning/test_left_offset_percentage.py index 7b02f5e71..dc510d58f 100644 --- a/tests/web_platform/CSS2/positioning/test_left_offset_percentage.py +++ b/tests/web_platform/CSS2/positioning/test_left_offset_percentage.py @@ -2,4 +2,4 @@ class TestLeftOffsetPercentage(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'left-offset-percentage-')) + vars().update(W3CTestCase.find_tests(__file__, "left-offset-percentage-")) diff --git a/tests/web_platform/CSS2/positioning/test_position.py b/tests/web_platform/CSS2/positioning/test_position.py index d93e2c510..3802bb316 100644 --- a/tests/web_platform/CSS2/positioning/test_position.py +++ b/tests/web_platform/CSS2/positioning/test_position.py @@ -2,4 +2,4 @@ class TestPosition(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'position-')) + vars().update(W3CTestCase.find_tests(__file__, "position-")) diff --git a/tests/web_platform/CSS2/positioning/test_position_absolute.py b/tests/web_platform/CSS2/positioning/test_position_absolute.py index 888742eae..41f79a06b 100644 --- a/tests/web_platform/CSS2/positioning/test_position_absolute.py +++ b/tests/web_platform/CSS2/positioning/test_position_absolute.py @@ -2,4 +2,4 @@ class TestPositionAbsolute(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'position-absolute-')) + vars().update(W3CTestCase.find_tests(__file__, "position-absolute-")) diff --git a/tests/web_platform/CSS2/positioning/test_position_applies_to.py b/tests/web_platform/CSS2/positioning/test_position_applies_to.py index 8e53ac5d1..405067d74 100644 --- a/tests/web_platform/CSS2/positioning/test_position_applies_to.py +++ b/tests/web_platform/CSS2/positioning/test_position_applies_to.py @@ -2,4 +2,4 @@ class TestPositionAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'position-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "position-applies-to-")) diff --git a/tests/web_platform/CSS2/positioning/test_position_fixed.py b/tests/web_platform/CSS2/positioning/test_position_fixed.py index bc6843880..8f6e7c3c0 100644 --- a/tests/web_platform/CSS2/positioning/test_position_fixed.py +++ b/tests/web_platform/CSS2/positioning/test_position_fixed.py @@ -2,4 +2,4 @@ class TestPositionFixed(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'position-fixed-')) + vars().update(W3CTestCase.find_tests(__file__, "position-fixed-")) diff --git a/tests/web_platform/CSS2/positioning/test_position_relative.py b/tests/web_platform/CSS2/positioning/test_position_relative.py index 4b950015c..5679466f7 100644 --- a/tests/web_platform/CSS2/positioning/test_position_relative.py +++ b/tests/web_platform/CSS2/positioning/test_position_relative.py @@ -2,4 +2,4 @@ class TestPositionRelative(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'position-relative-')) + vars().update(W3CTestCase.find_tests(__file__, "position-relative-")) diff --git a/tests/web_platform/CSS2/positioning/test_position_relative_nested.py b/tests/web_platform/CSS2/positioning/test_position_relative_nested.py index c1a3786a8..ee106b7b1 100644 --- a/tests/web_platform/CSS2/positioning/test_position_relative_nested.py +++ b/tests/web_platform/CSS2/positioning/test_position_relative_nested.py @@ -2,4 +2,4 @@ class TestPositionRelativeNested(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'position-relative-nested-')) + vars().update(W3CTestCase.find_tests(__file__, "position-relative-nested-")) diff --git a/tests/web_platform/CSS2/positioning/test_position_static.py b/tests/web_platform/CSS2/positioning/test_position_static.py index 152cdf747..b6b5efe84 100644 --- a/tests/web_platform/CSS2/positioning/test_position_static.py +++ b/tests/web_platform/CSS2/positioning/test_position_static.py @@ -2,4 +2,4 @@ class TestPositionStatic(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'position-static-')) + vars().update(W3CTestCase.find_tests(__file__, "position-static-")) diff --git a/tests/web_platform/CSS2/positioning/test_positioning_float.py b/tests/web_platform/CSS2/positioning/test_positioning_float.py index b9a912b74..392f2daa1 100644 --- a/tests/web_platform/CSS2/positioning/test_positioning_float.py +++ b/tests/web_platform/CSS2/positioning/test_positioning_float.py @@ -2,4 +2,4 @@ class TestPositioningFloat(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'positioning-float-')) + vars().update(W3CTestCase.find_tests(__file__, "positioning-float-")) diff --git a/tests/web_platform/CSS2/positioning/test_relpos_calcs.py b/tests/web_platform/CSS2/positioning/test_relpos_calcs.py index f64b5d524..376f62ec2 100644 --- a/tests/web_platform/CSS2/positioning/test_relpos_calcs.py +++ b/tests/web_platform/CSS2/positioning/test_relpos_calcs.py @@ -2,4 +2,4 @@ class TestRelposCalcs(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'relpos-calcs-')) + vars().update(W3CTestCase.find_tests(__file__, "relpos-calcs-")) diff --git a/tests/web_platform/CSS2/positioning/test_right.py b/tests/web_platform/CSS2/positioning/test_right.py index fbc3f877c..ebc6617cc 100644 --- a/tests/web_platform/CSS2/positioning/test_right.py +++ b/tests/web_platform/CSS2/positioning/test_right.py @@ -2,4 +2,4 @@ class TestRight(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'right-')) + vars().update(W3CTestCase.find_tests(__file__, "right-")) diff --git a/tests/web_platform/CSS2/positioning/test_right_applies_to.py b/tests/web_platform/CSS2/positioning/test_right_applies_to.py index d46cea116..966908e00 100644 --- a/tests/web_platform/CSS2/positioning/test_right_applies_to.py +++ b/tests/web_platform/CSS2/positioning/test_right_applies_to.py @@ -2,4 +2,4 @@ class TestRightAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'right-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "right-applies-to-")) diff --git a/tests/web_platform/CSS2/positioning/test_right_offset.py b/tests/web_platform/CSS2/positioning/test_right_offset.py index 01df2e8e0..6fc22f765 100644 --- a/tests/web_platform/CSS2/positioning/test_right_offset.py +++ b/tests/web_platform/CSS2/positioning/test_right_offset.py @@ -2,4 +2,4 @@ class TestRightOffset(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'right-offset-')) + vars().update(W3CTestCase.find_tests(__file__, "right-offset-")) diff --git a/tests/web_platform/CSS2/positioning/test_right_offset_percentage.py b/tests/web_platform/CSS2/positioning/test_right_offset_percentage.py index 80ec2eae4..863366e32 100644 --- a/tests/web_platform/CSS2/positioning/test_right_offset_percentage.py +++ b/tests/web_platform/CSS2/positioning/test_right_offset_percentage.py @@ -2,4 +2,4 @@ class TestRightOffsetPercentage(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'right-offset-percentage-')) + vars().update(W3CTestCase.find_tests(__file__, "right-offset-percentage-")) diff --git a/tests/web_platform/CSS2/positioning/test_top.py b/tests/web_platform/CSS2/positioning/test_top.py index 90c48a5e1..232fbbe8f 100644 --- a/tests/web_platform/CSS2/positioning/test_top.py +++ b/tests/web_platform/CSS2/positioning/test_top.py @@ -2,4 +2,4 @@ class TestTop(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'top-')) + vars().update(W3CTestCase.find_tests(__file__, "top-")) diff --git a/tests/web_platform/CSS2/positioning/test_top_applies_to.py b/tests/web_platform/CSS2/positioning/test_top_applies_to.py index 694242f29..99a3f48fc 100644 --- a/tests/web_platform/CSS2/positioning/test_top_applies_to.py +++ b/tests/web_platform/CSS2/positioning/test_top_applies_to.py @@ -2,4 +2,4 @@ class TestTopAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'top-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "top-applies-to-")) diff --git a/tests/web_platform/CSS2/positioning/test_top_offset.py b/tests/web_platform/CSS2/positioning/test_top_offset.py index f30df3827..c5b305892 100644 --- a/tests/web_platform/CSS2/positioning/test_top_offset.py +++ b/tests/web_platform/CSS2/positioning/test_top_offset.py @@ -2,4 +2,4 @@ class TestTopOffset(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'top-offset-')) + vars().update(W3CTestCase.find_tests(__file__, "top-offset-")) diff --git a/tests/web_platform/CSS2/positioning/test_top_offset_percentage.py b/tests/web_platform/CSS2/positioning/test_top_offset_percentage.py index 37e6a3e8b..8e42bff20 100644 --- a/tests/web_platform/CSS2/positioning/test_top_offset_percentage.py +++ b/tests/web_platform/CSS2/positioning/test_top_offset_percentage.py @@ -2,4 +2,4 @@ class TestTopOffsetPercentage(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'top-offset-percentage-')) + vars().update(W3CTestCase.find_tests(__file__, "top-offset-percentage-")) diff --git a/tests/web_platform/CSS2/visudet/data/height-applies-to-010a.json b/tests/web_platform/CSS2/visudet/data/height-applies-to-010a.json index 1d6b4a8c8..c3ce280e7 100644 --- a/tests/web_platform/CSS2/visudet/data/height-applies-to-010a.json +++ b/tests/web_platform/CSS2/visudet/data/height-applies-to-010a.json @@ -118,4 +118,4 @@ }, "matches": "height-applies-to-010a-ref.xht", "assert": "If height of content exceeds the set height of a block-level non-replaced element in normal flow (like a list-item element such as in this test), then the content should overflow according to the 'overflow' property." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visudet/data/height-computed-001.json b/tests/web_platform/CSS2/visudet/data/height-computed-001.json index 353ea6b66..a8cd02bc4 100644 --- a/tests/web_platform/CSS2/visudet/data/height-computed-001.json +++ b/tests/web_platform/CSS2/visudet/data/height-computed-001.json @@ -99,4 +99,4 @@ }, "matches": "height-computed-001-ref.xht", "assert": "If the resulting height is smaller than 'min-height', the rules above are applied again, but this time using the value of 'min-height' as the computed value for 'height'. Note: These steps do not affect the real computed value of 'height'." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visudet/data/height-computed-002.json b/tests/web_platform/CSS2/visudet/data/height-computed-002.json index 0eecb45a6..e70b9e5e8 100644 --- a/tests/web_platform/CSS2/visudet/data/height-computed-002.json +++ b/tests/web_platform/CSS2/visudet/data/height-computed-002.json @@ -99,4 +99,4 @@ }, "matches": "height-computed-002-ref.xht", "assert": "If this tentative height is greater than 'max-height', the rules above are applied again, but this time using the value of 'max-height' as the computed value for 'height'. [...] Note: These steps do not affect the real computed value of 'height'." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visudet/data/height-percentage-003a.json b/tests/web_platform/CSS2/visudet/data/height-percentage-003a.json index 3007aee1c..bb2300c2a 100644 --- a/tests/web_platform/CSS2/visudet/data/height-percentage-003a.json +++ b/tests/web_platform/CSS2/visudet/data/height-percentage-003a.json @@ -54,4 +54,4 @@ }, "matches": "height-percentage-003a-ref.xht", "assert": "The initial containing block has the dimensions of the viewport. A percentage height on the root element is relative to the initial containing block. A 'height: 100%' of the document root element should use all of the document root element's height." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visudet/data/height-percentage-004.json b/tests/web_platform/CSS2/visudet/data/height-percentage-004.json index 44738a265..cd14c13d7 100644 --- a/tests/web_platform/CSS2/visudet/data/height-percentage-004.json +++ b/tests/web_platform/CSS2/visudet/data/height-percentage-004.json @@ -65,4 +65,4 @@ }, "matches": "height-percentage-004-ref.xht", "assert": "If the resulting height is smaller than 'min-height', the rules above are applied again, but this time using the value of 'min-height' as the computed value for 'height'. Note: These steps do not affect the real computed value of 'height'." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visudet/data/max-width-109.json b/tests/web_platform/CSS2/visudet/data/max-width-109.json index b853fc426..85858af69 100644 --- a/tests/web_platform/CSS2/visudet/data/max-width-109.json +++ b/tests/web_platform/CSS2/visudet/data/max-width-109.json @@ -51,4 +51,4 @@ }, "matches": null, "assert": "For UAs who choose to scale replaced elements, the height of that element (based on it's intrinsic ratio) should be re-calculated based on it's constraining 'max-width' value" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visudet/ref/height-applies-to-010a.json b/tests/web_platform/CSS2/visudet/ref/height-applies-to-010a.json index 6eaf05de4..89c8c835d 100644 --- a/tests/web_platform/CSS2/visudet/ref/height-applies-to-010a.json +++ b/tests/web_platform/CSS2/visudet/ref/height-applies-to-010a.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visudet/ref/height-computed-001.json b/tests/web_platform/CSS2/visudet/ref/height-computed-001.json index 05e062b19..708005738 100644 --- a/tests/web_platform/CSS2/visudet/ref/height-computed-001.json +++ b/tests/web_platform/CSS2/visudet/ref/height-computed-001.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visudet/ref/height-computed-002.json b/tests/web_platform/CSS2/visudet/ref/height-computed-002.json index f45a83ca0..fb30a1d50 100644 --- a/tests/web_platform/CSS2/visudet/ref/height-computed-002.json +++ b/tests/web_platform/CSS2/visudet/ref/height-computed-002.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visudet/ref/height-percentage-003a.json b/tests/web_platform/CSS2/visudet/ref/height-percentage-003a.json index b533bebc0..7caf909e4 100644 --- a/tests/web_platform/CSS2/visudet/ref/height-percentage-003a.json +++ b/tests/web_platform/CSS2/visudet/ref/height-percentage-003a.json @@ -155,4 +155,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visudet/ref/height-percentage-004.json b/tests/web_platform/CSS2/visudet/ref/height-percentage-004.json index 1681f6f2e..e602219c7 100644 --- a/tests/web_platform/CSS2/visudet/ref/height-percentage-004.json +++ b/tests/web_platform/CSS2/visudet/ref/height-percentage-004.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visudet/ref/max-width-109.json b/tests/web_platform/CSS2/visudet/ref/max-width-109.json index 1bd7e60a9..6bcc0d419 100644 --- a/tests/web_platform/CSS2/visudet/ref/max-width-109.json +++ b/tests/web_platform/CSS2/visudet/ref/max-width-109.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visudet/test_height_applies_to.py b/tests/web_platform/CSS2/visudet/test_height_applies_to.py index aa0e23961..36e7ce933 100644 --- a/tests/web_platform/CSS2/visudet/test_height_applies_to.py +++ b/tests/web_platform/CSS2/visudet/test_height_applies_to.py @@ -2,4 +2,4 @@ class TestHeightAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'height-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "height-applies-to-")) diff --git a/tests/web_platform/CSS2/visudet/test_height_computed.py b/tests/web_platform/CSS2/visudet/test_height_computed.py index d841f0f17..372a43b8c 100644 --- a/tests/web_platform/CSS2/visudet/test_height_computed.py +++ b/tests/web_platform/CSS2/visudet/test_height_computed.py @@ -2,4 +2,4 @@ class TestHeightComputed(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'height-computed-')) + vars().update(W3CTestCase.find_tests(__file__, "height-computed-")) diff --git a/tests/web_platform/CSS2/visudet/test_height_percentage.py b/tests/web_platform/CSS2/visudet/test_height_percentage.py index c5a69c8d7..7ef07199f 100644 --- a/tests/web_platform/CSS2/visudet/test_height_percentage.py +++ b/tests/web_platform/CSS2/visudet/test_height_percentage.py @@ -2,4 +2,4 @@ class TestHeightPercentage(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'height-percentage-')) + vars().update(W3CTestCase.find_tests(__file__, "height-percentage-")) diff --git a/tests/web_platform/CSS2/visudet/test_max_width.py b/tests/web_platform/CSS2/visudet/test_max_width.py index 46955ed2b..4aa2365d2 100644 --- a/tests/web_platform/CSS2/visudet/test_max_width.py +++ b/tests/web_platform/CSS2/visudet/test_max_width.py @@ -2,4 +2,4 @@ class TestMaxWidth(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'max-width-')) + vars().update(W3CTestCase.find_tests(__file__, "max-width-")) diff --git a/tests/web_platform/CSS2/visuren/data/anonymous-boxes-001a.json b/tests/web_platform/CSS2/visuren/data/anonymous-boxes-001a.json index 70c8d8c41..94a2b71cd 100644 --- a/tests/web_platform/CSS2/visuren/data/anonymous-boxes-001a.json +++ b/tests/web_platform/CSS2/visuren/data/anonymous-boxes-001a.json @@ -84,4 +84,4 @@ "tag": "body" }, "assert": "Anonymous block boxes are ignored when resolving percentage values that would refer to it: the closest non-anonymous ancestor box is used instead." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/anonymous-boxes-001b.json b/tests/web_platform/CSS2/visuren/data/anonymous-boxes-001b.json index c321cbe72..ed4adb055 100644 --- a/tests/web_platform/CSS2/visuren/data/anonymous-boxes-001b.json +++ b/tests/web_platform/CSS2/visuren/data/anonymous-boxes-001b.json @@ -94,4 +94,4 @@ "tag": "body" }, "assert": "Anonymous block boxes are ignored when resolving percentage values that would refer to it: the closest non-anonymous ancestor box is used instead." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-direction-001.json b/tests/web_platform/CSS2/visuren/data/bidi-direction-001.json index a16a4a9d6..97a9337ec 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-direction-001.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-direction-001.json @@ -55,4 +55,4 @@ "tag": "body" }, "assert": "direction:rtl on body should inherit to paragraphs" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-direction-002.json b/tests/web_platform/CSS2/visuren/data/bidi-direction-002.json index 6e750ea33..4cd2f89f1 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-direction-002.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-direction-002.json @@ -54,4 +54,4 @@ "tag": "body" }, "assert": "Direction on paragraph should override direction on body" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-display-block-001.json b/tests/web_platform/CSS2/visuren/data/bidi-display-block-001.json index 1725c8067..803d12904 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-display-block-001.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-display-block-001.json @@ -51,4 +51,4 @@ "tag": "body" }, "assert": "An inline with display:block should be treated as a paragraph in the bidi algorithm" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-list-001.json b/tests/web_platform/CSS2/visuren/data/bidi-list-001.json index 6205ad122..532f5d143 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-list-001.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-list-001.json @@ -77,4 +77,4 @@ "tag": "body" }, "assert": "direction:rtl should apply to unordered lists, putting bullets on the right" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-list-002.json b/tests/web_platform/CSS2/visuren/data/bidi-list-002.json index 5cfc17b85..82b439727 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-list-002.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-list-002.json @@ -135,4 +135,4 @@ "tag": "body" }, "assert": "direction:rtl should apply to nested unordered lists, putting bullets on the right and offset leftwards" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-list-003.json b/tests/web_platform/CSS2/visuren/data/bidi-list-003.json index f743c59ee..9e064470f 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-list-003.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-list-003.json @@ -133,4 +133,4 @@ "tag": "body" }, "assert": "direction:rtl should apply to nested ordered lists, putting bullets on the right and offset leftwards" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-list-004.json b/tests/web_platform/CSS2/visuren/data/bidi-list-004.json index 078b1b4ea..dad84984d 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-list-004.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-list-004.json @@ -106,4 +106,4 @@ "tag": "body" }, "assert": "text-align: justify should apply to unordered lists in rtl context without affecting their rtlness" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-list-005.json b/tests/web_platform/CSS2/visuren/data/bidi-list-005.json index 01c3949ed..ccea5c389 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-list-005.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-list-005.json @@ -79,4 +79,4 @@ "tag": "body" }, "assert": "text-align:left should be applied to unordered list in rtl context without affecting its rtlness" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-list-006.json b/tests/web_platform/CSS2/visuren/data/bidi-list-006.json index ce0ebe487..38189faed 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-list-006.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-list-006.json @@ -79,4 +79,4 @@ "tag": "body" }, "assert": "text-align:right should be applied to unordered list in rtl context without affecting its rtlness" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-list-007.json b/tests/web_platform/CSS2/visuren/data/bidi-list-007.json index ae4790f68..a437132ff 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-list-007.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-list-007.json @@ -79,4 +79,4 @@ "tag": "body" }, "assert": "text-align: center should apply to unordered lists in rtl context without affecting their rtlness" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-override-001.json b/tests/web_platform/CSS2/visuren/data/bidi-override-001.json index cf28f8cbc..bdbf1ffaa 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-override-001.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-override-001.json @@ -67,4 +67,4 @@ "tag": "body" }, "assert": "bidi-override should not be applied to table cell content when specified on table" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-override-002.json b/tests/web_platform/CSS2/visuren/data/bidi-override-002.json index b33690397..9cb8a7f64 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-override-002.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-override-002.json @@ -67,4 +67,4 @@ "tag": "body" }, "assert": "bidi-override should be applied to table-cell content when specified on the cell" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-override-003.json b/tests/web_platform/CSS2/visuren/data/bidi-override-003.json index 4f0878229..1a62e5633 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-override-003.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-override-003.json @@ -56,4 +56,4 @@ "tag": "body" }, "assert": "bidi-override should not be applied to list item when specified on ul" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-override-004.json b/tests/web_platform/CSS2/visuren/data/bidi-override-004.json index 07225875d..f76c63075 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-override-004.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-override-004.json @@ -57,4 +57,4 @@ "tag": "body" }, "assert": "bidi-override should be applied when specified on list item" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-override-005.json b/tests/web_platform/CSS2/visuren/data/bidi-override-005.json index 7b763bed2..750d5247f 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-override-005.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-override-005.json @@ -45,4 +45,4 @@ "tag": "body" }, "assert": "bidi-override should be applied to inline-level descendants but not block-level descendants" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-position-fixed-001.json b/tests/web_platform/CSS2/visuren/data/bidi-position-fixed-001.json index c4fe246f9..d2b647fd2 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-position-fixed-001.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-position-fixed-001.json @@ -53,4 +53,4 @@ "tag": "body" }, "assert": "Default horizontal position of position:fixed block should be right in rtl context, and ancestor direction should still be applied inside the block taken out of normal flow" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-table-001.json b/tests/web_platform/CSS2/visuren/data/bidi-table-001.json index bba74cee0..6572ce93d 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-table-001.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-table-001.json @@ -149,4 +149,4 @@ "tag": "body" }, "assert": "direction:rtl on table should reverse order of table cells" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-table-002.json b/tests/web_platform/CSS2/visuren/data/bidi-table-002.json index e03173c5c..788f66adb 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-table-002.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-table-002.json @@ -194,4 +194,4 @@ "tag": "body" }, "assert": "direction: should affect order of table cells" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-unicode-bidi-001.json b/tests/web_platform/CSS2/visuren/data/bidi-unicode-bidi-001.json index 339ddc39c..b9746de38 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-unicode-bidi-001.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-unicode-bidi-001.json @@ -70,4 +70,4 @@ "tag": "body" }, "assert": "unicode-bidi: bidi-override should order characters strictly according to value of direction property" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-unicode-bidi-003.json b/tests/web_platform/CSS2/visuren/data/bidi-unicode-bidi-003.json index 065c976f1..97d948414 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-unicode-bidi-003.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-unicode-bidi-003.json @@ -42,4 +42,4 @@ "tag": "body" }, "assert": "unicode-bidi: embed should open a new bidi embedding level for inline-level element" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/bidi-unicode-bidi-004.json b/tests/web_platform/CSS2/visuren/data/bidi-unicode-bidi-004.json index 0328bd570..f88d37e68 100644 --- a/tests/web_platform/CSS2/visuren/data/bidi-unicode-bidi-004.json +++ b/tests/web_platform/CSS2/visuren/data/bidi-unicode-bidi-004.json @@ -128,4 +128,4 @@ "tag": "body" }, "assert": "Borders should be unaffected by directionality" -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/box-offsets-abs-pos-001.json b/tests/web_platform/CSS2/visuren/data/box-offsets-abs-pos-001.json index 4409d5fb2..a146c5a2f 100644 --- a/tests/web_platform/CSS2/visuren/data/box-offsets-abs-pos-001.json +++ b/tests/web_platform/CSS2/visuren/data/box-offsets-abs-pos-001.json @@ -137,4 +137,4 @@ "tag": "body" }, "assert": "Box offsets (bottom, left, right, top) for an absolutely positioned box refers to the padding box of its nearest positioned ancestor; such padding box forms and acts as the containing block of the absolutely positioned box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/box-offsets-rel-pos-001.json b/tests/web_platform/CSS2/visuren/data/box-offsets-rel-pos-001.json index d973c080a..e0f62468a 100644 --- a/tests/web_platform/CSS2/visuren/data/box-offsets-rel-pos-001.json +++ b/tests/web_platform/CSS2/visuren/data/box-offsets-rel-pos-001.json @@ -136,4 +136,4 @@ "tag": "body" }, "assert": "Box offsets (bottom, left, right, top) expressed in absolute units (not with percentage unit) for relatively positioned boxes are with respect to the edges of the boxes themselves." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/box-offsets-rel-pos-002.json b/tests/web_platform/CSS2/visuren/data/box-offsets-rel-pos-002.json index d2994a5ff..80fed87a6 100644 --- a/tests/web_platform/CSS2/visuren/data/box-offsets-rel-pos-002.json +++ b/tests/web_platform/CSS2/visuren/data/box-offsets-rel-pos-002.json @@ -119,4 +119,4 @@ "tag": "body" }, "assert": "The 'top', 'right', 'bottom', 'left' property, for relative positioning, specify the offset of the box itself from its normal in-flow position, from the position it would have had if it had been static." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/clear-applies-to-016.json b/tests/web_platform/CSS2/visuren/data/clear-applies-to-016.json index 6fac821d1..cad921fab 100644 --- a/tests/web_platform/CSS2/visuren/data/clear-applies-to-016.json +++ b/tests/web_platform/CSS2/visuren/data/clear-applies-to-016.json @@ -126,4 +126,4 @@ "tag": "body" }, "assert": "The 'clear' property apply to elements with a display of 'table' and is applied to the table wrapper box and not on the table box. In this test, the table wrapper box has a table caption placed before the table box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/clear-applies-to-017.json b/tests/web_platform/CSS2/visuren/data/clear-applies-to-017.json index a8f787838..63eb3fc7d 100644 --- a/tests/web_platform/CSS2/visuren/data/clear-applies-to-017.json +++ b/tests/web_platform/CSS2/visuren/data/clear-applies-to-017.json @@ -126,4 +126,4 @@ "tag": "body" }, "assert": "The 'clear' property apply to elements with a display of 'table' and is applied to the table wrapper box and not on the table box. In this test, the table wrapper box has a table caption placed after the table box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/fixed-pos-stacking-001.json b/tests/web_platform/CSS2/visuren/data/fixed-pos-stacking-001.json index 75cb40f5b..b4d99e15a 100644 --- a/tests/web_platform/CSS2/visuren/data/fixed-pos-stacking-001.json +++ b/tests/web_platform/CSS2/visuren/data/fixed-pos-stacking-001.json @@ -132,4 +132,4 @@ "tag": "body" }, "assert": "auto The stack level of the generated box in the current stacking context is 0. If the box has 'position: fixed' or if it is the root, it also establishes a new stacking context." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/inherit-static-offset-001.json b/tests/web_platform/CSS2/visuren/data/inherit-static-offset-001.json index a8c75a842..d08d9619d 100644 --- a/tests/web_platform/CSS2/visuren/data/inherit-static-offset-001.json +++ b/tests/web_platform/CSS2/visuren/data/inherit-static-offset-001.json @@ -57,4 +57,4 @@ "tag": "body" }, "assert": "When using the 'inherit' reserved keyword value, the property takes the same specified value as the property for the element's parent, even in cases where such property does not apply. This test covers the case where the parent has absolute value lengths for left and top." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/inherit-static-offset-002.json b/tests/web_platform/CSS2/visuren/data/inherit-static-offset-002.json index 90cc21905..f12dc5386 100644 --- a/tests/web_platform/CSS2/visuren/data/inherit-static-offset-002.json +++ b/tests/web_platform/CSS2/visuren/data/inherit-static-offset-002.json @@ -57,4 +57,4 @@ "tag": "body" }, "assert": "When using the 'inherit' reserved keyword value, the property takes the same specified value as the property for the element's parent, even in cases where such property does not apply. This test covers the case where the parent has percentage value lengths for left and top. Box offset specified as a percentage refer to the height (for top and bottom) or to the width (for left and right) of its containing block. If an element's position is 'relative', then its containing block is formed by the content edge of the nearest block container ancestor box." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/inherit-static-offset-003.json b/tests/web_platform/CSS2/visuren/data/inherit-static-offset-003.json index d53847948..2796c1045 100644 --- a/tests/web_platform/CSS2/visuren/data/inherit-static-offset-003.json +++ b/tests/web_platform/CSS2/visuren/data/inherit-static-offset-003.json @@ -58,4 +58,4 @@ "tag": "body" }, "assert": "When using the 'inherit' reserved keyword value, the property takes the same specified value as the property for the element's parent, even in cases where such property does not apply. This test covers the case where the parent has relative value lengths for left and top." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/inline-formatting-context-001.json b/tests/web_platform/CSS2/visuren/data/inline-formatting-context-001.json index c74a26368..c21ddac03 100644 --- a/tests/web_platform/CSS2/visuren/data/inline-formatting-context-001.json +++ b/tests/web_platform/CSS2/visuren/data/inline-formatting-context-001.json @@ -96,4 +96,4 @@ "tag": "body" }, "assert": "An inline formatting context is established by a block container box that contains no block-level boxes. In an inline formatting context, boxes are laid out horizontally, one after the other, beginning at the top of a containing block." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/left-offset-position-fixed-001.json b/tests/web_platform/CSS2/visuren/data/left-offset-position-fixed-001.json index ec7e506e9..54af1ceab 100644 --- a/tests/web_platform/CSS2/visuren/data/left-offset-position-fixed-001.json +++ b/tests/web_platform/CSS2/visuren/data/left-offset-position-fixed-001.json @@ -56,4 +56,4 @@ "tag": "body" }, "assert": "The 'left' box offset property, for fixed positioning, when set to 'auto' specifies the offset of the box from its 'static-position containing block'. Here, in this test, the 'static-position containing block' is #shifted-column and the containing block for #red is established by the viewport." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/position-absolute-008a.json b/tests/web_platform/CSS2/visuren/data/position-absolute-008a.json index d282cfe90..f92f3a628 100644 --- a/tests/web_platform/CSS2/visuren/data/position-absolute-008a.json +++ b/tests/web_platform/CSS2/visuren/data/position-absolute-008a.json @@ -54,4 +54,4 @@ "tag": "body" }, "assert": "Float is computed to 'none' when 'position: absolute' is specified." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/position-absolute-percentage-inherit-001.json b/tests/web_platform/CSS2/visuren/data/position-absolute-percentage-inherit-001.json index 87aa4954c..25c2819a0 100644 --- a/tests/web_platform/CSS2/visuren/data/position-absolute-percentage-inherit-001.json +++ b/tests/web_platform/CSS2/visuren/data/position-absolute-percentage-inherit-001.json @@ -75,4 +75,4 @@ "tag": "body" }, "assert": "Absolutely positioned boxes can be dimensioned and positioned solely by setting offset 'top', 'right', 'bottom' and 'left' property values with percentage unit and then with inherit keyword. 'inherit' on a offset property makes such offset property take the same computed value as the offset property of the nearest positioned ancestor; in the case of a percentage value - like in this testcase - , the computed value is the specified percentage value of such nearest positioned ancestor." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/right-offset-position-fixed-001.json b/tests/web_platform/CSS2/visuren/data/right-offset-position-fixed-001.json index 9d8016017..c3882cc92 100644 --- a/tests/web_platform/CSS2/visuren/data/right-offset-position-fixed-001.json +++ b/tests/web_platform/CSS2/visuren/data/right-offset-position-fixed-001.json @@ -56,4 +56,4 @@ "tag": "body" }, "assert": "The 'right' box offset property, for fixed positioning, when set to 'auto' specifies the offset of the box from its 'static-position containing block'. Here, in this test, the 'static-position containing block' is #shifted-column and the containing block for #red is established by the viewport." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/top-114.json b/tests/web_platform/CSS2/visuren/data/top-114.json index fa31eff79..0e3e96491 100644 --- a/tests/web_platform/CSS2/visuren/data/top-114.json +++ b/tests/web_platform/CSS2/visuren/data/top-114.json @@ -79,4 +79,4 @@ "tag": "body" }, "assert": "'top: inherit' makes the top property take the same computed value as the top property for the element's parent; in the case of a percentage value, the computed value is the specified percentage value. 'top: [percentage]' refers to height of containing block." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/data/top-115.json b/tests/web_platform/CSS2/visuren/data/top-115.json index 172ee8231..5e7f61a8c 100644 --- a/tests/web_platform/CSS2/visuren/data/top-115.json +++ b/tests/web_platform/CSS2/visuren/data/top-115.json @@ -147,4 +147,4 @@ "tag": "body" }, "assert": "'top: [percentage]' for a relatively positioned box refers to height of its containing block. If the height of the containing block is not specified explicitly (i.e., it depends on content height), and this element is not absolutely positioned, then the percentage height value computes to 'auto'." -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/not_implemented b/tests/web_platform/CSS2/visuren/not_implemented index e63da33c1..5ba17b5e9 100644 --- a/tests/web_platform/CSS2/visuren/not_implemented +++ b/tests/web_platform/CSS2/visuren/not_implemented @@ -35,4 +35,4 @@ left_offset_position_fixed_001 position_absolute_008a position_absolute_percentage_inherit_001 right_offset_position_fixed_001 -top_115 +top_115 diff --git a/tests/web_platform/CSS2/visuren/ref/anonymous-boxes-001a.json b/tests/web_platform/CSS2/visuren/ref/anonymous-boxes-001a.json index f4e93224b..b5540f291 100644 --- a/tests/web_platform/CSS2/visuren/ref/anonymous-boxes-001a.json +++ b/tests/web_platform/CSS2/visuren/ref/anonymous-boxes-001a.json @@ -254,4 +254,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/anonymous-boxes-001b.json b/tests/web_platform/CSS2/visuren/ref/anonymous-boxes-001b.json index cc23112cf..67c98c064 100644 --- a/tests/web_platform/CSS2/visuren/ref/anonymous-boxes-001b.json +++ b/tests/web_platform/CSS2/visuren/ref/anonymous-boxes-001b.json @@ -254,4 +254,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-direction-001.json b/tests/web_platform/CSS2/visuren/ref/bidi-direction-001.json index d7b637741..47bda2510 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-direction-001.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-direction-001.json @@ -141,4 +141,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-direction-002.json b/tests/web_platform/CSS2/visuren/ref/bidi-direction-002.json index d3b5156d0..dd8574ba4 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-direction-002.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-direction-002.json @@ -141,4 +141,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-display-block-001.json b/tests/web_platform/CSS2/visuren/ref/bidi-display-block-001.json index df6ebeab0..622dae071 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-display-block-001.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-display-block-001.json @@ -189,4 +189,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-list-001.json b/tests/web_platform/CSS2/visuren/ref/bidi-list-001.json index 032eca860..864ec6fa2 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-list-001.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-list-001.json @@ -237,4 +237,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-list-002.json b/tests/web_platform/CSS2/visuren/ref/bidi-list-002.json index 0274ebe1c..f5b15e70c 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-list-002.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-list-002.json @@ -436,4 +436,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-list-003.json b/tests/web_platform/CSS2/visuren/ref/bidi-list-003.json index 9e6934b5e..a6f293e82 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-list-003.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-list-003.json @@ -436,4 +436,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-list-004.json b/tests/web_platform/CSS2/visuren/ref/bidi-list-004.json index 083cb9c41..438d96ee2 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-list-004.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-list-004.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-list-005.json b/tests/web_platform/CSS2/visuren/ref/bidi-list-005.json index 6088bb6a6..ced608ebb 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-list-005.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-list-005.json @@ -237,4 +237,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-list-006.json b/tests/web_platform/CSS2/visuren/ref/bidi-list-006.json index 6088bb6a6..ced608ebb 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-list-006.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-list-006.json @@ -237,4 +237,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-list-007.json b/tests/web_platform/CSS2/visuren/ref/bidi-list-007.json index b2b5239e0..d38d2eb39 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-list-007.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-list-007.json @@ -237,4 +237,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-override-001.json b/tests/web_platform/CSS2/visuren/ref/bidi-override-001.json index d5c099768..1e6a14e38 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-override-001.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-override-001.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-override-002.json b/tests/web_platform/CSS2/visuren/ref/bidi-override-002.json index 82c67c79a..5960b45da 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-override-002.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-override-002.json @@ -237,4 +237,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-override-003.json b/tests/web_platform/CSS2/visuren/ref/bidi-override-003.json index ce7f78b06..fff81fbbe 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-override-003.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-override-003.json @@ -141,4 +141,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-override-004.json b/tests/web_platform/CSS2/visuren/ref/bidi-override-004.json index b801875d9..78ea9b36e 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-override-004.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-override-004.json @@ -141,4 +141,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-override-005.json b/tests/web_platform/CSS2/visuren/ref/bidi-override-005.json index 3ea60e058..cce32cbf4 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-override-005.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-override-005.json @@ -148,4 +148,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-position-fixed-001.json b/tests/web_platform/CSS2/visuren/ref/bidi-position-fixed-001.json index c3bce41db..1e162143b 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-position-fixed-001.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-position-fixed-001.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-table-001.json b/tests/web_platform/CSS2/visuren/ref/bidi-table-001.json index 24e4ea0c0..4412b5380 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-table-001.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-table-001.json @@ -525,4 +525,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-table-002.json b/tests/web_platform/CSS2/visuren/ref/bidi-table-002.json index 7cbe1f9b2..c5ad9c43d 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-table-002.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-table-002.json @@ -621,4 +621,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-unicode-bidi-001.json b/tests/web_platform/CSS2/visuren/ref/bidi-unicode-bidi-001.json index e5eb4c54c..d2c3fabb5 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-unicode-bidi-001.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-unicode-bidi-001.json @@ -203,4 +203,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-unicode-bidi-003.json b/tests/web_platform/CSS2/visuren/ref/bidi-unicode-bidi-003.json index c7296658b..12aa9d00f 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-unicode-bidi-003.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-unicode-bidi-003.json @@ -141,4 +141,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/bidi-unicode-bidi-004.json b/tests/web_platform/CSS2/visuren/ref/bidi-unicode-bidi-004.json index 4b4aa87ee..5712604ff 100644 --- a/tests/web_platform/CSS2/visuren/ref/bidi-unicode-bidi-004.json +++ b/tests/web_platform/CSS2/visuren/ref/bidi-unicode-bidi-004.json @@ -299,4 +299,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/box-offsets-abs-pos-001.json b/tests/web_platform/CSS2/visuren/ref/box-offsets-abs-pos-001.json index 589088092..d4314e365 100644 --- a/tests/web_platform/CSS2/visuren/ref/box-offsets-abs-pos-001.json +++ b/tests/web_platform/CSS2/visuren/ref/box-offsets-abs-pos-001.json @@ -331,4 +331,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/box-offsets-rel-pos-001.json b/tests/web_platform/CSS2/visuren/ref/box-offsets-rel-pos-001.json index 4305db75a..d4dde76ad 100644 --- a/tests/web_platform/CSS2/visuren/ref/box-offsets-rel-pos-001.json +++ b/tests/web_platform/CSS2/visuren/ref/box-offsets-rel-pos-001.json @@ -331,4 +331,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/box-offsets-rel-pos-002.json b/tests/web_platform/CSS2/visuren/ref/box-offsets-rel-pos-002.json index 3f5a9bfe7..9a820cb72 100644 --- a/tests/web_platform/CSS2/visuren/ref/box-offsets-rel-pos-002.json +++ b/tests/web_platform/CSS2/visuren/ref/box-offsets-rel-pos-002.json @@ -603,4 +603,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/clear-applies-to-016.json b/tests/web_platform/CSS2/visuren/ref/clear-applies-to-016.json index 6607d6c77..5010c60f0 100644 --- a/tests/web_platform/CSS2/visuren/ref/clear-applies-to-016.json +++ b/tests/web_platform/CSS2/visuren/ref/clear-applies-to-016.json @@ -429,4 +429,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/clear-applies-to-017.json b/tests/web_platform/CSS2/visuren/ref/clear-applies-to-017.json index b1bfa880c..9a8dcb680 100644 --- a/tests/web_platform/CSS2/visuren/ref/clear-applies-to-017.json +++ b/tests/web_platform/CSS2/visuren/ref/clear-applies-to-017.json @@ -429,4 +429,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/fixed-pos-stacking-001.json b/tests/web_platform/CSS2/visuren/ref/fixed-pos-stacking-001.json index a6a451745..31438ad16 100644 --- a/tests/web_platform/CSS2/visuren/ref/fixed-pos-stacking-001.json +++ b/tests/web_platform/CSS2/visuren/ref/fixed-pos-stacking-001.json @@ -329,4 +329,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/inherit-static-offset-001.json b/tests/web_platform/CSS2/visuren/ref/inherit-static-offset-001.json index df2412d6f..6f5c5ca31 100644 --- a/tests/web_platform/CSS2/visuren/ref/inherit-static-offset-001.json +++ b/tests/web_platform/CSS2/visuren/ref/inherit-static-offset-001.json @@ -139,4 +139,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/inherit-static-offset-002.json b/tests/web_platform/CSS2/visuren/ref/inherit-static-offset-002.json index df2412d6f..6f5c5ca31 100644 --- a/tests/web_platform/CSS2/visuren/ref/inherit-static-offset-002.json +++ b/tests/web_platform/CSS2/visuren/ref/inherit-static-offset-002.json @@ -139,4 +139,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/inherit-static-offset-003.json b/tests/web_platform/CSS2/visuren/ref/inherit-static-offset-003.json index df2412d6f..6f5c5ca31 100644 --- a/tests/web_platform/CSS2/visuren/ref/inherit-static-offset-003.json +++ b/tests/web_platform/CSS2/visuren/ref/inherit-static-offset-003.json @@ -139,4 +139,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/inline-formatting-context-001.json b/tests/web_platform/CSS2/visuren/ref/inline-formatting-context-001.json index 61abd4cfa..ee8684a0c 100644 --- a/tests/web_platform/CSS2/visuren/ref/inline-formatting-context-001.json +++ b/tests/web_platform/CSS2/visuren/ref/inline-formatting-context-001.json @@ -313,4 +313,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/left-offset-position-fixed-001.json b/tests/web_platform/CSS2/visuren/ref/left-offset-position-fixed-001.json index fea52bef2..0f363b1d7 100644 --- a/tests/web_platform/CSS2/visuren/ref/left-offset-position-fixed-001.json +++ b/tests/web_platform/CSS2/visuren/ref/left-offset-position-fixed-001.json @@ -185,4 +185,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/position-absolute-008a.json b/tests/web_platform/CSS2/visuren/ref/position-absolute-008a.json index 6958dcea6..4d2099054 100644 --- a/tests/web_platform/CSS2/visuren/ref/position-absolute-008a.json +++ b/tests/web_platform/CSS2/visuren/ref/position-absolute-008a.json @@ -185,4 +185,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/position-absolute-percentage-inherit-001.json b/tests/web_platform/CSS2/visuren/ref/position-absolute-percentage-inherit-001.json index d6fc85f95..ef54735c5 100644 --- a/tests/web_platform/CSS2/visuren/ref/position-absolute-percentage-inherit-001.json +++ b/tests/web_platform/CSS2/visuren/ref/position-absolute-percentage-inherit-001.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/right-offset-position-fixed-001.json b/tests/web_platform/CSS2/visuren/ref/right-offset-position-fixed-001.json index 9797b7657..861b80691 100644 --- a/tests/web_platform/CSS2/visuren/ref/right-offset-position-fixed-001.json +++ b/tests/web_platform/CSS2/visuren/ref/right-offset-position-fixed-001.json @@ -185,4 +185,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/top-114.json b/tests/web_platform/CSS2/visuren/ref/top-114.json index bd0c7169a..3db1e020f 100644 --- a/tests/web_platform/CSS2/visuren/ref/top-114.json +++ b/tests/web_platform/CSS2/visuren/ref/top-114.json @@ -235,4 +235,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/ref/top-115.json b/tests/web_platform/CSS2/visuren/ref/top-115.json index bb9bc469a..12ebf82ba 100644 --- a/tests/web_platform/CSS2/visuren/ref/top-115.json +++ b/tests/web_platform/CSS2/visuren/ref/top-115.json @@ -515,4 +515,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/CSS2/visuren/test_anonymous_boxes.py b/tests/web_platform/CSS2/visuren/test_anonymous_boxes.py index db63c758a..172f4f45d 100644 --- a/tests/web_platform/CSS2/visuren/test_anonymous_boxes.py +++ b/tests/web_platform/CSS2/visuren/test_anonymous_boxes.py @@ -2,4 +2,4 @@ class TestAnonymousBoxes(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'anonymous-boxes-')) + vars().update(W3CTestCase.find_tests(__file__, "anonymous-boxes-")) diff --git a/tests/web_platform/CSS2/visuren/test_bidi_direction.py b/tests/web_platform/CSS2/visuren/test_bidi_direction.py index db1ffcd25..fc1359c57 100644 --- a/tests/web_platform/CSS2/visuren/test_bidi_direction.py +++ b/tests/web_platform/CSS2/visuren/test_bidi_direction.py @@ -2,4 +2,4 @@ class TestBidiDirection(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'bidi-direction-')) + vars().update(W3CTestCase.find_tests(__file__, "bidi-direction-")) diff --git a/tests/web_platform/CSS2/visuren/test_bidi_display_block.py b/tests/web_platform/CSS2/visuren/test_bidi_display_block.py index 46523c7be..977cb119f 100644 --- a/tests/web_platform/CSS2/visuren/test_bidi_display_block.py +++ b/tests/web_platform/CSS2/visuren/test_bidi_display_block.py @@ -2,4 +2,4 @@ class TestBidiDisplayBlock(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'bidi-display-block-')) + vars().update(W3CTestCase.find_tests(__file__, "bidi-display-block-")) diff --git a/tests/web_platform/CSS2/visuren/test_bidi_list.py b/tests/web_platform/CSS2/visuren/test_bidi_list.py index 5f2b6814b..cadd80eac 100644 --- a/tests/web_platform/CSS2/visuren/test_bidi_list.py +++ b/tests/web_platform/CSS2/visuren/test_bidi_list.py @@ -2,4 +2,4 @@ class TestBidiList(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'bidi-list-')) + vars().update(W3CTestCase.find_tests(__file__, "bidi-list-")) diff --git a/tests/web_platform/CSS2/visuren/test_bidi_override.py b/tests/web_platform/CSS2/visuren/test_bidi_override.py index a1e7b3c9d..f12a37a46 100644 --- a/tests/web_platform/CSS2/visuren/test_bidi_override.py +++ b/tests/web_platform/CSS2/visuren/test_bidi_override.py @@ -2,4 +2,4 @@ class TestBidiOverride(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'bidi-override-')) + vars().update(W3CTestCase.find_tests(__file__, "bidi-override-")) diff --git a/tests/web_platform/CSS2/visuren/test_bidi_position_fixed.py b/tests/web_platform/CSS2/visuren/test_bidi_position_fixed.py index b7c689ec4..d5b1dbe31 100644 --- a/tests/web_platform/CSS2/visuren/test_bidi_position_fixed.py +++ b/tests/web_platform/CSS2/visuren/test_bidi_position_fixed.py @@ -2,4 +2,4 @@ class TestBidiPositionFixed(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'bidi-position-fixed-')) + vars().update(W3CTestCase.find_tests(__file__, "bidi-position-fixed-")) diff --git a/tests/web_platform/CSS2/visuren/test_bidi_table.py b/tests/web_platform/CSS2/visuren/test_bidi_table.py index c9b9c55de..6ba9fe8c1 100644 --- a/tests/web_platform/CSS2/visuren/test_bidi_table.py +++ b/tests/web_platform/CSS2/visuren/test_bidi_table.py @@ -2,4 +2,4 @@ class TestBidiTable(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'bidi-table-')) + vars().update(W3CTestCase.find_tests(__file__, "bidi-table-")) diff --git a/tests/web_platform/CSS2/visuren/test_bidi_unicode_bidi.py b/tests/web_platform/CSS2/visuren/test_bidi_unicode_bidi.py index e697ddd2f..0b6f1fe4d 100644 --- a/tests/web_platform/CSS2/visuren/test_bidi_unicode_bidi.py +++ b/tests/web_platform/CSS2/visuren/test_bidi_unicode_bidi.py @@ -2,4 +2,4 @@ class TestBidiUnicodeBidi(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'bidi-unicode-bidi-')) + vars().update(W3CTestCase.find_tests(__file__, "bidi-unicode-bidi-")) diff --git a/tests/web_platform/CSS2/visuren/test_box_offsets_abs_pos.py b/tests/web_platform/CSS2/visuren/test_box_offsets_abs_pos.py index 67771c681..8a0816feb 100644 --- a/tests/web_platform/CSS2/visuren/test_box_offsets_abs_pos.py +++ b/tests/web_platform/CSS2/visuren/test_box_offsets_abs_pos.py @@ -2,4 +2,4 @@ class TestBoxOffsetsAbsPos(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'box-offsets-abs-pos-')) + vars().update(W3CTestCase.find_tests(__file__, "box-offsets-abs-pos-")) diff --git a/tests/web_platform/CSS2/visuren/test_box_offsets_rel_pos.py b/tests/web_platform/CSS2/visuren/test_box_offsets_rel_pos.py index 2ca2d5b46..e688ebeb9 100644 --- a/tests/web_platform/CSS2/visuren/test_box_offsets_rel_pos.py +++ b/tests/web_platform/CSS2/visuren/test_box_offsets_rel_pos.py @@ -2,4 +2,4 @@ class TestBoxOffsetsRelPos(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'box-offsets-rel-pos-')) + vars().update(W3CTestCase.find_tests(__file__, "box-offsets-rel-pos-")) diff --git a/tests/web_platform/CSS2/visuren/test_clear_applies_to.py b/tests/web_platform/CSS2/visuren/test_clear_applies_to.py index d5c4c33b0..ce5a0a038 100644 --- a/tests/web_platform/CSS2/visuren/test_clear_applies_to.py +++ b/tests/web_platform/CSS2/visuren/test_clear_applies_to.py @@ -2,4 +2,4 @@ class TestClearAppliesTo(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'clear-applies-to-')) + vars().update(W3CTestCase.find_tests(__file__, "clear-applies-to-")) diff --git a/tests/web_platform/CSS2/visuren/test_fixed_pos_stacking.py b/tests/web_platform/CSS2/visuren/test_fixed_pos_stacking.py index a798f9c42..c161212f0 100644 --- a/tests/web_platform/CSS2/visuren/test_fixed_pos_stacking.py +++ b/tests/web_platform/CSS2/visuren/test_fixed_pos_stacking.py @@ -2,4 +2,4 @@ class TestFixedPosStacking(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'fixed-pos-stacking-')) + vars().update(W3CTestCase.find_tests(__file__, "fixed-pos-stacking-")) diff --git a/tests/web_platform/CSS2/visuren/test_inherit_static_offset.py b/tests/web_platform/CSS2/visuren/test_inherit_static_offset.py index 863521c6a..c9ed5e5d4 100644 --- a/tests/web_platform/CSS2/visuren/test_inherit_static_offset.py +++ b/tests/web_platform/CSS2/visuren/test_inherit_static_offset.py @@ -2,4 +2,4 @@ class TestInheritStaticOffset(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inherit-static-offset-')) + vars().update(W3CTestCase.find_tests(__file__, "inherit-static-offset-")) diff --git a/tests/web_platform/CSS2/visuren/test_inline_formatting_context.py b/tests/web_platform/CSS2/visuren/test_inline_formatting_context.py index 920f42baa..f56fac8b0 100644 --- a/tests/web_platform/CSS2/visuren/test_inline_formatting_context.py +++ b/tests/web_platform/CSS2/visuren/test_inline_formatting_context.py @@ -2,4 +2,4 @@ class TestInlineFormattingContext(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'inline-formatting-context-')) + vars().update(W3CTestCase.find_tests(__file__, "inline-formatting-context-")) diff --git a/tests/web_platform/CSS2/visuren/test_left_offset_position_fixed.py b/tests/web_platform/CSS2/visuren/test_left_offset_position_fixed.py index 9e21b8912..931efdde5 100644 --- a/tests/web_platform/CSS2/visuren/test_left_offset_position_fixed.py +++ b/tests/web_platform/CSS2/visuren/test_left_offset_position_fixed.py @@ -2,4 +2,4 @@ class TestLeftOffsetPositionFixed(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'left-offset-position-fixed-')) + vars().update(W3CTestCase.find_tests(__file__, "left-offset-position-fixed-")) diff --git a/tests/web_platform/CSS2/visuren/test_position_absolute.py b/tests/web_platform/CSS2/visuren/test_position_absolute.py index 888742eae..41f79a06b 100644 --- a/tests/web_platform/CSS2/visuren/test_position_absolute.py +++ b/tests/web_platform/CSS2/visuren/test_position_absolute.py @@ -2,4 +2,4 @@ class TestPositionAbsolute(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'position-absolute-')) + vars().update(W3CTestCase.find_tests(__file__, "position-absolute-")) diff --git a/tests/web_platform/CSS2/visuren/test_position_absolute_percentage_inherit.py b/tests/web_platform/CSS2/visuren/test_position_absolute_percentage_inherit.py index 8c0928cb5..0894d5c06 100644 --- a/tests/web_platform/CSS2/visuren/test_position_absolute_percentage_inherit.py +++ b/tests/web_platform/CSS2/visuren/test_position_absolute_percentage_inherit.py @@ -2,4 +2,6 @@ class TestPositionAbsolutePercentageInherit(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'position-absolute-percentage-inherit-')) + vars().update( + W3CTestCase.find_tests(__file__, "position-absolute-percentage-inherit-") + ) diff --git a/tests/web_platform/CSS2/visuren/test_right_offset_position_fixed.py b/tests/web_platform/CSS2/visuren/test_right_offset_position_fixed.py index 2b9caada3..552badd8e 100644 --- a/tests/web_platform/CSS2/visuren/test_right_offset_position_fixed.py +++ b/tests/web_platform/CSS2/visuren/test_right_offset_position_fixed.py @@ -2,4 +2,4 @@ class TestRightOffsetPositionFixed(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'right-offset-position-fixed-')) + vars().update(W3CTestCase.find_tests(__file__, "right-offset-position-fixed-")) diff --git a/tests/web_platform/CSS2/visuren/test_top.py b/tests/web_platform/CSS2/visuren/test_top.py index 90c48a5e1..232fbbe8f 100644 --- a/tests/web_platform/CSS2/visuren/test_top.py +++ b/tests/web_platform/CSS2/visuren/test_top.py @@ -2,4 +2,4 @@ class TestTop(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'top-')) + vars().update(W3CTestCase.find_tests(__file__, "top-")) diff --git a/tests/web_platform/css_flexbox_1/data/Flexible-order.json b/tests/web_platform/css_flexbox_1/data/Flexible-order.json index 773622d55..7c3cbd217 100644 --- a/tests/web_platform/css_flexbox_1/data/Flexible-order.json +++ b/tests/web_platform/css_flexbox_1/data/Flexible-order.json @@ -139,4 +139,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-content-001.json b/tests/web_platform/css_flexbox_1/data/align-content-001.json index 5b8cd8dde..71709e9bf 100644 --- a/tests/web_platform/css_flexbox_1/data/align-content-001.json +++ b/tests/web_platform/css_flexbox_1/data/align-content-001.json @@ -81,4 +81,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-content-002.json b/tests/web_platform/css_flexbox_1/data/align-content-002.json index 898088507..71d8d2036 100644 --- a/tests/web_platform/css_flexbox_1/data/align-content-002.json +++ b/tests/web_platform/css_flexbox_1/data/align-content-002.json @@ -81,4 +81,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-content-003.json b/tests/web_platform/css_flexbox_1/data/align-content-003.json index 7bb7a5f34..c56e77d7d 100644 --- a/tests/web_platform/css_flexbox_1/data/align-content-003.json +++ b/tests/web_platform/css_flexbox_1/data/align-content-003.json @@ -81,4 +81,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-content-004.json b/tests/web_platform/css_flexbox_1/data/align-content-004.json index 24eb4119a..bd820a5fd 100644 --- a/tests/web_platform/css_flexbox_1/data/align-content-004.json +++ b/tests/web_platform/css_flexbox_1/data/align-content-004.json @@ -101,4 +101,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-content-005.json b/tests/web_platform/css_flexbox_1/data/align-content-005.json index af6d3e577..6a3bb9966 100644 --- a/tests/web_platform/css_flexbox_1/data/align-content-005.json +++ b/tests/web_platform/css_flexbox_1/data/align-content-005.json @@ -81,4 +81,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-content-006.json b/tests/web_platform/css_flexbox_1/data/align-content-006.json index 3c06bd4b3..47a06ed00 100644 --- a/tests/web_platform/css_flexbox_1/data/align-content-006.json +++ b/tests/web_platform/css_flexbox_1/data/align-content-006.json @@ -77,4 +77,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-content_center.json b/tests/web_platform/css_flexbox_1/data/align-content_center.json index 214e286ff..50f0a0497 100644 --- a/tests/web_platform/css_flexbox_1/data/align-content_center.json +++ b/tests/web_platform/css_flexbox_1/data/align-content_center.json @@ -121,4 +121,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-content_flex-end.json b/tests/web_platform/css_flexbox_1/data/align-content_flex-end.json index ef504bb98..a31f32aae 100644 --- a/tests/web_platform/css_flexbox_1/data/align-content_flex-end.json +++ b/tests/web_platform/css_flexbox_1/data/align-content_flex-end.json @@ -121,4 +121,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-content_flex-start.json b/tests/web_platform/css_flexbox_1/data/align-content_flex-start.json index da95d82b9..dcde84b74 100644 --- a/tests/web_platform/css_flexbox_1/data/align-content_flex-start.json +++ b/tests/web_platform/css_flexbox_1/data/align-content_flex-start.json @@ -128,4 +128,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-content_space-around.json b/tests/web_platform/css_flexbox_1/data/align-content_space-around.json index ae963865e..c9680ba39 100644 --- a/tests/web_platform/css_flexbox_1/data/align-content_space-around.json +++ b/tests/web_platform/css_flexbox_1/data/align-content_space-around.json @@ -121,4 +121,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-content_space-between.json b/tests/web_platform/css_flexbox_1/data/align-content_space-between.json index 778963aec..5ae6901fc 100644 --- a/tests/web_platform/css_flexbox_1/data/align-content_space-between.json +++ b/tests/web_platform/css_flexbox_1/data/align-content_space-between.json @@ -121,4 +121,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-content_stretch.json b/tests/web_platform/css_flexbox_1/data/align-content_stretch.json index 7e0cdcaca..4d142e640 100644 --- a/tests/web_platform/css_flexbox_1/data/align-content_stretch.json +++ b/tests/web_platform/css_flexbox_1/data/align-content_stretch.json @@ -121,4 +121,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-items-001.json b/tests/web_platform/css_flexbox_1/data/align-items-001.json index 4eefadc04..61b1905b3 100644 --- a/tests/web_platform/css_flexbox_1/data/align-items-001.json +++ b/tests/web_platform/css_flexbox_1/data/align-items-001.json @@ -60,4 +60,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-items-002.json b/tests/web_platform/css_flexbox_1/data/align-items-002.json index 96f3be51b..5fea5c856 100644 --- a/tests/web_platform/css_flexbox_1/data/align-items-002.json +++ b/tests/web_platform/css_flexbox_1/data/align-items-002.json @@ -60,4 +60,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-items-003.json b/tests/web_platform/css_flexbox_1/data/align-items-003.json index e778e3321..2e9f52bea 100644 --- a/tests/web_platform/css_flexbox_1/data/align-items-003.json +++ b/tests/web_platform/css_flexbox_1/data/align-items-003.json @@ -60,4 +60,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-items-004.json b/tests/web_platform/css_flexbox_1/data/align-items-004.json index ee43c8268..43b5170f8 100644 --- a/tests/web_platform/css_flexbox_1/data/align-items-004.json +++ b/tests/web_platform/css_flexbox_1/data/align-items-004.json @@ -218,4 +218,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-items-005.json b/tests/web_platform/css_flexbox_1/data/align-items-005.json index 5b7916a9b..db9534b6a 100644 --- a/tests/web_platform/css_flexbox_1/data/align-items-005.json +++ b/tests/web_platform/css_flexbox_1/data/align-items-005.json @@ -58,4 +58,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-items-006.json b/tests/web_platform/css_flexbox_1/data/align-items-006.json index 5f5be2fb0..76ec53154 100644 --- a/tests/web_platform/css_flexbox_1/data/align-items-006.json +++ b/tests/web_platform/css_flexbox_1/data/align-items-006.json @@ -102,4 +102,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-self-001.json b/tests/web_platform/css_flexbox_1/data/align-self-001.json index 7b4371af9..fe0621587 100644 --- a/tests/web_platform/css_flexbox_1/data/align-self-001.json +++ b/tests/web_platform/css_flexbox_1/data/align-self-001.json @@ -85,4 +85,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-self-002.json b/tests/web_platform/css_flexbox_1/data/align-self-002.json index adc3853e3..4262d6bf8 100644 --- a/tests/web_platform/css_flexbox_1/data/align-self-002.json +++ b/tests/web_platform/css_flexbox_1/data/align-self-002.json @@ -85,4 +85,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-self-003.json b/tests/web_platform/css_flexbox_1/data/align-self-003.json index bf0db4a43..ad67b9050 100644 --- a/tests/web_platform/css_flexbox_1/data/align-self-003.json +++ b/tests/web_platform/css_flexbox_1/data/align-self-003.json @@ -96,4 +96,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-self-004.json b/tests/web_platform/css_flexbox_1/data/align-self-004.json index 780a8ca4c..c943c434d 100644 --- a/tests/web_platform/css_flexbox_1/data/align-self-004.json +++ b/tests/web_platform/css_flexbox_1/data/align-self-004.json @@ -71,4 +71,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-self-005.json b/tests/web_platform/css_flexbox_1/data/align-self-005.json index 77ea42377..198ccdad7 100644 --- a/tests/web_platform/css_flexbox_1/data/align-self-005.json +++ b/tests/web_platform/css_flexbox_1/data/align-self-005.json @@ -86,4 +86,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-self-006.json b/tests/web_platform/css_flexbox_1/data/align-self-006.json index 87031ae66..9ab18bebe 100644 --- a/tests/web_platform/css_flexbox_1/data/align-self-006.json +++ b/tests/web_platform/css_flexbox_1/data/align-self-006.json @@ -144,4 +144,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-self-007.json b/tests/web_platform/css_flexbox_1/data/align-self-007.json index 42ea5e13c..6560d6700 100644 --- a/tests/web_platform/css_flexbox_1/data/align-self-007.json +++ b/tests/web_platform/css_flexbox_1/data/align-self-007.json @@ -87,4 +87,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-self-008.json b/tests/web_platform/css_flexbox_1/data/align-self-008.json index 04effda5a..27bbda9f4 100644 --- a/tests/web_platform/css_flexbox_1/data/align-self-008.json +++ b/tests/web_platform/css_flexbox_1/data/align-self-008.json @@ -86,4 +86,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-self-009.json b/tests/web_platform/css_flexbox_1/data/align-self-009.json index 7a66520d4..2625d094d 100644 --- a/tests/web_platform/css_flexbox_1/data/align-self-009.json +++ b/tests/web_platform/css_flexbox_1/data/align-self-009.json @@ -97,4 +97,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-self-010.json b/tests/web_platform/css_flexbox_1/data/align-self-010.json index 61c98e138..e76936098 100644 --- a/tests/web_platform/css_flexbox_1/data/align-self-010.json +++ b/tests/web_platform/css_flexbox_1/data/align-self-010.json @@ -145,4 +145,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-self-011.json b/tests/web_platform/css_flexbox_1/data/align-self-011.json index 8b1d3774b..7fbf1c6ca 100644 --- a/tests/web_platform/css_flexbox_1/data/align-self-011.json +++ b/tests/web_platform/css_flexbox_1/data/align-self-011.json @@ -71,4 +71,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-self-012.json b/tests/web_platform/css_flexbox_1/data/align-self-012.json index 97e4e59d5..b086f4331 100644 --- a/tests/web_platform/css_flexbox_1/data/align-self-012.json +++ b/tests/web_platform/css_flexbox_1/data/align-self-012.json @@ -69,4 +69,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/align-self-013.json b/tests/web_platform/css_flexbox_1/data/align-self-013.json index 2c8853e8e..cd851454f 100644 --- a/tests/web_platform/css_flexbox_1/data/align-self-013.json +++ b/tests/web_platform/css_flexbox_1/data/align-self-013.json @@ -83,4 +83,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/auto-margins-001.json b/tests/web_platform/css_flexbox_1/data/auto-margins-001.json index d42f85459..e2e6ee750 100644 --- a/tests/web_platform/css_flexbox_1/data/auto-margins-001.json +++ b/tests/web_platform/css_flexbox_1/data/auto-margins-001.json @@ -319,4 +319,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-box-justify-content.json b/tests/web_platform/css_flexbox_1/data/css-box-justify-content.json index cb4a61daa..7976b3fc8 100644 --- a/tests/web_platform/css_flexbox_1/data/css-box-justify-content.json +++ b/tests/web_platform/css_flexbox_1/data/css-box-justify-content.json @@ -127,4 +127,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-column-reverse-wrap-reverse.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-column-reverse-wrap-reverse.json index b81c73136..4c23a5384 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-column-reverse-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-column-reverse-wrap-reverse.json @@ -511,4 +511,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-column-reverse-wrap.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-column-reverse-wrap.json index 95c0382ae..54e3688a1 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-column-reverse-wrap.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-column-reverse-wrap.json @@ -511,4 +511,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-column-reverse.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-column-reverse.json index e711317ec..32208d71e 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-column-reverse.json @@ -187,4 +187,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-column-wrap-reverse.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-column-wrap-reverse.json index 2a9727d65..d0e77c018 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-column-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-column-wrap-reverse.json @@ -511,4 +511,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-column-wrap.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-column-wrap.json index ad4d8134a..9b4ec1461 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-column-wrap.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-column-wrap.json @@ -511,4 +511,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-column.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-column.json index 76bdb190c..47e280d70 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-column.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-column.json @@ -187,4 +187,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-height-animation-stretch.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-height-animation-stretch.json index 3e2d70a07..462015204 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-height-animation-stretch.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-height-animation-stretch.json @@ -121,4 +121,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-img-expand-evenly.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-img-expand-evenly.json index 19fd2e6a7..724777f94 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-img-expand-evenly.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-img-expand-evenly.json @@ -168,4 +168,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-row-reverse-wrap-reverse.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-row-reverse-wrap-reverse.json index ba6d856e4..8163c5107 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-row-reverse-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-row-reverse-wrap-reverse.json @@ -215,4 +215,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-row-reverse-wrap.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-row-reverse-wrap.json index b71c1979f..02c8e13f6 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-row-reverse-wrap.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-row-reverse-wrap.json @@ -215,4 +215,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-row-reverse.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-row-reverse.json index 408a4be1e..4e3b2bc41 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-row-reverse.json @@ -157,4 +157,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-row-wrap-reverse.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-row-wrap-reverse.json index 4722493f1..c853995f0 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-row-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-row-wrap-reverse.json @@ -215,4 +215,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-row-wrap.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-row-wrap.json index ab443c814..8f8f76666 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-row-wrap.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-row-wrap.json @@ -215,4 +215,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-row.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-row.json index 66f60207c..cb73c72e6 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-row.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-row.json @@ -157,4 +157,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/css-flexbox-test1.json b/tests/web_platform/css_flexbox_1/data/css-flexbox-test1.json index 9253d377a..8a05fc73c 100644 --- a/tests/web_platform/css_flexbox_1/data/css-flexbox-test1.json +++ b/tests/web_platform/css_flexbox_1/data/css-flexbox-test1.json @@ -153,4 +153,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/display-flex-001.json b/tests/web_platform/css_flexbox_1/data/display-flex-001.json index 06920da6b..39ab8f80d 100644 --- a/tests/web_platform/css_flexbox_1/data/display-flex-001.json +++ b/tests/web_platform/css_flexbox_1/data/display-flex-001.json @@ -47,4 +47,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/display_flex_exist.json b/tests/web_platform/css_flexbox_1/data/display_flex_exist.json index 328932ae9..c362cc20a 100644 --- a/tests/web_platform/css_flexbox_1/data/display_flex_exist.json +++ b/tests/web_platform/css_flexbox_1/data/display_flex_exist.json @@ -41,4 +41,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/display_inline-flex_exist.json b/tests/web_platform/css_flexbox_1/data/display_inline-flex_exist.json index 558705992..f45efd2cb 100644 --- a/tests/web_platform/css_flexbox_1/data/display_inline-flex_exist.json +++ b/tests/web_platform/css_flexbox_1/data/display_inline-flex_exist.json @@ -41,4 +41,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-001.json b/tests/web_platform/css_flexbox_1/data/flex-001.json index 877ca8499..0afb23f8d 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-001.json +++ b/tests/web_platform/css_flexbox_1/data/flex-001.json @@ -52,4 +52,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-002.json b/tests/web_platform/css_flexbox_1/data/flex-002.json index 9611c7419..16f5606b9 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-002.json +++ b/tests/web_platform/css_flexbox_1/data/flex-002.json @@ -72,4 +72,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-003.json b/tests/web_platform/css_flexbox_1/data/flex-003.json index ceb2b2b4b..b1d03837b 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-003.json +++ b/tests/web_platform/css_flexbox_1/data/flex-003.json @@ -75,4 +75,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-004.json b/tests/web_platform/css_flexbox_1/data/flex-004.json index a74c89a10..53780021d 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-004.json +++ b/tests/web_platform/css_flexbox_1/data/flex-004.json @@ -75,4 +75,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-align-items-center.json b/tests/web_platform/css_flexbox_1/data/flex-align-items-center.json index eaabd60a9..ce9e900b6 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-align-items-center.json +++ b/tests/web_platform/css_flexbox_1/data/flex-align-items-center.json @@ -257,4 +257,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-column-001.json b/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-column-001.json index f39f6d09b..51f42e157 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-column-001.json +++ b/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-column-001.json @@ -51,4 +51,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-column-002.json b/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-column-002.json index ca2f68704..03ea0df30 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-column-002.json +++ b/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-column-002.json @@ -52,4 +52,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-column-003.json b/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-column-003.json index ea01e23a6..9f942a162 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-column-003.json +++ b/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-column-003.json @@ -51,4 +51,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-row-001.json b/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-row-001.json index 05607c475..ffae39fb8 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-row-001.json +++ b/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-row-001.json @@ -50,4 +50,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-row-002.json b/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-row-002.json index f16140b88..d319f212f 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-row-002.json +++ b/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-row-002.json @@ -50,4 +50,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-row-003.json b/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-row-003.json index 39dbd4d8b..4a7bfe530 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-row-003.json +++ b/tests/web_platform/css_flexbox_1/data/flex-aspect-ratio-img-row-003.json @@ -49,4 +49,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-basis-001.json b/tests/web_platform/css_flexbox_1/data/flex-basis-001.json index de93d2a27..5b71b42a7 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-basis-001.json +++ b/tests/web_platform/css_flexbox_1/data/flex-basis-001.json @@ -49,4 +49,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-basis-002.json b/tests/web_platform/css_flexbox_1/data/flex-basis-002.json index f23152a31..c10d3b73d 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-basis-002.json +++ b/tests/web_platform/css_flexbox_1/data/flex-basis-002.json @@ -60,4 +60,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-basis-003.json b/tests/web_platform/css_flexbox_1/data/flex-basis-003.json index d265aecfb..de09cf2db 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-basis-003.json +++ b/tests/web_platform/css_flexbox_1/data/flex-basis-003.json @@ -59,4 +59,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-basis-004.json b/tests/web_platform/css_flexbox_1/data/flex-basis-004.json index 6f9bfb104..444e7085a 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-basis-004.json +++ b/tests/web_platform/css_flexbox_1/data/flex-basis-004.json @@ -61,4 +61,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-basis-005.json b/tests/web_platform/css_flexbox_1/data/flex-basis-005.json index 0090df6df..6c68e1b28 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-basis-005.json +++ b/tests/web_platform/css_flexbox_1/data/flex-basis-005.json @@ -40,4 +40,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-basis-006.json b/tests/web_platform/css_flexbox_1/data/flex-basis-006.json index f7549425e..af28d7971 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-basis-006.json +++ b/tests/web_platform/css_flexbox_1/data/flex-basis-006.json @@ -40,4 +40,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-basis-007.json b/tests/web_platform/css_flexbox_1/data/flex-basis-007.json index 6f7ffc15c..32a354b1a 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-basis-007.json +++ b/tests/web_platform/css_flexbox_1/data/flex-basis-007.json @@ -50,4 +50,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-basis-008.json b/tests/web_platform/css_flexbox_1/data/flex-basis-008.json index 2dcaf1907..671f34b58 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-basis-008.json +++ b/tests/web_platform/css_flexbox_1/data/flex-basis-008.json @@ -49,4 +49,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-box-wrap.json b/tests/web_platform/css_flexbox_1/data/flex-box-wrap.json index 47c47ce7d..b3d089440 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-box-wrap.json +++ b/tests/web_platform/css_flexbox_1/data/flex-box-wrap.json @@ -80,4 +80,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-container-margin.json b/tests/web_platform/css_flexbox_1/data/flex-container-margin.json index 0a32a8104..2be42c286 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-container-margin.json +++ b/tests/web_platform/css_flexbox_1/data/flex-container-margin.json @@ -109,4 +109,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-direction-column-reverse.json b/tests/web_platform/css_flexbox_1/data/flex-direction-column-reverse.json index a6bc961d5..920469a7e 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-direction-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flex-direction-column-reverse.json @@ -113,4 +113,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-direction-modify.json b/tests/web_platform/css_flexbox_1/data/flex-direction-modify.json index cf2b8d88c..ef9b703f9 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-direction-modify.json +++ b/tests/web_platform/css_flexbox_1/data/flex-direction-modify.json @@ -173,4 +173,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-direction-row-reverse.json b/tests/web_platform/css_flexbox_1/data/flex-direction-row-reverse.json index 3760a6b09..ad28af80e 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-direction-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flex-direction-row-reverse.json @@ -111,4 +111,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-direction-row-vertical.json b/tests/web_platform/css_flexbox_1/data/flex-direction-row-vertical.json index ca26f5deb..a40e9954e 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-direction-row-vertical.json +++ b/tests/web_platform/css_flexbox_1/data/flex-direction-row-vertical.json @@ -129,4 +129,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-direction-row.json b/tests/web_platform/css_flexbox_1/data/flex-direction-row.json index fdef5b647..1d465aec2 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-direction-row.json +++ b/tests/web_platform/css_flexbox_1/data/flex-direction-row.json @@ -119,4 +119,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-direction-with-element-insert.json b/tests/web_platform/css_flexbox_1/data/flex-direction-with-element-insert.json index bc6f965c7..f0810a688 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-direction-with-element-insert.json +++ b/tests/web_platform/css_flexbox_1/data/flex-direction-with-element-insert.json @@ -695,4 +695,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-direction.json b/tests/web_platform/css_flexbox_1/data/flex-direction.json index 9d18d17e7..985392172 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-direction.json +++ b/tests/web_platform/css_flexbox_1/data/flex-direction.json @@ -561,4 +561,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-direction_column-reverse.json b/tests/web_platform/css_flexbox_1/data/flex-direction_column-reverse.json index d46972591..5e8e04443 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-direction_column-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flex-direction_column-reverse.json @@ -120,4 +120,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-direction_column.json b/tests/web_platform/css_flexbox_1/data/flex-direction_column.json index 786cc0666..5f921a1d1 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-direction_column.json +++ b/tests/web_platform/css_flexbox_1/data/flex-direction_column.json @@ -120,4 +120,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-direction_row-reverse.json b/tests/web_platform/css_flexbox_1/data/flex-direction_row-reverse.json index 9a6fb1be3..5e0aa1ccc 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-direction_row-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flex-direction_row-reverse.json @@ -120,4 +120,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-direction_row.json b/tests/web_platform/css_flexbox_1/data/flex-direction_row.json index 11eef4d51..5b4788181 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-direction_row.json +++ b/tests/web_platform/css_flexbox_1/data/flex-direction_row.json @@ -120,4 +120,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flexitem-childmargin.json b/tests/web_platform/css_flexbox_1/data/flex-flexitem-childmargin.json index c83c270a6..e554c7c4c 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flexitem-childmargin.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flexitem-childmargin.json @@ -138,4 +138,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flexitem-percentage-prescation.json b/tests/web_platform/css_flexbox_1/data/flex-flexitem-percentage-prescation.json index 3c8001e5d..950caf35c 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flexitem-percentage-prescation.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flexitem-percentage-prescation.json @@ -110,4 +110,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flow-001.json b/tests/web_platform/css_flexbox_1/data/flex-flow-001.json index 893240aed..c16f3c857 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flow-001.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flow-001.json @@ -96,4 +96,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flow-002.json b/tests/web_platform/css_flexbox_1/data/flex-flow-002.json index 046b71b5e..349e58ad2 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flow-002.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flow-002.json @@ -97,4 +97,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flow-003.json b/tests/web_platform/css_flexbox_1/data/flex-flow-003.json index f227566d5..81ef6f5f0 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flow-003.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flow-003.json @@ -97,4 +97,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flow-004.json b/tests/web_platform/css_flexbox_1/data/flex-flow-004.json index 3fdaa08d2..ff02f176e 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flow-004.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flow-004.json @@ -96,4 +96,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flow-005.json b/tests/web_platform/css_flexbox_1/data/flex-flow-005.json index 22ef6b34a..6be26e750 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flow-005.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flow-005.json @@ -97,4 +97,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flow-006.json b/tests/web_platform/css_flexbox_1/data/flex-flow-006.json index 639ff0033..2f860ad79 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flow-006.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flow-006.json @@ -97,4 +97,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flow-007.json b/tests/web_platform/css_flexbox_1/data/flex-flow-007.json index 97cf6ab27..f1e6903a5 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flow-007.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flow-007.json @@ -93,4 +93,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flow-008.json b/tests/web_platform/css_flexbox_1/data/flex-flow-008.json index 50ed314f4..b3d3b1379 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flow-008.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flow-008.json @@ -97,4 +97,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flow-009.json b/tests/web_platform/css_flexbox_1/data/flex-flow-009.json index 2bf9758dd..22d95bc4d 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flow-009.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flow-009.json @@ -97,4 +97,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flow-010.json b/tests/web_platform/css_flexbox_1/data/flex-flow-010.json index 9db7b4dc7..2cf7cdaf6 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flow-010.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flow-010.json @@ -93,4 +93,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flow-011.json b/tests/web_platform/css_flexbox_1/data/flex-flow-011.json index 2f63fb6c5..6ca86dadb 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flow-011.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flow-011.json @@ -97,4 +97,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-flow-012.json b/tests/web_platform/css_flexbox_1/data/flex-flow-012.json index 9eb87abbe..734a743cd 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-flow-012.json +++ b/tests/web_platform/css_flexbox_1/data/flex-flow-012.json @@ -97,4 +97,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-grow-001.json b/tests/web_platform/css_flexbox_1/data/flex-grow-001.json index d47440786..5f3ca8b5c 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-grow-001.json +++ b/tests/web_platform/css_flexbox_1/data/flex-grow-001.json @@ -78,4 +78,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-grow-002.json b/tests/web_platform/css_flexbox_1/data/flex-grow-002.json index 654cb0b8f..fa83f38ee 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-grow-002.json +++ b/tests/web_platform/css_flexbox_1/data/flex-grow-002.json @@ -72,4 +72,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-grow-003.json b/tests/web_platform/css_flexbox_1/data/flex-grow-003.json index 3d77e39f8..651d87ad6 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-grow-003.json +++ b/tests/web_platform/css_flexbox_1/data/flex-grow-003.json @@ -61,4 +61,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-grow-004.json b/tests/web_platform/css_flexbox_1/data/flex-grow-004.json index c69de8f9a..cd846df43 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-grow-004.json +++ b/tests/web_platform/css_flexbox_1/data/flex-grow-004.json @@ -62,4 +62,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-grow-005.json b/tests/web_platform/css_flexbox_1/data/flex-grow-005.json index de3d0cbc4..e8c722ab8 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-grow-005.json +++ b/tests/web_platform/css_flexbox_1/data/flex-grow-005.json @@ -62,4 +62,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-grow-006.json b/tests/web_platform/css_flexbox_1/data/flex-grow-006.json index c03a52eb2..152a52001 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-grow-006.json +++ b/tests/web_platform/css_flexbox_1/data/flex-grow-006.json @@ -63,4 +63,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-grow-007.json b/tests/web_platform/css_flexbox_1/data/flex-grow-007.json index 12300c82e..dfef5f17f 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-grow-007.json +++ b/tests/web_platform/css_flexbox_1/data/flex-grow-007.json @@ -139,4 +139,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-items-flexibility.json b/tests/web_platform/css_flexbox_1/data/flex-items-flexibility.json index b6046bf7f..411a621b6 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-items-flexibility.json +++ b/tests/web_platform/css_flexbox_1/data/flex-items-flexibility.json @@ -203,4 +203,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-margin-no-collapse.json b/tests/web_platform/css_flexbox_1/data/flex-margin-no-collapse.json index 4dbdc6b50..46be771ec 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-margin-no-collapse.json +++ b/tests/web_platform/css_flexbox_1/data/flex-margin-no-collapse.json @@ -80,4 +80,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-001.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-001.json index 3f2530af2..1ed1a8625 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-001.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-001.json @@ -67,4 +67,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-002.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-002.json index d07476dcd..b99526c2e 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-002.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-002.json @@ -61,4 +61,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-003.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-003.json index c3f6ad160..4220565a3 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-003.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-003.json @@ -68,4 +68,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-004.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-004.json index 46be8e691..4fb625ffe 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-004.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-004.json @@ -45,4 +45,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-005.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-005.json index 7562163b9..fc098a4ca 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-005.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-005.json @@ -47,4 +47,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-006.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-006.json index 7562163b9..fc098a4ca 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-006.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-006.json @@ -47,4 +47,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-007.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-007.json index 0be6bbcbd..70c4237ba 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-007.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-007.json @@ -47,4 +47,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-008.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-008.json index 0be6bbcbd..70c4237ba 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-008.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-height-flex-items-008.json @@ -47,4 +47,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-001.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-001.json index b9cd1ed92..b75d5d784 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-001.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-001.json @@ -60,4 +60,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-002.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-002.json index 083ea0a86..d0ad39488 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-002.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-002.json @@ -59,4 +59,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-003.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-003.json index 7b1a6b1b0..16aae3213 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-003.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-003.json @@ -61,4 +61,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-004.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-004.json index 641835331..80ae736eb 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-004.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-004.json @@ -43,4 +43,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-005.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-005.json index 7643e6cef..47800858b 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-005.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-005.json @@ -45,4 +45,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-006.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-006.json index 7643e6cef..47800858b 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-006.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-006.json @@ -45,4 +45,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-007.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-007.json index f51095027..dbf5c4136 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-007.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-007.json @@ -45,4 +45,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-008.json b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-008.json index f51095027..dbf5c4136 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-008.json +++ b/tests/web_platform/css_flexbox_1/data/flex-minimum-width-flex-items-008.json @@ -45,4 +45,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-order.json b/tests/web_platform/css_flexbox_1/data/flex-order.json index ce9fa62c6..6d5d06601 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-order.json +++ b/tests/web_platform/css_flexbox_1/data/flex-order.json @@ -86,4 +86,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-shrink-001.json b/tests/web_platform/css_flexbox_1/data/flex-shrink-001.json index 92bf7139a..917de0985 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-shrink-001.json +++ b/tests/web_platform/css_flexbox_1/data/flex-shrink-001.json @@ -61,4 +61,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-shrink-002.json b/tests/web_platform/css_flexbox_1/data/flex-shrink-002.json index 0cfab6b71..cb0f0ebcc 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-shrink-002.json +++ b/tests/web_platform/css_flexbox_1/data/flex-shrink-002.json @@ -59,4 +59,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-shrink-003.json b/tests/web_platform/css_flexbox_1/data/flex-shrink-003.json index 9f6ee074e..7ffbf8de9 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-shrink-003.json +++ b/tests/web_platform/css_flexbox_1/data/flex-shrink-003.json @@ -60,4 +60,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-shrink-004.json b/tests/web_platform/css_flexbox_1/data/flex-shrink-004.json index df30b8a63..f0d7f0ab5 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-shrink-004.json +++ b/tests/web_platform/css_flexbox_1/data/flex-shrink-004.json @@ -63,4 +63,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-shrink-005.json b/tests/web_platform/css_flexbox_1/data/flex-shrink-005.json index 76c679d9a..145c4e023 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-shrink-005.json +++ b/tests/web_platform/css_flexbox_1/data/flex-shrink-005.json @@ -61,4 +61,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-shrink-006.json b/tests/web_platform/css_flexbox_1/data/flex-shrink-006.json index 6da5d1293..a582342d6 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-shrink-006.json +++ b/tests/web_platform/css_flexbox_1/data/flex-shrink-006.json @@ -71,4 +71,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-shrink-007.json b/tests/web_platform/css_flexbox_1/data/flex-shrink-007.json index b2062c120..f5b6093ec 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-shrink-007.json +++ b/tests/web_platform/css_flexbox_1/data/flex-shrink-007.json @@ -60,4 +60,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-shrink-008.json b/tests/web_platform/css_flexbox_1/data/flex-shrink-008.json index 3d0f3942a..6b805ecb9 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-shrink-008.json +++ b/tests/web_platform/css_flexbox_1/data/flex-shrink-008.json @@ -139,4 +139,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-vertical-align-effect.json b/tests/web_platform/css_flexbox_1/data/flex-vertical-align-effect.json index 7ee7ec88e..324f6b0ae 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-vertical-align-effect.json +++ b/tests/web_platform/css_flexbox_1/data/flex-vertical-align-effect.json @@ -56,4 +56,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-wrap-001.json b/tests/web_platform/css_flexbox_1/data/flex-wrap-001.json index cd673c139..7397ff08c 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-wrap-001.json +++ b/tests/web_platform/css_flexbox_1/data/flex-wrap-001.json @@ -67,4 +67,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-wrap_nowrap.json b/tests/web_platform/css_flexbox_1/data/flex-wrap_nowrap.json index 2aeeda17f..8c6443586 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-wrap_nowrap.json +++ b/tests/web_platform/css_flexbox_1/data/flex-wrap_nowrap.json @@ -119,4 +119,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-wrap_wrap-reverse.json b/tests/web_platform/css_flexbox_1/data/flex-wrap_wrap-reverse.json index 356cda670..573a6f5e5 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-wrap_wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flex-wrap_wrap-reverse.json @@ -119,4 +119,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flex-wrap_wrap.json b/tests/web_platform/css_flexbox_1/data/flex-wrap_wrap.json index 57aae1b9a..6107b667c 100644 --- a/tests/web_platform/css_flexbox_1/data/flex-wrap_wrap.json +++ b/tests/web_platform/css_flexbox_1/data/flex-wrap_wrap.json @@ -119,4 +119,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-column-reverse.json b/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-column-reverse.json index 253f315db..94b6a8e24 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-column-reverse.json @@ -456,4 +456,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-column.json b/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-column.json index 942c7f33c..9248b6469 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-column.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-column.json @@ -456,4 +456,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-default.json b/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-default.json index b64fd7a15..3e2443df5 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-default.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-default.json @@ -455,4 +455,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-row-reverse.json b/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-row-reverse.json index 9ad45a8a5..ed4e7d850 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-row-reverse.json @@ -456,4 +456,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-row.json b/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-row.json index 4b643150a..02d00fbb6 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-row.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox-flex-direction-row.json @@ -456,4 +456,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-default.json b/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-default.json index 18474824b..1492cdee4 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-default.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-default.json @@ -73,4 +73,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-flexing.json b/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-flexing.json index 4fddc789e..28644c158 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-flexing.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-flexing.json @@ -83,4 +83,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-nowrap.json b/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-nowrap.json index d2deb6eb4..a73bd506a 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-nowrap.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-nowrap.json @@ -74,4 +74,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-wrap-reverse.json b/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-wrap-reverse.json index ca1ac6e4d..61dab899b 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-wrap-reverse.json @@ -455,4 +455,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-wrap.json b/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-wrap.json index 3197ccc75..9007202fd 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-wrap.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox-flex-wrap-wrap.json @@ -455,4 +455,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox-order-from-lowest.json b/tests/web_platform/css_flexbox_1/data/flexbox-order-from-lowest.json index be9d5570c..318c61f41 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox-order-from-lowest.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox-order-from-lowest.json @@ -80,4 +80,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox-order-only-flexitems.json b/tests/web_platform/css_flexbox_1/data/flexbox-order-only-flexitems.json index 3af944983..c33154b85 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox-order-only-flexitems.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox-order-only-flexitems.json @@ -62,4 +62,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_absolute-atomic.json b/tests/web_platform/css_flexbox_1/data/flexbox_absolute-atomic.json index c75e0d8b7..5731f4ccb 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_absolute-atomic.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_absolute-atomic.json @@ -120,4 +120,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-center.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-center.json index 6f2cb8ea9..237fca4aa 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-center.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-center.json @@ -154,4 +154,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-flexend.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-flexend.json index 6d5d5a6df..4c7e80909 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-flexend.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-flexend.json @@ -154,4 +154,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-flexstart.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-flexstart.json index f2198f1be..ca7d3d8c5 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-flexstart.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-flexstart.json @@ -154,4 +154,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-spacearound.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-spacearound.json index 20ab352d1..8ada229da 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-spacearound.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-spacearound.json @@ -154,4 +154,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-spacebetween.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-spacebetween.json index da3ae3417..a61b86c07 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-spacebetween.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-spacebetween.json @@ -154,4 +154,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-stretch-2.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-stretch-2.json index 725646e69..84157d09e 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-stretch-2.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-stretch-2.json @@ -151,4 +151,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-stretch.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-stretch.json index b51e0ed28..3e114c4dd 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-content-stretch.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-content-stretch.json @@ -154,4 +154,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-baseline.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-baseline.json index b3fa2d24b..e112e529d 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-baseline.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-baseline.json @@ -153,4 +153,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-center-2.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-center-2.json index 69b3f3a6b..67b7147fe 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-center-2.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-center-2.json @@ -153,4 +153,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-center.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-center.json index c76d10657..3cb9a67aa 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-center.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-center.json @@ -153,4 +153,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexend-2.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexend-2.json index cf2388479..092109dab 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexend-2.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexend-2.json @@ -152,4 +152,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexend.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexend.json index 568c13e19..adb861553 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexend.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexend.json @@ -150,4 +150,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexstart-2.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexstart-2.json index 221aa504d..6013b22d8 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexstart-2.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexstart-2.json @@ -152,4 +152,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexstart.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexstart.json index 0c28310ca..9cdd51329 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexstart.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-flexstart.json @@ -150,4 +150,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-stretch-2.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-stretch-2.json index 35a733083..1f153ba17 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-stretch-2.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-stretch-2.json @@ -86,4 +86,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-stretch.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-stretch.json index 7d7eddcd6..a254a5895 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-items-stretch.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-items-stretch.json @@ -150,4 +150,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-self-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-self-auto.json index 6a73447a3..ef6e47c6a 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-self-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-self-auto.json @@ -151,4 +151,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-self-baseline.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-self-baseline.json index fa04e7a24..595f665ce 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-self-baseline.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-self-baseline.json @@ -154,4 +154,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-self-center.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-self-center.json index acd670c7b..cc264d5e4 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-self-center.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-self-center.json @@ -152,4 +152,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-self-flexend.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-self-flexend.json index a50ae7653..e1ba79ef8 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-self-flexend.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-self-flexend.json @@ -151,4 +151,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-self-flexstart.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-self-flexstart.json index 14edfd07a..bfe142e90 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-self-flexstart.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-self-flexstart.json @@ -151,4 +151,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_align-self-stretch.json b/tests/web_platform/css_flexbox_1/data/flexbox_align-self-stretch.json index a136dbc4c..9840938f2 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_align-self-stretch.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_align-self-stretch.json @@ -154,4 +154,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_block.json b/tests/web_platform/css_flexbox_1/data/flexbox_block.json index 7fe3dacc8..a0ad406fb 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_block.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_block.json @@ -41,4 +41,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_box-clear.json b/tests/web_platform/css_flexbox_1/data/flexbox_box-clear.json index b272e6af2..37e4b8957 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_box-clear.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_box-clear.json @@ -93,4 +93,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_columns-flexitems-2.json b/tests/web_platform/css_flexbox_1/data/flexbox_columns-flexitems-2.json index 915bc1d41..c72d8ba41 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_columns-flexitems-2.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_columns-flexitems-2.json @@ -71,4 +71,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_columns-flexitems.json b/tests/web_platform/css_flexbox_1/data/flexbox_columns-flexitems.json index 8e624631b..10c647f50 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_columns-flexitems.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_columns-flexitems.json @@ -71,4 +71,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_columns.json b/tests/web_platform/css_flexbox_1/data/flexbox_columns.json index 57be5c51a..0c1d0b5ee 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_columns.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_columns.json @@ -110,4 +110,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_direction-column-reverse.json b/tests/web_platform/css_flexbox_1/data/flexbox_direction-column-reverse.json index 5da04ffff..4e2dc4930 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_direction-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_direction-column-reverse.json @@ -166,4 +166,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_direction-column.json b/tests/web_platform/css_flexbox_1/data/flexbox_direction-column.json index b41f71127..bc8d4b1f8 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_direction-column.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_direction-column.json @@ -166,4 +166,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_direction-row-reverse.json b/tests/web_platform/css_flexbox_1/data/flexbox_direction-row-reverse.json index 68a6da8ff..a075a3afc 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_direction-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_direction-row-reverse.json @@ -108,4 +108,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_display.json b/tests/web_platform/css_flexbox_1/data/flexbox_display.json index 3fb8ffa03..2a1a1768a 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_display.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_display.json @@ -116,4 +116,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_fbfc.json b/tests/web_platform/css_flexbox_1/data/flexbox_fbfc.json index 9cba0c412..e156e4136 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_fbfc.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_fbfc.json @@ -99,4 +99,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_fbfc2.json b/tests/web_platform/css_flexbox_1/data/flexbox_fbfc2.json index f22c6d1b2..f5e95f946 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_fbfc2.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_fbfc2.json @@ -87,4 +87,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_first-line.json b/tests/web_platform/css_flexbox_1/data/flexbox_first-line.json index 2987b27d0..08db02e78 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_first-line.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_first-line.json @@ -393,4 +393,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-0-unitless.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-0-unitless.json index 36c94ce75..e07a38730 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-0-unitless.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-0.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-0.json index 92544b061..52ad6f270 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-0.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-0.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-1-unitless-basis.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-1-unitless-basis.json index 08d9df0d3..9b8559e1c 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-1-unitless-basis.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-1-unitless-basis.json @@ -167,4 +167,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-N-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-N-shrink.json index 93e3a6d52..19d5b4666 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-N-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-N-unitless-basis.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-N-unitless-basis.json index 08d9df0d3..9b8559e1c 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-N-unitless-basis.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-N-unitless-basis.json @@ -167,4 +167,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-N.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-N.json index a179ad13e..7fc3a9a2f 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-N.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-N.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-Npercent-shrink.json index 17b12f170..c0ecbf331 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-Npercent-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-Npercent.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-Npercent.json index 6b601ea98..548eeebe4 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-Npercent.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-Npercent.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-auto-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-auto-shrink.json index 7059f5d33..09d2fb2fe 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-auto-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-auto.json index 81ec60e65..be9f5bd0f 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0-auto.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0.json index 36c94ce75..e07a38730 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-0.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-0-unitless.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-0-unitless.json index aafd07b8a..72945e6d6 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-0-unitless.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-0.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-0.json index 3faa86647..fe9d866a5 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-0.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-0.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-1-unitless-basis.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-1-unitless-basis.json index 08d9df0d3..9b8559e1c 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-1-unitless-basis.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-1-unitless-basis.json @@ -167,4 +167,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-N-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-N-shrink.json index 50fe9e17e..bbc36486d 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-N-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-N-unitless-basis.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-N-unitless-basis.json index 08d9df0d3..9b8559e1c 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-N-unitless-basis.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-N-unitless-basis.json @@ -167,4 +167,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-N.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-N.json index bedb0e5eb..b8774bafa 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-N.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-N.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-Npercent-shrink.json index 44d2970f8..9717d6183 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-Npercent-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-Npercent.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-Npercent.json index e566d6d2e..3c759a9f7 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-Npercent.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-Npercent.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-auto-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-auto-shrink.json index a2cfb8244..4d0b4532f 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-auto-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-auto.json index 031805d61..ec1af26bd 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1-auto.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1.json index aafd07b8a..72945e6d6 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-1.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-0-unitless.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-0-unitless.json index b098b60f9..7a4705afa 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-0-unitless.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-0.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-0.json index 3d708e995..3ec717d0d 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-0.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-0.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-N-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-N-shrink.json index e720ad29d..8ecb3595c 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-N-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-N.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-N.json index d0a130e2d..cf8724044 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-N.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-N.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-Npercent-shrink.json index 5ec5b74e2..ff3799e49 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-Npercent-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-Npercent.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-Npercent.json index 9ba077621..ab9d23f57 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-Npercent.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-Npercent.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-auto-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-auto-shrink.json index c113ef6c7..f75cbb257 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-auto-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-auto.json index 87da3c9e0..b3928156c 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N-auto.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N.json index b098b60f9..7a4705afa 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-N.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-auto.json index 3313f3665..676d385e4 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-0-auto.json @@ -341,4 +341,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-0-unitless.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-0-unitless.json index 7c810b3bc..61c413595 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-0-unitless.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-0.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-0.json index d7ec0c45f..04c5afbb9 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-0.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-0.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-N-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-N-shrink.json index 588f86583..799158f02 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-N-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-N.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-N.json index 8d3610c5f..4795e9a83 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-N.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-N.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-Npercent-shrink.json index a5b294a96..a0006b838 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-Npercent-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-Npercent.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-Npercent.json index f2fd2b11e..af2cb4143 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-Npercent.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-Npercent.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-auto-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-auto-shrink.json index 09393cbb2..d2a46c7cd 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-auto-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-auto.json index b173224f6..16324f427 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0-auto.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0.json index 7c810b3bc..61c413595 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-0.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-0-unitless.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-0-unitless.json index c57947a43..ff7ca423e 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-0-unitless.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-0.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-0.json index 5755c6152..0aec8933d 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-0.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-0.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-N-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-N-shrink.json index 9368ac065..5f6ee2426 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-N-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-N.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-N.json index 5e4d4f902..a34388b3c 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-N.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-N.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-Npercent-shrink.json index 0d955ef77..9356344f0 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-Npercent-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-Npercent.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-Npercent.json index 575d63c98..b72215be0 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-Npercent.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-Npercent.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-auto-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-auto-shrink.json index 4545a8b7c..971604d3b 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-auto-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-auto.json index fc725a5f6..985ccc91a 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1-auto.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1.json index c57947a43..ff7ca423e 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-1.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-0-unitless.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-0-unitless.json index cd7896b54..ee7ec7874 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-0-unitless.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-0.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-0.json index fb434cfa9..b2bbd25db 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-0.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-0.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-N-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-N-shrink.json index a98d9add9..3e192ccc9 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-N-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-N.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-N.json index 49961611c..87defc689 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-N.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-N.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-Npercent-shrink.json index 5980740ba..bc7a25d37 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-Npercent-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-Npercent.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-Npercent.json index 44f55c8e0..7944e72c9 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-Npercent.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-Npercent.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-auto-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-auto-shrink.json index 98b91e949..273589cb3 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-auto-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-auto.json index b42fbbdcf..5897b7a70 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N-auto.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N.json index cd7896b54..ee7ec7874 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-1-N.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-0-unitless.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-0-unitless.json index 6d1b8c860..4fd2a9daf 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-0-unitless.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-0.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-0.json index 6d1b8c860..4fd2a9daf 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-0.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-0.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-N-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-N-shrink.json index 0ebcf3cb1..26986673e 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-N-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-N.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-N.json index 138d6dc23..b5ea2fc64 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-N.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-N.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-Npercent-shrink.json index d2d0187ff..f5237c61b 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-Npercent-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-Npercent.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-Npercent.json index 19fcd4d25..b666fa2c4 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-Npercent.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-Npercent.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-auto-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-auto-shrink.json index f77234175..6f9a232ff 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-auto-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-auto.json index e2387e558..5325f36bf 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0-auto.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0.json index 3e3f1f0ce..e503601a3 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-0.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-0-unitless.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-0-unitless.json index d4df958fd..934c518ef 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-0-unitless.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-0.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-0.json index a40ea161e..b6f38547d 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-0.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-0.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-N-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-N-shrink.json index b41ef074e..0ea487601 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-N-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-N.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-N.json index 123fe5d85..fff20c8c8 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-N.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-N.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-Npercent-shrink.json index 1d77a1ad7..0d857a6d8 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-Npercent-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-Npercent.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-Npercent.json index 08174d189..ceaedabf7 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-Npercent.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-Npercent.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-auto-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-auto-shrink.json index e23679be7..c9ecde48c 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-auto-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-auto.json index 39cb3acf9..09fb6f65a 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1-auto.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1.json index d4df958fd..934c518ef 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-1.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-0-unitless.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-0-unitless.json index eea910b24..d3703cd0d 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-0-unitless.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-0.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-0.json index 106f7692d..c8c482839 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-0.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-0.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-N-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-N-shrink.json index 53fa2ed42..55945d4f1 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-N-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-N.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-N.json index 5afdb48ed..6e7a9e237 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-N.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-N.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-Npercent-shrink.json index 0aa475003..82016ff55 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-Npercent-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-Npercent.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-Npercent.json index 87f280c04..2dbd700ba 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-Npercent.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-Npercent.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-auto-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-auto-shrink.json index 413486880..273e0ca44 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-auto-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-auto.json index 55729e9a5..0699e8692 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N-auto.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N.json index eea910b24..d3703cd0d 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-N-N.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-auto.json index 9982c738e..c2715766a 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-auto.json @@ -341,4 +341,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-basis-shrink.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-basis-shrink.json index a3e5c3a94..fa8cf6d01 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-basis-shrink.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-basis-shrink.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-basis.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-basis.json index 2bb54f45b..f14458120 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-basis.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-basis.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-formatting-interop.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-formatting-interop.json index 287302ff6..fa446b287 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-formatting-interop.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-formatting-interop.json @@ -107,4 +107,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-initial-2.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-initial-2.json index 11076f534..52288f569 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-initial-2.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-initial-2.json @@ -341,4 +341,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-initial.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-initial.json index 3a9ec1971..eb7a97e33 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-initial.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-initial.json @@ -341,4 +341,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-mixed-basis-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-mixed-basis-auto.json index cc9cba9b0..762802944 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-mixed-basis-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-mixed-basis-auto.json @@ -139,4 +139,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-mixed-basis.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-mixed-basis.json index 16b5d7304..ad34e8dfe 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-mixed-basis.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-mixed-basis.json @@ -138,4 +138,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-variable-auto-basis.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-variable-auto-basis.json index 45917fe0d..49359f5a6 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-variable-auto-basis.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-variable-auto-basis.json @@ -149,4 +149,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-variable-zero-basis.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-variable-zero-basis.json index 12c426f21..3f7d73c20 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-variable-zero-basis.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural-variable-zero-basis.json @@ -149,4 +149,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural.json index 1a1986b46..2afa517d6 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-natural.json @@ -341,4 +341,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flex-none.json b/tests/web_platform/css_flexbox_1/data/flexbox_flex-none.json index 7c7ac1f49..e697b8b9f 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flex-none.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flex-none.json @@ -341,4 +341,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-reverse-wrap-reverse.json b/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-reverse-wrap-reverse.json index 799f86ecf..7756a55b6 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-reverse-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-reverse-wrap-reverse.json @@ -173,4 +173,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-reverse-wrap.json b/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-reverse-wrap.json index 3363e8c0d..076c7abb8 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-reverse-wrap.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-reverse-wrap.json @@ -173,4 +173,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-wrap-reverse.json b/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-wrap-reverse.json index 5af9c6bc9..b3b2a8604 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-wrap-reverse.json @@ -169,4 +169,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-wrap.json b/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-wrap.json index 97bff5569..cadd91d30 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-wrap.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flow-column-wrap.json @@ -169,4 +169,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flow-row-wrap-reverse.json b/tests/web_platform/css_flexbox_1/data/flexbox_flow-row-wrap-reverse.json index db9410b9e..523a55630 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flow-row-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flow-row-wrap-reverse.json @@ -168,4 +168,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_flow-row-wrap.json b/tests/web_platform/css_flexbox_1/data/flexbox_flow-row-wrap.json index 8504000e3..6d0f8392b 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_flow-row-wrap.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_flow-row-wrap.json @@ -168,4 +168,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_generated-flex.json b/tests/web_platform/css_flexbox_1/data/flexbox_generated-flex.json index c27cded38..9dd56aaed 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_generated-flex.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_generated-flex.json @@ -52,4 +52,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_generated-nested-flex.json b/tests/web_platform/css_flexbox_1/data/flexbox_generated-nested-flex.json index fdb5e5703..3e8c07654 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_generated-nested-flex.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_generated-nested-flex.json @@ -51,4 +51,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_generated.json b/tests/web_platform/css_flexbox_1/data/flexbox_generated.json index 17e675573..40bc111b7 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_generated.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_generated.json @@ -66,4 +66,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_inline-abspos.json b/tests/web_platform/css_flexbox_1/data/flexbox_inline-abspos.json index 330ea170f..bd7e55df3 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_inline-abspos.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_inline-abspos.json @@ -42,4 +42,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_inline-float.json b/tests/web_platform/css_flexbox_1/data/flexbox_inline-float.json index 12144b50d..64890ae3b 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_inline-float.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_inline-float.json @@ -42,4 +42,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_inline.json b/tests/web_platform/css_flexbox_1/data/flexbox_inline.json index c2963c47b..41179060b 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_inline.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_inline.json @@ -41,4 +41,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_item-bottom-float.json b/tests/web_platform/css_flexbox_1/data/flexbox_item-bottom-float.json index 09762b371..ac353d052 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_item-bottom-float.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_item-bottom-float.json @@ -134,4 +134,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_item-clear.json b/tests/web_platform/css_flexbox_1/data/flexbox_item-clear.json index 4af58504b..9a138735d 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_item-clear.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_item-clear.json @@ -83,4 +83,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_item-float.json b/tests/web_platform/css_flexbox_1/data/flexbox_item-float.json index 0830df7a5..e76586a26 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_item-float.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_item-float.json @@ -136,4 +136,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_item-top-float.json b/tests/web_platform/css_flexbox_1/data/flexbox_item-top-float.json index 74fd1db99..d3ab7f11f 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_item-top-float.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_item-top-float.json @@ -133,4 +133,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_item-vertical-align.json b/tests/web_platform/css_flexbox_1/data/flexbox_item-vertical-align.json index c89c9935d..1b57dcca2 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_item-vertical-align.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_item-vertical-align.json @@ -174,4 +174,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-center-overflow.json b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-center-overflow.json index c5094deda..e12a62606 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-center-overflow.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-center-overflow.json @@ -158,4 +158,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-center.json b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-center.json index b1e5a9e35..c1cef30c4 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-center.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-center.json @@ -153,4 +153,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-flex-end.json b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-flex-end.json index 0fe105593..d5f2d888d 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-flex-end.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-flex-end.json @@ -153,4 +153,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-flex-start.json b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-flex-start.json index f80206392..03be651b5 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-flex-start.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-flex-start.json @@ -153,4 +153,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacearound-negative.json b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacearound-negative.json index 93a9eb94b..7b7d1e2a6 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacearound-negative.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacearound-negative.json @@ -150,4 +150,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacearound-only.json b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacearound-only.json index 124bbe374..2c6d545d3 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacearound-only.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacearound-only.json @@ -91,4 +91,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacearound.json b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacearound.json index 0314ab1e4..ab294ada7 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacearound.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacearound.json @@ -153,4 +153,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacebetween-negative.json b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacebetween-negative.json index 5a3382a92..f820d9911 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacebetween-negative.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacebetween-negative.json @@ -150,4 +150,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacebetween-only.json b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacebetween-only.json index 5bb89b283..c8d63fd1d 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacebetween-only.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacebetween-only.json @@ -91,4 +91,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacebetween.json b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacebetween.json index d2d58cb1d..0bd1576e0 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacebetween.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_justifycontent-spacebetween.json @@ -153,4 +153,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_margin-auto-overflow-2.json b/tests/web_platform/css_flexbox_1/data/flexbox_margin-auto-overflow-2.json index a22cab1f9..8be11dbcc 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_margin-auto-overflow-2.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_margin-auto-overflow-2.json @@ -120,4 +120,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_margin-auto-overflow.json b/tests/web_platform/css_flexbox_1/data/flexbox_margin-auto-overflow.json index 4543c5493..094d74236 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_margin-auto-overflow.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_margin-auto-overflow.json @@ -120,4 +120,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_margin-auto.json b/tests/web_platform/css_flexbox_1/data/flexbox_margin-auto.json index 03350b7f3..b312ed81d 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_margin-auto.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_margin-auto.json @@ -114,4 +114,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_margin-collapse.json b/tests/web_platform/css_flexbox_1/data/flexbox_margin-collapse.json index 9a08ab688..efa7d8933 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_margin-collapse.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_margin-collapse.json @@ -88,4 +88,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_margin-left-ex.json b/tests/web_platform/css_flexbox_1/data/flexbox_margin-left-ex.json index fb1378bb7..67b3afe5f 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_margin-left-ex.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_margin-left-ex.json @@ -164,4 +164,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_margin.json b/tests/web_platform/css_flexbox_1/data/flexbox_margin.json index 187ad67e1..b9c1e7c52 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_margin.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_margin.json @@ -40,4 +40,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_nested-flex.json b/tests/web_platform/css_flexbox_1/data/flexbox_nested-flex.json index edeb0623c..983731494 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_nested-flex.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_nested-flex.json @@ -82,4 +82,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_object.json b/tests/web_platform/css_flexbox_1/data/flexbox_object.json index 0892b406f..6e6a09222 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_object.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_object.json @@ -89,4 +89,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_order-abspos-space-around.json b/tests/web_platform/css_flexbox_1/data/flexbox_order-abspos-space-around.json index 2488a5f79..c8d3ee534 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_order-abspos-space-around.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_order-abspos-space-around.json @@ -154,4 +154,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_order-box.json b/tests/web_platform/css_flexbox_1/data/flexbox_order-box.json index d8316c2e0..c8a4f5f3e 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_order-box.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_order-box.json @@ -250,4 +250,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_order-noninteger-invalid.json b/tests/web_platform/css_flexbox_1/data/flexbox_order-noninteger-invalid.json index 034267d2c..7f3991d03 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_order-noninteger-invalid.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_order-noninteger-invalid.json @@ -105,4 +105,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_order.json b/tests/web_platform/css_flexbox_1/data/flexbox_order.json index d697b398a..614d9b580 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_order.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_order.json @@ -179,4 +179,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_rowspan-overflow-automatic.json b/tests/web_platform/css_flexbox_1/data/flexbox_rowspan-overflow-automatic.json index e7acdb64f..0bb51511e 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_rowspan-overflow-automatic.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_rowspan-overflow-automatic.json @@ -483,4 +483,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_rowspan-overflow.json b/tests/web_platform/css_flexbox_1/data/flexbox_rowspan-overflow.json index 89240a26b..521d54abd 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_rowspan-overflow.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_rowspan-overflow.json @@ -479,4 +479,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_rowspan.json b/tests/web_platform/css_flexbox_1/data/flexbox_rowspan.json index ea8c41229..17214ac3d 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_rowspan.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_rowspan.json @@ -392,4 +392,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_rtl-direction.json b/tests/web_platform/css_flexbox_1/data/flexbox_rtl-direction.json index 948b8d641..6fb9a6668 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_rtl-direction.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_rtl-direction.json @@ -168,4 +168,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_rtl-flow-reverse.json b/tests/web_platform/css_flexbox_1/data/flexbox_rtl-flow-reverse.json index d0fa92c4e..01ea98398 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_rtl-flow-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_rtl-flow-reverse.json @@ -172,4 +172,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_rtl-flow.json b/tests/web_platform/css_flexbox_1/data/flexbox_rtl-flow.json index aaa38426c..154fc4472 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_rtl-flow.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_rtl-flow.json @@ -172,4 +172,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_rtl-order.json b/tests/web_platform/css_flexbox_1/data/flexbox_rtl-order.json index b51dae808..b249b162b 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_rtl-order.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_rtl-order.json @@ -182,4 +182,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_stf-abspos.json b/tests/web_platform/css_flexbox_1/data/flexbox_stf-abspos.json index efb3950d5..083eecb40 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_stf-abspos.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_stf-abspos.json @@ -153,4 +153,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_stf-float.json b/tests/web_platform/css_flexbox_1/data/flexbox_stf-float.json index 3a9f13b8c..be7a14fb6 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_stf-float.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_stf-float.json @@ -153,4 +153,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_stf-inline-block.json b/tests/web_platform/css_flexbox_1/data/flexbox_stf-inline-block.json index 1fad2ca24..3264137dc 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_stf-inline-block.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_stf-inline-block.json @@ -152,4 +152,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-caption.json b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-caption.json index ac9acb818..6acfb26ba 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-caption.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-caption.json @@ -152,4 +152,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-cell.json b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-cell.json index 544e371ba..32cf3f559 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-cell.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-cell.json @@ -152,4 +152,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-row-group.json b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-row-group.json index 6b98026ab..9ee19bb93 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-row-group.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-row-group.json @@ -152,4 +152,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-row.json b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-row.json index 9e8bae191..b57de8468 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-row.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-row.json @@ -152,4 +152,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-singleline-2.json b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-singleline-2.json index ea3a56241..9b6349dc1 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-singleline-2.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-singleline-2.json @@ -146,4 +146,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-singleline.json b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-singleline.json index 38f8b2399..8048dae78 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-singleline.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table-singleline.json @@ -146,4 +146,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table.json b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table.json index f9f807ee2..4d90bc555 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_stf-table.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_stf-table.json @@ -152,4 +152,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_table-fixed-layout.json b/tests/web_platform/css_flexbox_1/data/flexbox_table-fixed-layout.json index 78d3ca21b..fcebb3755 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_table-fixed-layout.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_table-fixed-layout.json @@ -419,4 +419,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_visibility-collapse-line-wrapping.json b/tests/web_platform/css_flexbox_1/data/flexbox_visibility-collapse-line-wrapping.json index a7d065613..d5f915977 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_visibility-collapse-line-wrapping.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_visibility-collapse-line-wrapping.json @@ -225,4 +225,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_visibility-collapse.json b/tests/web_platform/css_flexbox_1/data/flexbox_visibility-collapse.json index 275a09ca6..8a39ef504 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_visibility-collapse.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_visibility-collapse.json @@ -135,4 +135,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_width-overflow.json b/tests/web_platform/css_flexbox_1/data/flexbox_width-overflow.json index ea2b85f54..13047407d 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_width-overflow.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_width-overflow.json @@ -131,4 +131,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_wrap-long.json b/tests/web_platform/css_flexbox_1/data/flexbox_wrap-long.json index 021a1feb4..e1f06b7f9 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_wrap-long.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_wrap-long.json @@ -167,4 +167,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_wrap-reverse.json b/tests/web_platform/css_flexbox_1/data/flexbox_wrap-reverse.json index c0690cc57..032c2692b 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_wrap-reverse.json @@ -167,4 +167,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_wrap.json b/tests/web_platform/css_flexbox_1/data/flexbox_wrap.json index 23ccc5042..69d6a8108 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_wrap.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_wrap.json @@ -167,4 +167,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.json b/tests/web_platform/css_flexbox_1/data/flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.json index 9c25c5df7..63906a5bf 100644 --- a/tests/web_platform/css_flexbox_1/data/flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.json +++ b/tests/web_platform/css_flexbox_1/data/flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.json @@ -120,4 +120,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/flexible-box-float.json b/tests/web_platform/css_flexbox_1/data/flexible-box-float.json index c00bdfba9..da6756d3a 100644 --- a/tests/web_platform/css_flexbox_1/data/flexible-box-float.json +++ b/tests/web_platform/css_flexbox_1/data/flexible-box-float.json @@ -119,4 +119,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/justify-content-001.json b/tests/web_platform/css_flexbox_1/data/justify-content-001.json index 579e847e9..52815bef7 100644 --- a/tests/web_platform/css_flexbox_1/data/justify-content-001.json +++ b/tests/web_platform/css_flexbox_1/data/justify-content-001.json @@ -57,4 +57,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/justify-content-002.json b/tests/web_platform/css_flexbox_1/data/justify-content-002.json index c76d566e1..d5fa88340 100644 --- a/tests/web_platform/css_flexbox_1/data/justify-content-002.json +++ b/tests/web_platform/css_flexbox_1/data/justify-content-002.json @@ -57,4 +57,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/justify-content-003.json b/tests/web_platform/css_flexbox_1/data/justify-content-003.json index 93309aca0..6481aa338 100644 --- a/tests/web_platform/css_flexbox_1/data/justify-content-003.json +++ b/tests/web_platform/css_flexbox_1/data/justify-content-003.json @@ -57,4 +57,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/justify-content-004.json b/tests/web_platform/css_flexbox_1/data/justify-content-004.json index 79cecd4b1..f2a7e0b21 100644 --- a/tests/web_platform/css_flexbox_1/data/justify-content-004.json +++ b/tests/web_platform/css_flexbox_1/data/justify-content-004.json @@ -57,4 +57,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/justify-content-005.json b/tests/web_platform/css_flexbox_1/data/justify-content-005.json index fd4c0c944..82bf68b58 100644 --- a/tests/web_platform/css_flexbox_1/data/justify-content-005.json +++ b/tests/web_platform/css_flexbox_1/data/justify-content-005.json @@ -57,4 +57,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/justify-content_center.json b/tests/web_platform/css_flexbox_1/data/justify-content_center.json index 1231cda74..e7e9a055c 100644 --- a/tests/web_platform/css_flexbox_1/data/justify-content_center.json +++ b/tests/web_platform/css_flexbox_1/data/justify-content_center.json @@ -117,4 +117,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/justify-content_flex-end.json b/tests/web_platform/css_flexbox_1/data/justify-content_flex-end.json index 2b1629fbc..8a405c9fb 100644 --- a/tests/web_platform/css_flexbox_1/data/justify-content_flex-end.json +++ b/tests/web_platform/css_flexbox_1/data/justify-content_flex-end.json @@ -117,4 +117,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/justify-content_flex-start.json b/tests/web_platform/css_flexbox_1/data/justify-content_flex-start.json index 1a05f1d10..92884035b 100644 --- a/tests/web_platform/css_flexbox_1/data/justify-content_flex-start.json +++ b/tests/web_platform/css_flexbox_1/data/justify-content_flex-start.json @@ -117,4 +117,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/justify-content_space-around.json b/tests/web_platform/css_flexbox_1/data/justify-content_space-around.json index f64569eb6..ce7b3c17e 100644 --- a/tests/web_platform/css_flexbox_1/data/justify-content_space-around.json +++ b/tests/web_platform/css_flexbox_1/data/justify-content_space-around.json @@ -117,4 +117,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/justify-content_space-between.json b/tests/web_platform/css_flexbox_1/data/justify-content_space-between.json index b2bf24bf6..88e991c7d 100644 --- a/tests/web_platform/css_flexbox_1/data/justify-content_space-between.json +++ b/tests/web_platform/css_flexbox_1/data/justify-content_space-between.json @@ -117,4 +117,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/layout-algorithm_algo-cross-line-001.json b/tests/web_platform/css_flexbox_1/data/layout-algorithm_algo-cross-line-001.json index b200ddbff..f8cc5682d 100644 --- a/tests/web_platform/css_flexbox_1/data/layout-algorithm_algo-cross-line-001.json +++ b/tests/web_platform/css_flexbox_1/data/layout-algorithm_algo-cross-line-001.json @@ -83,4 +83,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/layout-algorithm_algo-cross-line-002.json b/tests/web_platform/css_flexbox_1/data/layout-algorithm_algo-cross-line-002.json index 76363a499..ede75d6ed 100644 --- a/tests/web_platform/css_flexbox_1/data/layout-algorithm_algo-cross-line-002.json +++ b/tests/web_platform/css_flexbox_1/data/layout-algorithm_algo-cross-line-002.json @@ -81,4 +81,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/negative-margins-001.json b/tests/web_platform/css_flexbox_1/data/negative-margins-001.json index 779c5040b..634aae382 100644 --- a/tests/web_platform/css_flexbox_1/data/negative-margins-001.json +++ b/tests/web_platform/css_flexbox_1/data/negative-margins-001.json @@ -87,4 +87,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/order-001.json b/tests/web_platform/css_flexbox_1/data/order-001.json index 1984965b9..3361941ae 100644 --- a/tests/web_platform/css_flexbox_1/data/order-001.json +++ b/tests/web_platform/css_flexbox_1/data/order-001.json @@ -49,4 +49,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/order_value.json b/tests/web_platform/css_flexbox_1/data/order_value.json index 3c954097d..b4d34de13 100644 --- a/tests/web_platform/css_flexbox_1/data/order_value.json +++ b/tests/web_platform/css_flexbox_1/data/order_value.json @@ -137,4 +137,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/percentage-heights-000.json b/tests/web_platform/css_flexbox_1/data/percentage-heights-000.json index e59bf3035..13c77e4fe 100644 --- a/tests/web_platform/css_flexbox_1/data/percentage-heights-000.json +++ b/tests/web_platform/css_flexbox_1/data/percentage-heights-000.json @@ -317,4 +317,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/percentage-heights-002.json b/tests/web_platform/css_flexbox_1/data/percentage-heights-002.json index b17b124a8..56750a34d 100644 --- a/tests/web_platform/css_flexbox_1/data/percentage-heights-002.json +++ b/tests/web_platform/css_flexbox_1/data/percentage-heights-002.json @@ -66,4 +66,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/percentage-widths-001.json b/tests/web_platform/css_flexbox_1/data/percentage-widths-001.json index 05b7d70ac..f0da8adf2 100644 --- a/tests/web_platform/css_flexbox_1/data/percentage-widths-001.json +++ b/tests/web_platform/css_flexbox_1/data/percentage-widths-001.json @@ -66,4 +66,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/position-absolute-001.json b/tests/web_platform/css_flexbox_1/data/position-absolute-001.json index e820f1c64..e219dbeae 100644 --- a/tests/web_platform/css_flexbox_1/data/position-absolute-001.json +++ b/tests/web_platform/css_flexbox_1/data/position-absolute-001.json @@ -11314,4 +11314,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/position-absolute-002.json b/tests/web_platform/css_flexbox_1/data/position-absolute-002.json index 6e3066051..f61c1d068 100644 --- a/tests/web_platform/css_flexbox_1/data/position-absolute-002.json +++ b/tests/web_platform/css_flexbox_1/data/position-absolute-002.json @@ -785,4 +785,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/position-absolute-003.json b/tests/web_platform/css_flexbox_1/data/position-absolute-003.json index 5eebabc97..74fa0f1f9 100644 --- a/tests/web_platform/css_flexbox_1/data/position-absolute-003.json +++ b/tests/web_platform/css_flexbox_1/data/position-absolute-003.json @@ -536,4 +536,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/position-absolute-004.json b/tests/web_platform/css_flexbox_1/data/position-absolute-004.json index 71c32fef7..d44516dca 100644 --- a/tests/web_platform/css_flexbox_1/data/position-absolute-004.json +++ b/tests/web_platform/css_flexbox_1/data/position-absolute-004.json @@ -61,4 +61,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/position-absolute-005.json b/tests/web_platform/css_flexbox_1/data/position-absolute-005.json index 33ffc5990..bec4d2cc9 100644 --- a/tests/web_platform/css_flexbox_1/data/position-absolute-005.json +++ b/tests/web_platform/css_flexbox_1/data/position-absolute-005.json @@ -143,4 +143,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-center.json b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-center.json index 1eb3d561d..fc4ae3e4e 100644 --- a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-center.json +++ b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-center.json @@ -207,4 +207,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-end.json b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-end.json index 09782e8fe..0c6534f40 100644 --- a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-end.json +++ b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-end.json @@ -207,4 +207,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-space-around.json b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-space-around.json index 5ada960a9..0f99e8115 100644 --- a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-space-around.json +++ b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-space-around.json @@ -207,4 +207,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-space-between.json b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-space-between.json index 494679c7b..8197237e2 100644 --- a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-space-between.json +++ b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-space-between.json @@ -207,4 +207,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-start.json b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-start.json index 980338538..aafe831c2 100644 --- a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-start.json +++ b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-align-content-start.json @@ -207,4 +207,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-base.json b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-base.json index ce6407bcd..5a8e687ee 100644 --- a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-base.json +++ b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-base.json @@ -99,4 +99,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-direction-column-reverse.json b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-direction-column-reverse.json index b146d97d8..7488e1dea 100644 --- a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-direction-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-direction-column-reverse.json @@ -188,4 +188,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-direction-column.json b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-direction-column.json index cbe5191f2..f161bb9d5 100644 --- a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-direction-column.json +++ b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-direction-column.json @@ -188,4 +188,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-direction-row-reverse.json b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-direction-row-reverse.json index b59cc336c..7bc2ee45a 100644 --- a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-direction-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-direction-row-reverse.json @@ -188,4 +188,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-inline.json b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-inline.json index ea84e4a77..258ac61ec 100644 --- a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-inline.json +++ b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-inline.json @@ -72,4 +72,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-order.json b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-order.json index 76c05327a..5defee809 100644 --- a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-order.json +++ b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-order.json @@ -196,4 +196,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-wrap-reverse.json b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-wrap-reverse.json index 8f5006678..efafc013a 100644 --- a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-wrap-reverse.json @@ -190,4 +190,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-wrap.json b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-wrap.json index 92962f8be..b9f3b6a17 100644 --- a/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-wrap.json +++ b/tests/web_platform/css_flexbox_1/data/ttwf-reftest-flex-wrap.json @@ -190,4 +190,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/visibility-collapse-001.json b/tests/web_platform/css_flexbox_1/data/visibility-collapse-001.json index 0bf7564df..2da128313 100644 --- a/tests/web_platform/css_flexbox_1/data/visibility-collapse-001.json +++ b/tests/web_platform/css_flexbox_1/data/visibility-collapse-001.json @@ -58,4 +58,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/visibility-collapse-002.json b/tests/web_platform/css_flexbox_1/data/visibility-collapse-002.json index e90802945..30468dae9 100644 --- a/tests/web_platform/css_flexbox_1/data/visibility-collapse-002.json +++ b/tests/web_platform/css_flexbox_1/data/visibility-collapse-002.json @@ -61,4 +61,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/data/whitespace-in-flexitem-001.json b/tests/web_platform/css_flexbox_1/data/whitespace-in-flexitem-001.json index 8a0cc5b7f..d76968959 100644 --- a/tests/web_platform/css_flexbox_1/data/whitespace-in-flexitem-001.json +++ b/tests/web_platform/css_flexbox_1/data/whitespace-in-flexitem-001.json @@ -83,4 +83,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-reverse-column-reverse.json b/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-reverse-column-reverse.json index 71a583ba8..85c23b717 100644 --- a/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-reverse-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-reverse-column-reverse.json @@ -250,4 +250,4 @@ "http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property", "http://www.w3.org/TR/css-flexbox-1/#flex-direction-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-reverse-row-reverse.json b/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-reverse-row-reverse.json index 64aadc822..c466ea0a1 100644 --- a/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-reverse-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-reverse-row-reverse.json @@ -250,4 +250,4 @@ "http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property", "http://www.w3.org/TR/css-flexbox-1/#flex-direction-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-with-column-reverse.json b/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-with-column-reverse.json index 4a043ceee..ca4661345 100644 --- a/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-with-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-with-column-reverse.json @@ -250,4 +250,4 @@ "http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property", "http://www.w3.org/TR/css-flexbox-1/#flex-direction-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-with-row-reverse.json b/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-with-row-reverse.json index 6369a4328..3aaa6f7cc 100644 --- a/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-with-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/flex_lines/data/multi-line-wrap-with-row-reverse.json @@ -198,4 +198,4 @@ "http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property", "http://www.w3.org/TR/css-flexbox-1/#flex-direction-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-reverse-column-reverse.json b/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-reverse-column-reverse.json index 4fafeefb3..49facc626 100644 --- a/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-reverse-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-reverse-column-reverse.json @@ -381,4 +381,4 @@ } ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-reverse-row-reverse.json b/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-reverse-row-reverse.json index 5220a8efc..1dad8cb2e 100644 --- a/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-reverse-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-reverse-row-reverse.json @@ -381,4 +381,4 @@ } ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-with-column-reverse.json b/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-with-column-reverse.json index 9b6a06121..09964970a 100644 --- a/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-with-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-with-column-reverse.json @@ -381,4 +381,4 @@ } ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-with-row-reverse.json b/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-with-row-reverse.json index 3e25678bc..e37282ae5 100644 --- a/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-with-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/flex_lines/ref/multi-line-wrap-with-row-reverse.json @@ -381,4 +381,4 @@ } ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_reverse_column_reverse.py b/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_reverse_column_reverse.py index c41fc003b..7c9a498b1 100644 --- a/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_reverse_column_reverse.py +++ b/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_reverse_column_reverse.py @@ -2,4 +2,6 @@ class TestMultiLineWrapReverseColumnReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'multi-line-wrap-reverse-column-reverse')) + vars().update( + W3CTestCase.find_tests(__file__, "multi-line-wrap-reverse-column-reverse") + ) diff --git a/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_reverse_row_reverse.py b/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_reverse_row_reverse.py index 67136324f..8457e8f19 100644 --- a/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_reverse_row_reverse.py +++ b/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_reverse_row_reverse.py @@ -2,4 +2,6 @@ class TestMultiLineWrapReverseRowReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'multi-line-wrap-reverse-row-reverse')) + vars().update( + W3CTestCase.find_tests(__file__, "multi-line-wrap-reverse-row-reverse") + ) diff --git a/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_with_column_reverse.py b/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_with_column_reverse.py index 786d67acf..83d0faa39 100644 --- a/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_with_column_reverse.py +++ b/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_with_column_reverse.py @@ -2,4 +2,6 @@ class TestMultiLineWrapWithColumnReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'multi-line-wrap-with-column-reverse')) + vars().update( + W3CTestCase.find_tests(__file__, "multi-line-wrap-with-column-reverse") + ) diff --git a/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_with_row_reverse.py b/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_with_row_reverse.py index 7a70e4bcb..dc085893d 100644 --- a/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_with_row_reverse.py +++ b/tests/web_platform/css_flexbox_1/flex_lines/test_multi_line_wrap_with_row_reverse.py @@ -2,4 +2,4 @@ class TestMultiLineWrapWithRowReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'multi-line-wrap-with-row-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "multi-line-wrap-with-row-reverse")) diff --git a/tests/web_platform/css_flexbox_1/order/data/order-with-column-reverse.json b/tests/web_platform/css_flexbox_1/order/data/order-with-column-reverse.json index 5a599edd0..c627bbf13 100644 --- a/tests/web_platform/css_flexbox_1/order/data/order-with-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/order/data/order-with-column-reverse.json @@ -81,4 +81,4 @@ "help": [ "http://www.w3.org/TR/css-flexbox-1/#order-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/order/data/order-with-row-reverse.json b/tests/web_platform/css_flexbox_1/order/data/order-with-row-reverse.json index 474c9c620..5ae93a255 100644 --- a/tests/web_platform/css_flexbox_1/order/data/order-with-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/order/data/order-with-row-reverse.json @@ -81,4 +81,4 @@ "help": [ "http://www.w3.org/TR/css-flexbox-1/#order-property" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/order/ref/order-with-column-reverse.json b/tests/web_platform/css_flexbox_1/order/ref/order-with-column-reverse.json index 6f59a77bc..d6249cf28 100644 --- a/tests/web_platform/css_flexbox_1/order/ref/order-with-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/order/ref/order-with-column-reverse.json @@ -237,4 +237,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/order/ref/order-with-row-reverse.json b/tests/web_platform/css_flexbox_1/order/ref/order-with-row-reverse.json index e84350d14..0351915e4 100644 --- a/tests/web_platform/css_flexbox_1/order/ref/order-with-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/order/ref/order-with-row-reverse.json @@ -237,4 +237,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/order/test_order_with_column_reverse.py b/tests/web_platform/css_flexbox_1/order/test_order_with_column_reverse.py index 9f61cb43c..0472d56ae 100644 --- a/tests/web_platform/css_flexbox_1/order/test_order_with_column_reverse.py +++ b/tests/web_platform/css_flexbox_1/order/test_order_with_column_reverse.py @@ -2,4 +2,4 @@ class TestOrderWithColumnReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'order-with-column-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "order-with-column-reverse")) diff --git a/tests/web_platform/css_flexbox_1/order/test_order_with_row_reverse.py b/tests/web_platform/css_flexbox_1/order/test_order_with_row_reverse.py index 5970feaba..81a6ebeca 100644 --- a/tests/web_platform/css_flexbox_1/order/test_order_with_row_reverse.py +++ b/tests/web_platform/css_flexbox_1/order/test_order_with_row_reverse.py @@ -2,4 +2,4 @@ class TestOrderWithRowReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'order-with-row-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "order-with-row-reverse")) diff --git a/tests/web_platform/css_flexbox_1/ref/Flexible-order.json b/tests/web_platform/css_flexbox_1/ref/Flexible-order.json index 08d48a905..c0ebd085b 100644 --- a/tests/web_platform/css_flexbox_1/ref/Flexible-order.json +++ b/tests/web_platform/css_flexbox_1/ref/Flexible-order.json @@ -244,4 +244,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-content-001.json b/tests/web_platform/css_flexbox_1/ref/align-content-001.json index 07d0fa84f..729da3922 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-content-001.json +++ b/tests/web_platform/css_flexbox_1/ref/align-content-001.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-content-002.json b/tests/web_platform/css_flexbox_1/ref/align-content-002.json index 0115c510f..c4967b237 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-content-002.json +++ b/tests/web_platform/css_flexbox_1/ref/align-content-002.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-content-003.json b/tests/web_platform/css_flexbox_1/ref/align-content-003.json index 1599baeb0..44267e94a 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-content-003.json +++ b/tests/web_platform/css_flexbox_1/ref/align-content-003.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-content-004.json b/tests/web_platform/css_flexbox_1/ref/align-content-004.json index 9a703e20a..eb69efabf 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-content-004.json +++ b/tests/web_platform/css_flexbox_1/ref/align-content-004.json @@ -369,4 +369,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-content-005.json b/tests/web_platform/css_flexbox_1/ref/align-content-005.json index 29a8501cb..95b9ba7c7 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-content-005.json +++ b/tests/web_platform/css_flexbox_1/ref/align-content-005.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-content-006.json b/tests/web_platform/css_flexbox_1/ref/align-content-006.json index 6353f492f..7a3ecb7df 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-content-006.json +++ b/tests/web_platform/css_flexbox_1/ref/align-content-006.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-content_center.json b/tests/web_platform/css_flexbox_1/ref/align-content_center.json index cedf6e984..5995a6a10 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-content_center.json +++ b/tests/web_platform/css_flexbox_1/ref/align-content_center.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-content_flex-end.json b/tests/web_platform/css_flexbox_1/ref/align-content_flex-end.json index ffcf35964..7c7b96ec7 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-content_flex-end.json +++ b/tests/web_platform/css_flexbox_1/ref/align-content_flex-end.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-content_flex-start.json b/tests/web_platform/css_flexbox_1/ref/align-content_flex-start.json index b61003f0d..84c0b5e0b 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-content_flex-start.json +++ b/tests/web_platform/css_flexbox_1/ref/align-content_flex-start.json @@ -283,4 +283,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-content_space-around.json b/tests/web_platform/css_flexbox_1/ref/align-content_space-around.json index 6534f12aa..70d61a460 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-content_space-around.json +++ b/tests/web_platform/css_flexbox_1/ref/align-content_space-around.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-content_space-between.json b/tests/web_platform/css_flexbox_1/ref/align-content_space-between.json index 0624007fe..efe4936e8 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-content_space-between.json +++ b/tests/web_platform/css_flexbox_1/ref/align-content_space-between.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-content_stretch.json b/tests/web_platform/css_flexbox_1/ref/align-content_stretch.json index 21614ed59..e3f55e02c 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-content_stretch.json +++ b/tests/web_platform/css_flexbox_1/ref/align-content_stretch.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-items-001.json b/tests/web_platform/css_flexbox_1/ref/align-items-001.json index fa379e45f..02b6402c1 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-items-001.json +++ b/tests/web_platform/css_flexbox_1/ref/align-items-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-items-002.json b/tests/web_platform/css_flexbox_1/ref/align-items-002.json index e84cb8c3d..ac69168f9 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-items-002.json +++ b/tests/web_platform/css_flexbox_1/ref/align-items-002.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-items-003.json b/tests/web_platform/css_flexbox_1/ref/align-items-003.json index 9c4ade0d7..8064ec624 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-items-003.json +++ b/tests/web_platform/css_flexbox_1/ref/align-items-003.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-items-004.json b/tests/web_platform/css_flexbox_1/ref/align-items-004.json index 4cef16a7a..69e9d17f3 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-items-004.json +++ b/tests/web_platform/css_flexbox_1/ref/align-items-004.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-items-005.json b/tests/web_platform/css_flexbox_1/ref/align-items-005.json index c101e3dd4..9c30ac782 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-items-005.json +++ b/tests/web_platform/css_flexbox_1/ref/align-items-005.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-items-006.json b/tests/web_platform/css_flexbox_1/ref/align-items-006.json index a50ba0109..e04b65227 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-items-006.json +++ b/tests/web_platform/css_flexbox_1/ref/align-items-006.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-self-001.json b/tests/web_platform/css_flexbox_1/ref/align-self-001.json index b509453a8..3eca9ff0b 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-self-001.json +++ b/tests/web_platform/css_flexbox_1/ref/align-self-001.json @@ -323,4 +323,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-self-002.json b/tests/web_platform/css_flexbox_1/ref/align-self-002.json index fb98faa33..754d2a5e6 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-self-002.json +++ b/tests/web_platform/css_flexbox_1/ref/align-self-002.json @@ -323,4 +323,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-self-003.json b/tests/web_platform/css_flexbox_1/ref/align-self-003.json index 977ef3632..2a290cead 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-self-003.json +++ b/tests/web_platform/css_flexbox_1/ref/align-self-003.json @@ -369,4 +369,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-self-004.json b/tests/web_platform/css_flexbox_1/ref/align-self-004.json index bc624a8d7..a2ba002ba 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-self-004.json +++ b/tests/web_platform/css_flexbox_1/ref/align-self-004.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-self-005.json b/tests/web_platform/css_flexbox_1/ref/align-self-005.json index b8133ddbc..6a2764f03 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-self-005.json +++ b/tests/web_platform/css_flexbox_1/ref/align-self-005.json @@ -323,4 +323,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-self-006.json b/tests/web_platform/css_flexbox_1/ref/align-self-006.json index e7127d0d0..b89dfc04a 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-self-006.json +++ b/tests/web_platform/css_flexbox_1/ref/align-self-006.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-self-007.json b/tests/web_platform/css_flexbox_1/ref/align-self-007.json index b509453a8..3eca9ff0b 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-self-007.json +++ b/tests/web_platform/css_flexbox_1/ref/align-self-007.json @@ -323,4 +323,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-self-008.json b/tests/web_platform/css_flexbox_1/ref/align-self-008.json index fb98faa33..754d2a5e6 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-self-008.json +++ b/tests/web_platform/css_flexbox_1/ref/align-self-008.json @@ -323,4 +323,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-self-009.json b/tests/web_platform/css_flexbox_1/ref/align-self-009.json index 977ef3632..2a290cead 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-self-009.json +++ b/tests/web_platform/css_flexbox_1/ref/align-self-009.json @@ -369,4 +369,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-self-010.json b/tests/web_platform/css_flexbox_1/ref/align-self-010.json index e7127d0d0..b89dfc04a 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-self-010.json +++ b/tests/web_platform/css_flexbox_1/ref/align-self-010.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-self-011.json b/tests/web_platform/css_flexbox_1/ref/align-self-011.json index bc624a8d7..a2ba002ba 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-self-011.json +++ b/tests/web_platform/css_flexbox_1/ref/align-self-011.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-self-012.json b/tests/web_platform/css_flexbox_1/ref/align-self-012.json index bc624a8d7..a2ba002ba 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-self-012.json +++ b/tests/web_platform/css_flexbox_1/ref/align-self-012.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/align-self-013.json b/tests/web_platform/css_flexbox_1/ref/align-self-013.json index b509453a8..3eca9ff0b 100644 --- a/tests/web_platform/css_flexbox_1/ref/align-self-013.json +++ b/tests/web_platform/css_flexbox_1/ref/align-self-013.json @@ -323,4 +323,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/auto-margins-001.json b/tests/web_platform/css_flexbox_1/ref/auto-margins-001.json index 3e6959f48..592521f79 100644 --- a/tests/web_platform/css_flexbox_1/ref/auto-margins-001.json +++ b/tests/web_platform/css_flexbox_1/ref/auto-margins-001.json @@ -746,4 +746,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-box-justify-content.json b/tests/web_platform/css_flexbox_1/ref/css-box-justify-content.json index 6ad33763c..3a4654c5c 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-box-justify-content.json +++ b/tests/web_platform/css_flexbox_1/ref/css-box-justify-content.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-reverse-wrap-reverse.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-reverse-wrap-reverse.json index 29b5541c6..a00c8e66d 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-reverse-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-reverse-wrap-reverse.json @@ -957,4 +957,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-reverse-wrap.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-reverse-wrap.json index abe93b2b0..2dc9a6cf8 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-reverse-wrap.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-reverse-wrap.json @@ -957,4 +957,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-reverse.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-reverse.json index 292168244..f05489f4b 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-reverse.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-wrap-reverse.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-wrap-reverse.json index c8ac3f6eb..586cee816 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-wrap-reverse.json @@ -957,4 +957,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-wrap.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-wrap.json index 4d4511775..9e84bff35 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-wrap.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-column-wrap.json @@ -957,4 +957,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-column.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-column.json index 966ac3032..7b4fe3e6f 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-column.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-column.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-height-animation-stretch.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-height-animation-stretch.json index fb63e7fa1..8e2632adf 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-height-animation-stretch.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-height-animation-stretch.json @@ -517,4 +517,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-img-expand-evenly.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-img-expand-evenly.json index b467df620..a25b3ea74 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-img-expand-evenly.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-img-expand-evenly.json @@ -286,4 +286,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-reverse-wrap-reverse.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-reverse-wrap-reverse.json index 6f95e3d66..3fdc9ceed 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-reverse-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-reverse-wrap-reverse.json @@ -427,4 +427,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-reverse-wrap.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-reverse-wrap.json index c0f87d0ad..b2c877363 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-reverse-wrap.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-reverse-wrap.json @@ -427,4 +427,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-reverse.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-reverse.json index 0d44371e1..10a774611 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-reverse.json @@ -463,4 +463,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-wrap-reverse.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-wrap-reverse.json index c1f6d588e..75985e504 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-wrap-reverse.json @@ -427,4 +427,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-wrap.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-wrap.json index 9e3108dd7..6c2706e8d 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-wrap.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-row-wrap.json @@ -427,4 +427,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-row.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-row.json index a01d1861f..27ad2b133 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-row.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-row.json @@ -463,4 +463,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/css-flexbox-test1.json b/tests/web_platform/css_flexbox_1/ref/css-flexbox-test1.json index aa3dcd273..79895cae0 100644 --- a/tests/web_platform/css_flexbox_1/ref/css-flexbox-test1.json +++ b/tests/web_platform/css_flexbox_1/ref/css-flexbox-test1.json @@ -463,4 +463,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/display-flex-001.json b/tests/web_platform/css_flexbox_1/ref/display-flex-001.json index c101e3dd4..9c30ac782 100644 --- a/tests/web_platform/css_flexbox_1/ref/display-flex-001.json +++ b/tests/web_platform/css_flexbox_1/ref/display-flex-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/display_flex_exist.json b/tests/web_platform/css_flexbox_1/ref/display_flex_exist.json index 5ae1e5231..ab849975c 100644 --- a/tests/web_platform/css_flexbox_1/ref/display_flex_exist.json +++ b/tests/web_platform/css_flexbox_1/ref/display_flex_exist.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/display_inline-flex_exist.json b/tests/web_platform/css_flexbox_1/ref/display_inline-flex_exist.json index 80ba1307e..0073e0b39 100644 --- a/tests/web_platform/css_flexbox_1/ref/display_inline-flex_exist.json +++ b/tests/web_platform/css_flexbox_1/ref/display_inline-flex_exist.json @@ -137,4 +137,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-001.json b/tests/web_platform/css_flexbox_1/ref/flex-001.json index 909ec86b7..aed1b4536 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-001.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-002.json b/tests/web_platform/css_flexbox_1/ref/flex-002.json index 5b065d4a1..8c0c41f26 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-002.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-002.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-003.json b/tests/web_platform/css_flexbox_1/ref/flex-003.json index 5b065d4a1..8c0c41f26 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-003.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-003.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-004.json b/tests/web_platform/css_flexbox_1/ref/flex-004.json index 5b065d4a1..8c0c41f26 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-004.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-004.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-align-items-center.json b/tests/web_platform/css_flexbox_1/ref/flex-align-items-center.json index 0a2b80801..93ea9767b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-align-items-center.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-align-items-center.json @@ -373,4 +373,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-column-001.json b/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-column-001.json index cde226ea0..8d14d0309 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-column-001.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-column-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-column-002.json b/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-column-002.json index cde226ea0..8d14d0309 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-column-002.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-column-002.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-column-003.json b/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-column-003.json index 09c8e3749..e21c5736c 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-column-003.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-column-003.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-row-001.json b/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-row-001.json index 362a3121f..fe9d838a3 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-row-001.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-row-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-row-002.json b/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-row-002.json index 362a3121f..fe9d838a3 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-row-002.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-row-002.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-row-003.json b/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-row-003.json index d0897af3e..f1e17c94a 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-row-003.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-aspect-ratio-img-row-003.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-basis-001.json b/tests/web_platform/css_flexbox_1/ref/flex-basis-001.json index bf88d7dd4..41b0bcf8f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-basis-001.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-basis-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-basis-002.json b/tests/web_platform/css_flexbox_1/ref/flex-basis-002.json index 9916cf790..5a97586b8 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-basis-002.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-basis-002.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-basis-003.json b/tests/web_platform/css_flexbox_1/ref/flex-basis-003.json index 531b13c01..ad9a6340b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-basis-003.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-basis-003.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-basis-004.json b/tests/web_platform/css_flexbox_1/ref/flex-basis-004.json index d2f5016da..1a96ac7ce 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-basis-004.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-basis-004.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-basis-005.json b/tests/web_platform/css_flexbox_1/ref/flex-basis-005.json index 02c2b511c..30317050b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-basis-005.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-basis-005.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-basis-006.json b/tests/web_platform/css_flexbox_1/ref/flex-basis-006.json index 02c2b511c..30317050b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-basis-006.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-basis-006.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-basis-007.json b/tests/web_platform/css_flexbox_1/ref/flex-basis-007.json index d9a9acdef..5b172b9b6 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-basis-007.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-basis-007.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-basis-008.json b/tests/web_platform/css_flexbox_1/ref/flex-basis-008.json index 0bc374c53..8a7e2b6dc 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-basis-008.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-basis-008.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-box-wrap.json b/tests/web_platform/css_flexbox_1/ref/flex-box-wrap.json index 0b76733c5..4da603013 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-box-wrap.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-box-wrap.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-container-margin.json b/tests/web_platform/css_flexbox_1/ref/flex-container-margin.json index 793b4bcd6..53f8037fd 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-container-margin.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-container-margin.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-direction-column-reverse.json b/tests/web_platform/css_flexbox_1/ref/flex-direction-column-reverse.json index 2ff39b75f..3279695e2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-direction-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-direction-column-reverse.json @@ -429,4 +429,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-direction-modify.json b/tests/web_platform/css_flexbox_1/ref/flex-direction-modify.json index 187f49a25..4ea3420aa 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-direction-modify.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-direction-modify.json @@ -340,4 +340,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-direction-row-reverse.json b/tests/web_platform/css_flexbox_1/ref/flex-direction-row-reverse.json index 43fa3102a..edc547028 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-direction-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-direction-row-reverse.json @@ -429,4 +429,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-direction-row-vertical.json b/tests/web_platform/css_flexbox_1/ref/flex-direction-row-vertical.json index 5d6b5dac3..3684973d0 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-direction-row-vertical.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-direction-row-vertical.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-direction-row.json b/tests/web_platform/css_flexbox_1/ref/flex-direction-row.json index 255675be1..285f1d05d 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-direction-row.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-direction-row.json @@ -429,4 +429,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-direction-with-element-insert.json b/tests/web_platform/css_flexbox_1/ref/flex-direction-with-element-insert.json index 34ef932cc..9604c6401 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-direction-with-element-insert.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-direction-with-element-insert.json @@ -1197,4 +1197,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-direction.json b/tests/web_platform/css_flexbox_1/ref/flex-direction.json index 3ac4f9177..3f613d36c 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-direction.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-direction.json @@ -1005,4 +1005,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-direction_column-reverse.json b/tests/web_platform/css_flexbox_1/ref/flex-direction_column-reverse.json index df06909ce..a0554fde4 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-direction_column-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-direction_column-reverse.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-direction_column.json b/tests/web_platform/css_flexbox_1/ref/flex-direction_column.json index d42b8edc4..8badd03a7 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-direction_column.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-direction_column.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-direction_row-reverse.json b/tests/web_platform/css_flexbox_1/ref/flex-direction_row-reverse.json index d96bfd8c2..2a1dfe555 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-direction_row-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-direction_row-reverse.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-direction_row.json b/tests/web_platform/css_flexbox_1/ref/flex-direction_row.json index bdb2a5975..f2b40a21e 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-direction_row.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-direction_row.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flexitem-childmargin.json b/tests/web_platform/css_flexbox_1/ref/flex-flexitem-childmargin.json index b42141258..7e5cb33bd 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flexitem-childmargin.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flexitem-childmargin.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flexitem-percentage-prescation.json b/tests/web_platform/css_flexbox_1/ref/flex-flexitem-percentage-prescation.json index facbe6958..3605ddd8f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flexitem-percentage-prescation.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flexitem-percentage-prescation.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flow-001.json b/tests/web_platform/css_flexbox_1/ref/flex-flow-001.json index ee898bfd0..68cc7b0f8 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flow-001.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flow-001.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flow-002.json b/tests/web_platform/css_flexbox_1/ref/flex-flow-002.json index cd7ce6513..8e95b8697 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flow-002.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flow-002.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flow-003.json b/tests/web_platform/css_flexbox_1/ref/flex-flow-003.json index 1781ff80a..6783107f6 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flow-003.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flow-003.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flow-004.json b/tests/web_platform/css_flexbox_1/ref/flex-flow-004.json index b643550a7..0beabf298 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flow-004.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flow-004.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flow-005.json b/tests/web_platform/css_flexbox_1/ref/flex-flow-005.json index f56109932..e491528fc 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flow-005.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flow-005.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flow-006.json b/tests/web_platform/css_flexbox_1/ref/flex-flow-006.json index 1b35b1f24..c5cae6f5a 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flow-006.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flow-006.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flow-007.json b/tests/web_platform/css_flexbox_1/ref/flex-flow-007.json index 8986fab01..b52fe8a09 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flow-007.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flow-007.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flow-008.json b/tests/web_platform/css_flexbox_1/ref/flex-flow-008.json index 2914fee43..51c2a70ea 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flow-008.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flow-008.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flow-009.json b/tests/web_platform/css_flexbox_1/ref/flex-flow-009.json index 816005a6c..03dd71096 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flow-009.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flow-009.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flow-010.json b/tests/web_platform/css_flexbox_1/ref/flex-flow-010.json index a6d230c90..052857aea 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flow-010.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flow-010.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flow-011.json b/tests/web_platform/css_flexbox_1/ref/flex-flow-011.json index 84ca92b2a..00a7598b3 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flow-011.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flow-011.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-flow-012.json b/tests/web_platform/css_flexbox_1/ref/flex-flow-012.json index 0bf103e0b..b8658fdd4 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-flow-012.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-flow-012.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-grow-001.json b/tests/web_platform/css_flexbox_1/ref/flex-grow-001.json index bc9b439d4..ccba4bd6b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-grow-001.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-grow-001.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-grow-002.json b/tests/web_platform/css_flexbox_1/ref/flex-grow-002.json index 07736e961..cb75bb55d 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-grow-002.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-grow-002.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-grow-003.json b/tests/web_platform/css_flexbox_1/ref/flex-grow-003.json index 0fa623a87..3f810fac0 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-grow-003.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-grow-003.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-grow-004.json b/tests/web_platform/css_flexbox_1/ref/flex-grow-004.json index 0a7c57032..0a04db05d 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-grow-004.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-grow-004.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-grow-005.json b/tests/web_platform/css_flexbox_1/ref/flex-grow-005.json index c1fc151c7..2053abd03 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-grow-005.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-grow-005.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-grow-006.json b/tests/web_platform/css_flexbox_1/ref/flex-grow-006.json index f6f1bf4d5..f1694a9a7 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-grow-006.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-grow-006.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-grow-007.json b/tests/web_platform/css_flexbox_1/ref/flex-grow-007.json index 67e541fe3..e6dd49a12 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-grow-007.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-grow-007.json @@ -375,4 +375,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-items-flexibility.json b/tests/web_platform/css_flexbox_1/ref/flex-items-flexibility.json index e0ea17131..03f9bda7b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-items-flexibility.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-items-flexibility.json @@ -373,4 +373,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-margin-no-collapse.json b/tests/web_platform/css_flexbox_1/ref/flex-margin-no-collapse.json index 0aeaea0a1..db148e072 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-margin-no-collapse.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-margin-no-collapse.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-001.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-001.json index 8a1688179..40a06e490 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-001.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-001.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-002.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-002.json index e8eb3b31d..b7045e7b0 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-002.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-002.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-003.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-003.json index 4a281f2c8..18b8c76b9 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-003.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-003.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-004.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-004.json index cc5acd1ab..21ef580f5 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-004.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-004.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-005.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-005.json index e71bd71ec..833307ba2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-005.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-005.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-006.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-006.json index e71bd71ec..833307ba2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-006.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-006.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-007.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-007.json index e71bd71ec..833307ba2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-007.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-007.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-008.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-008.json index e71bd71ec..833307ba2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-008.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-height-flex-items-008.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-001.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-001.json index ee540a458..6ff2261db 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-001.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-001.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-002.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-002.json index db68f2af5..8d93f1df9 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-002.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-002.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-003.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-003.json index ee540a458..6ff2261db 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-003.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-003.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-004.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-004.json index b61bc09d9..b244a38ea 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-004.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-004.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-005.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-005.json index bfe4976f6..c27fad671 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-005.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-005.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-006.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-006.json index 362a3121f..fe9d838a3 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-006.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-006.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-007.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-007.json index 62ed387e4..0e6cee5f4 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-007.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-007.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-008.json b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-008.json index 362a3121f..fe9d838a3 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-008.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-minimum-width-flex-items-008.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-order.json b/tests/web_platform/css_flexbox_1/ref/flex-order.json index 0af904b45..ad33a06a3 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-order.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-order.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-shrink-001.json b/tests/web_platform/css_flexbox_1/ref/flex-shrink-001.json index 4809ada71..70eafb15d 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-shrink-001.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-shrink-001.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-shrink-002.json b/tests/web_platform/css_flexbox_1/ref/flex-shrink-002.json index d8eaa6d3d..20f83dd2f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-shrink-002.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-shrink-002.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-shrink-003.json b/tests/web_platform/css_flexbox_1/ref/flex-shrink-003.json index 0e43a963b..a56a1ede3 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-shrink-003.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-shrink-003.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-shrink-004.json b/tests/web_platform/css_flexbox_1/ref/flex-shrink-004.json index 3a61d8cc2..94111b6ea 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-shrink-004.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-shrink-004.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-shrink-005.json b/tests/web_platform/css_flexbox_1/ref/flex-shrink-005.json index 3a9884f73..506ed3765 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-shrink-005.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-shrink-005.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-shrink-006.json b/tests/web_platform/css_flexbox_1/ref/flex-shrink-006.json index 11e5c4b95..df0cad57b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-shrink-006.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-shrink-006.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-shrink-007.json b/tests/web_platform/css_flexbox_1/ref/flex-shrink-007.json index d8eaa6d3d..20f83dd2f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-shrink-007.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-shrink-007.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-shrink-008.json b/tests/web_platform/css_flexbox_1/ref/flex-shrink-008.json index a858fb82c..d41394eb8 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-shrink-008.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-shrink-008.json @@ -375,4 +375,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-vertical-align-effect.json b/tests/web_platform/css_flexbox_1/ref/flex-vertical-align-effect.json index 156eff0da..7a96e647e 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-vertical-align-effect.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-vertical-align-effect.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-wrap-001.json b/tests/web_platform/css_flexbox_1/ref/flex-wrap-001.json index 6353f492f..7a3ecb7df 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-wrap-001.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-wrap-001.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-wrap_nowrap.json b/tests/web_platform/css_flexbox_1/ref/flex-wrap_nowrap.json index 5d9dbe63c..31c811aac 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-wrap_nowrap.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-wrap_nowrap.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-wrap_wrap-reverse.json b/tests/web_platform/css_flexbox_1/ref/flex-wrap_wrap-reverse.json index 27d329e81..9dc99bc69 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-wrap_wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-wrap_wrap-reverse.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flex-wrap_wrap.json b/tests/web_platform/css_flexbox_1/ref/flex-wrap_wrap.json index b764ff52e..8eb9d9089 100644 --- a/tests/web_platform/css_flexbox_1/ref/flex-wrap_wrap.json +++ b/tests/web_platform/css_flexbox_1/ref/flex-wrap_wrap.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-column-reverse.json b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-column-reverse.json index f0b32ae90..f9d8bcaa9 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-column-reverse.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-column.json b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-column.json index d524ca5d7..3c835d02e 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-column.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-column.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-default.json b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-default.json index c3b990c01..1485c73e9 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-default.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-default.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-row-reverse.json b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-row-reverse.json index 1e9949586..08f09af99 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-row-reverse.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-row.json b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-row.json index c3b990c01..1485c73e9 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-row.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-direction-row.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-default.json b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-default.json index c42c2c3b0..3f8ccbeba 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-default.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-default.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-flexing.json b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-flexing.json index e1f50bb59..c1ced1cb1 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-flexing.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-flexing.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-nowrap.json b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-nowrap.json index c42c2c3b0..3f8ccbeba 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-nowrap.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-nowrap.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-wrap-reverse.json b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-wrap-reverse.json index dea470256..f83db6bc8 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-wrap-reverse.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-wrap.json b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-wrap.json index c3b990c01..1485c73e9 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-wrap.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox-flex-wrap-wrap.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox-order-from-lowest.json b/tests/web_platform/css_flexbox_1/ref/flexbox-order-from-lowest.json index a9f575bc0..35b9648ff 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox-order-from-lowest.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox-order-from-lowest.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox-order-only-flexitems.json b/tests/web_platform/css_flexbox_1/ref/flexbox-order-only-flexitems.json index b752a8169..5b3a6446d 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox-order-only-flexitems.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox-order-only-flexitems.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_absolute-atomic.json b/tests/web_platform/css_flexbox_1/ref/flexbox_absolute-atomic.json index 13599b750..20b03fcbb 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_absolute-atomic.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_absolute-atomic.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-center.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-center.json index da4616c09..318e371a5 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-center.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-center.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-flexend.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-flexend.json index 4cfc55fe5..e4234a344 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-flexend.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-flexend.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-flexstart.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-flexstart.json index 1288d9dcc..48b1ad76e 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-flexstart.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-flexstart.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-spacearound.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-spacearound.json index f803df17f..772316201 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-spacearound.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-spacearound.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-spacebetween.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-spacebetween.json index 19e1dd343..f1fb3fd2b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-spacebetween.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-spacebetween.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-stretch-2.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-stretch-2.json index 94665d13a..0ece0997b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-stretch-2.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-stretch-2.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-stretch.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-stretch.json index f21e1aff5..f59633157 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-stretch.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-content-stretch.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-baseline.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-baseline.json index 74f417624..701cbde56 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-baseline.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-baseline.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-center-2.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-center-2.json index 147915d5d..d2c68201b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-center-2.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-center-2.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-center.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-center.json index da8735025..1cf9168f4 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-center.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-center.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexend-2.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexend-2.json index 7e04ade59..37c8c2b9e 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexend-2.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexend-2.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexend.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexend.json index 17acb9fa3..2f893571b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexend.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexend.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexstart-2.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexstart-2.json index 6eeb1b91e..4246ca279 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexstart-2.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexstart-2.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexstart.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexstart.json index def5f8f13..b49da52d6 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexstart.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-flexstart.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-stretch-2.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-stretch-2.json index a48f87d8d..84bee5481 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-stretch-2.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-stretch-2.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-stretch.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-stretch.json index 67254942f..53a3232a9 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-stretch.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-items-stretch.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-auto.json index 17acb9fa3..2f893571b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-auto.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-baseline.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-baseline.json index ab3f0d1b7..3fe8dc809 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-baseline.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-baseline.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-center.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-center.json index b8e7b257e..f4e5dcf0a 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-center.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-center.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-flexend.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-flexend.json index 18ec87371..66efab802 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-flexend.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-flexend.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-flexstart.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-flexstart.json index 17bbc0c7f..60ae7c6e9 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-flexstart.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-flexstart.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-stretch.json b/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-stretch.json index c6aae438e..c1bdf9713 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-stretch.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_align-self-stretch.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_block.json b/tests/web_platform/css_flexbox_1/ref/flexbox_block.json index 157697f64..385997c4f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_block.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_block.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_box-clear.json b/tests/web_platform/css_flexbox_1/ref/flexbox_box-clear.json index 7cd66ce0c..41dc87b4b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_box-clear.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_box-clear.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_columns-flexitems-2.json b/tests/web_platform/css_flexbox_1/ref/flexbox_columns-flexitems-2.json index 5410648c7..5d915e2a1 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_columns-flexitems-2.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_columns-flexitems-2.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_columns-flexitems.json b/tests/web_platform/css_flexbox_1/ref/flexbox_columns-flexitems.json index 59b046492..126fa63b8 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_columns-flexitems.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_columns-flexitems.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_columns.json b/tests/web_platform/css_flexbox_1/ref/flexbox_columns.json index 137df9676..aba5165d6 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_columns.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_columns.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_direction-column-reverse.json b/tests/web_platform/css_flexbox_1/ref/flexbox_direction-column-reverse.json index c8ba2a8c2..41f5b7eec 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_direction-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_direction-column-reverse.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_direction-column.json b/tests/web_platform/css_flexbox_1/ref/flexbox_direction-column.json index df0a71499..7610031ce 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_direction-column.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_direction-column.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_direction-row-reverse.json b/tests/web_platform/css_flexbox_1/ref/flexbox_direction-row-reverse.json index 4d9ae79e6..c136a0224 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_direction-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_direction-row-reverse.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_display.json b/tests/web_platform/css_flexbox_1/ref/flexbox_display.json index c2725cba6..0f797e3a5 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_display.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_display.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_fbfc.json b/tests/web_platform/css_flexbox_1/ref/flexbox_fbfc.json index ad79a3bee..109e97ff6 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_fbfc.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_fbfc.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_fbfc2.json b/tests/web_platform/css_flexbox_1/ref/flexbox_fbfc2.json index d1d9dc028..7ee7f6dd2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_fbfc2.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_fbfc2.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_first-line.json b/tests/web_platform/css_flexbox_1/ref/flexbox_first-line.json index 456b0e9b2..73b1ae24e 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_first-line.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_first-line.json @@ -477,4 +477,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-0-unitless.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-0-unitless.json index 8d726744a..acf51e960 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-0-unitless.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-0.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-0.json index 8d726744a..acf51e960 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-0.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-0.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-1-unitless-basis.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-1-unitless-basis.json index f782201e9..630b69f6b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-1-unitless-basis.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-1-unitless-basis.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-N-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-N-shrink.json index 1cc3bc6f5..489100836 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-N-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-N-unitless-basis.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-N-unitless-basis.json index f782201e9..630b69f6b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-N-unitless-basis.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-N-unitless-basis.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-N.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-N.json index 379ba02a8..5cc380a6d 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-N.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-N.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-Npercent-shrink.json index 5b7839767..e3cbadbb8 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-Npercent-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-Npercent.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-Npercent.json index be2413517..dea6653b8 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-Npercent.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-Npercent.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-auto-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-auto-shrink.json index d63e1d550..10282a315 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-auto-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-auto.json index f782201e9..630b69f6b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0-auto.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0.json index 8d726744a..acf51e960 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-0.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-0-unitless.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-0-unitless.json index 8d726744a..acf51e960 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-0-unitless.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-0.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-0.json index 8d726744a..acf51e960 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-0.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-0.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-1-unitless-basis.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-1-unitless-basis.json index f782201e9..630b69f6b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-1-unitless-basis.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-1-unitless-basis.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-N-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-N-shrink.json index 406809b12..c45982be2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-N-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-N-unitless-basis.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-N-unitless-basis.json index f782201e9..630b69f6b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-N-unitless-basis.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-N-unitless-basis.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-N.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-N.json index 379ba02a8..5cc380a6d 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-N.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-N.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-Npercent-shrink.json index 406809b12..c45982be2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-Npercent-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-Npercent.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-Npercent.json index be2413517..dea6653b8 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-Npercent.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-Npercent.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-auto-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-auto-shrink.json index 0ec2400ee..ce14cb029 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-auto-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-auto.json index f782201e9..630b69f6b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1-auto.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1.json index 8d726744a..acf51e960 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-1.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-0-unitless.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-0-unitless.json index 8d726744a..acf51e960 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-0-unitless.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-0.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-0.json index 8d726744a..acf51e960 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-0.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-0.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-N-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-N-shrink.json index 406809b12..c45982be2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-N-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-N.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-N.json index 379ba02a8..5cc380a6d 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-N.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-N.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-Npercent-shrink.json index 406809b12..c45982be2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-Npercent-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-Npercent.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-Npercent.json index be2413517..dea6653b8 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-Npercent.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-Npercent.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-auto-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-auto-shrink.json index 0ec2400ee..ce14cb029 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-auto-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-auto.json index f782201e9..630b69f6b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N-auto.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N.json index 8d726744a..acf51e960 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-N.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-auto.json index fb999bbf1..0e268ba7a 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-0-auto.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-0-unitless.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-0-unitless.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-0-unitless.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-0.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-0.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-0.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-0.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-N-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-N-shrink.json index 1cc3bc6f5..489100836 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-N-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-N.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-N.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-N.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-N.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-Npercent-shrink.json index 5b7839767..e3cbadbb8 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-Npercent-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-Npercent.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-Npercent.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-Npercent.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-Npercent.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-auto-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-auto-shrink.json index d63e1d550..10282a315 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-auto-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-auto.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0-auto.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-0.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-0-unitless.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-0-unitless.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-0-unitless.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-0.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-0.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-0.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-0.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-N-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-N-shrink.json index 406809b12..c45982be2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-N-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-N.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-N.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-N.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-N.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-Npercent-shrink.json index 406809b12..c45982be2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-Npercent-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-Npercent.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-Npercent.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-Npercent.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-Npercent.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-auto-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-auto-shrink.json index 0ec2400ee..ce14cb029 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-auto-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-auto.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1-auto.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-1.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-0-unitless.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-0-unitless.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-0-unitless.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-0.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-0.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-0.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-0.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-N-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-N-shrink.json index 406809b12..c45982be2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-N-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-N.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-N.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-N.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-N.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-Npercent-shrink.json index 406809b12..c45982be2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-Npercent-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-Npercent.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-Npercent.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-Npercent.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-Npercent.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-auto-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-auto-shrink.json index 0ec2400ee..ce14cb029 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-auto-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-auto.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N-auto.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-1-N.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-0-unitless.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-0-unitless.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-0-unitless.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-0.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-0.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-0.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-0.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-N-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-N-shrink.json index 1cc3bc6f5..489100836 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-N-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-N.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-N.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-N.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-N.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-Npercent-shrink.json index 5b7839767..e3cbadbb8 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-Npercent-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-Npercent.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-Npercent.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-Npercent.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-Npercent.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-auto-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-auto-shrink.json index 45506e9eb..47ab747d2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-auto-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-auto.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0-auto.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-0.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-0-unitless.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-0-unitless.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-0-unitless.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-0.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-0.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-0.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-0.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-N-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-N-shrink.json index 406809b12..c45982be2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-N-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-N.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-N.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-N.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-N.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-Npercent-shrink.json index 406809b12..c45982be2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-Npercent-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-Npercent.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-Npercent.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-Npercent.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-Npercent.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-auto-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-auto-shrink.json index 0ec2400ee..ce14cb029 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-auto-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-auto.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1-auto.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-1.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-0-unitless.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-0-unitless.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-0-unitless.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-0-unitless.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-0.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-0.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-0.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-0.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-N-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-N-shrink.json index 406809b12..c45982be2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-N-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-N-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-N.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-N.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-N.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-N.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-Npercent-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-Npercent-shrink.json index 406809b12..c45982be2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-Npercent-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-Npercent-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-Npercent.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-Npercent.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-Npercent.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-Npercent.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-auto-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-auto-shrink.json index 0ec2400ee..ce14cb029 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-auto-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-auto-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-auto.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N-auto.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N.json index 4f30693b6..cfeec469b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-N-N.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-auto.json index 9d8c87833..7e9655251 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-auto.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-basis-shrink.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-basis-shrink.json index f8aa5ea71..ce1ac6600 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-basis-shrink.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-basis-shrink.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-basis.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-basis.json index 35f1a801b..345d65522 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-basis.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-basis.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-formatting-interop.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-formatting-interop.json index 107165fc4..21d6a2948 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-formatting-interop.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-formatting-interop.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-initial-2.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-initial-2.json index b465db4e0..efb053fc1 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-initial-2.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-initial-2.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-initial.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-initial.json index fb999bbf1..0e268ba7a 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-initial.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-initial.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-mixed-basis-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-mixed-basis-auto.json index 30f7ed7d3..029d90084 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-mixed-basis-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-mixed-basis-auto.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-mixed-basis.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-mixed-basis.json index 743d02cf9..fc6f4e1fe 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-mixed-basis.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-mixed-basis.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-variable-auto-basis.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-variable-auto-basis.json index c55d5402c..dcb71c3a4 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-variable-auto-basis.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-variable-auto-basis.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-variable-zero-basis.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-variable-zero-basis.json index 9e134219b..9e8973063 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-variable-zero-basis.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural-variable-zero-basis.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural.json index 1086f3cc5..2ce8a8e7e 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-natural.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-none.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-none.json index 843dffadc..9754595da 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flex-none.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flex-none.json @@ -525,4 +525,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-reverse-wrap-reverse.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-reverse-wrap-reverse.json index a9c041cfb..6c64097af 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-reverse-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-reverse-wrap-reverse.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-reverse-wrap.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-reverse-wrap.json index 60d938a3c..1b2116cd2 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-reverse-wrap.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-reverse-wrap.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-wrap-reverse.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-wrap-reverse.json index 507278932..61d534ec3 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-wrap-reverse.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-wrap.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-wrap.json index 6a0da1103..555dc0521 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-wrap.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flow-column-wrap.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flow-row-wrap-reverse.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flow-row-wrap-reverse.json index a41debea2..670ee3494 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flow-row-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flow-row-wrap-reverse.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_flow-row-wrap.json b/tests/web_platform/css_flexbox_1/ref/flexbox_flow-row-wrap.json index a96484488..bf356e65a 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_flow-row-wrap.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_flow-row-wrap.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_generated-flex.json b/tests/web_platform/css_flexbox_1/ref/flexbox_generated-flex.json index a613955f6..897475ee5 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_generated-flex.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_generated-flex.json @@ -92,4 +92,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_generated-nested-flex.json b/tests/web_platform/css_flexbox_1/ref/flexbox_generated-nested-flex.json index 966642b22..c497de7c1 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_generated-nested-flex.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_generated-nested-flex.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_generated.json b/tests/web_platform/css_flexbox_1/ref/flexbox_generated.json index 7d3e8e268..27344e56c 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_generated.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_generated.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_inline-abspos.json b/tests/web_platform/css_flexbox_1/ref/flexbox_inline-abspos.json index 2a011245c..e1b4d7b35 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_inline-abspos.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_inline-abspos.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_inline-float.json b/tests/web_platform/css_flexbox_1/ref/flexbox_inline-float.json index 2a011245c..e1b4d7b35 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_inline-float.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_inline-float.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_inline.json b/tests/web_platform/css_flexbox_1/ref/flexbox_inline.json index f899440db..8181cb48a 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_inline.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_inline.json @@ -93,4 +93,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_item-bottom-float.json b/tests/web_platform/css_flexbox_1/ref/flexbox_item-bottom-float.json index 859d42fe7..b22dd8f0f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_item-bottom-float.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_item-bottom-float.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_item-clear.json b/tests/web_platform/css_flexbox_1/ref/flexbox_item-clear.json index a9aa22331..ff5faa598 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_item-clear.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_item-clear.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_item-float.json b/tests/web_platform/css_flexbox_1/ref/flexbox_item-float.json index 4f191ae95..228a659d0 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_item-float.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_item-float.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_item-top-float.json b/tests/web_platform/css_flexbox_1/ref/flexbox_item-top-float.json index 859d42fe7..b22dd8f0f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_item-top-float.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_item-top-float.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_item-vertical-align.json b/tests/web_platform/css_flexbox_1/ref/flexbox_item-vertical-align.json index f1fc580a9..7f4c456b7 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_item-vertical-align.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_item-vertical-align.json @@ -323,4 +323,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-center-overflow.json b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-center-overflow.json index 573590924..449e6fc12 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-center-overflow.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-center-overflow.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-center.json b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-center.json index 9a70c5e51..c4b9f0e32 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-center.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-center.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-flex-end.json b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-flex-end.json index cf9958ec8..044cb25ea 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-flex-end.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-flex-end.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-flex-start.json b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-flex-start.json index fc0736170..81f473b9a 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-flex-start.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-flex-start.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacearound-negative.json b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacearound-negative.json index 3a603b5f1..c71f2a735 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacearound-negative.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacearound-negative.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacearound-only.json b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacearound-only.json index d91c552aa..d4062ac9e 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacearound-only.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacearound-only.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacearound.json b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacearound.json index fc0736170..81f473b9a 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacearound.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacearound.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacebetween-negative.json b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacebetween-negative.json index a8ae4b51c..3757e272e 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacebetween-negative.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacebetween-negative.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacebetween-only.json b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacebetween-only.json index 148f92264..ed58b4c53 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacebetween-only.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacebetween-only.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacebetween.json b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacebetween.json index 6a6ce8aa6..bbdb2dca4 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacebetween.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_justifycontent-spacebetween.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_margin-auto-overflow-2.json b/tests/web_platform/css_flexbox_1/ref/flexbox_margin-auto-overflow-2.json index ecb7082db..9961b28fe 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_margin-auto-overflow-2.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_margin-auto-overflow-2.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_margin-auto-overflow.json b/tests/web_platform/css_flexbox_1/ref/flexbox_margin-auto-overflow.json index 6ea85ea64..fb09afb77 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_margin-auto-overflow.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_margin-auto-overflow.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_margin-auto.json b/tests/web_platform/css_flexbox_1/ref/flexbox_margin-auto.json index 91a5a11cd..73861b882 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_margin-auto.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_margin-auto.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_margin-collapse.json b/tests/web_platform/css_flexbox_1/ref/flexbox_margin-collapse.json index 434ce8c17..fd1052150 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_margin-collapse.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_margin-collapse.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_margin-left-ex.json b/tests/web_platform/css_flexbox_1/ref/flexbox_margin-left-ex.json index fd9da385a..f7b8a3929 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_margin-left-ex.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_margin-left-ex.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_margin.json b/tests/web_platform/css_flexbox_1/ref/flexbox_margin.json index d5fc61d75..a9c42d595 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_margin.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_margin.json @@ -91,4 +91,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_nested-flex.json b/tests/web_platform/css_flexbox_1/ref/flexbox_nested-flex.json index a529b2d6f..fe607ff94 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_nested-flex.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_nested-flex.json @@ -141,4 +141,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_object.json b/tests/web_platform/css_flexbox_1/ref/flexbox_object.json index d45bc95ef..32253e052 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_object.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_object.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_order-abspos-space-around.json b/tests/web_platform/css_flexbox_1/ref/flexbox_order-abspos-space-around.json index 36476adc0..79ee6ad0b 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_order-abspos-space-around.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_order-abspos-space-around.json @@ -283,4 +283,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_order-box.json b/tests/web_platform/css_flexbox_1/ref/flexbox_order-box.json index d38fd9333..56e48ec15 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_order-box.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_order-box.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_order-noninteger-invalid.json b/tests/web_platform/css_flexbox_1/ref/flexbox_order-noninteger-invalid.json index 987f45976..f8d48e68e 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_order-noninteger-invalid.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_order-noninteger-invalid.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_order.json b/tests/web_platform/css_flexbox_1/ref/flexbox_order.json index b46cdee22..66cbb90c1 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_order.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_order.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_rowspan-overflow-automatic.json b/tests/web_platform/css_flexbox_1/ref/flexbox_rowspan-overflow-automatic.json index 907b0baac..2cf5bcce7 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_rowspan-overflow-automatic.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_rowspan-overflow-automatic.json @@ -1245,4 +1245,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_rowspan-overflow.json b/tests/web_platform/css_flexbox_1/ref/flexbox_rowspan-overflow.json index 907b0baac..2cf5bcce7 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_rowspan-overflow.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_rowspan-overflow.json @@ -1245,4 +1245,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_rowspan.json b/tests/web_platform/css_flexbox_1/ref/flexbox_rowspan.json index 664d3b6ac..be1965d9d 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_rowspan.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_rowspan.json @@ -1230,4 +1230,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-direction.json b/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-direction.json index 8abfd526b..f91efc250 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-direction.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-direction.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-flow-reverse.json b/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-flow-reverse.json index 6a0da1103..555dc0521 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-flow-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-flow-reverse.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-flow.json b/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-flow.json index 507278932..61d534ec3 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-flow.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-flow.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-order.json b/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-order.json index caab95e4a..994da836e 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-order.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_rtl-order.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-abspos.json b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-abspos.json index e8a715add..bc57a1006 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-abspos.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-abspos.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-float.json b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-float.json index e8a715add..bc57a1006 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-float.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-float.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-inline-block.json b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-inline-block.json index d5ecb0c84..17ddbba3f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-inline-block.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-inline-block.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-caption.json b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-caption.json index d5ecb0c84..17ddbba3f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-caption.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-caption.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-cell.json b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-cell.json index d5ecb0c84..17ddbba3f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-cell.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-cell.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-row-group.json b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-row-group.json index d5ecb0c84..17ddbba3f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-row-group.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-row-group.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-row.json b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-row.json index d5ecb0c84..17ddbba3f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-row.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-row.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-singleline-2.json b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-singleline-2.json index 7f78907ec..8d6f930e7 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-singleline-2.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-singleline-2.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-singleline.json b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-singleline.json index 115cc20d5..5ed1a3993 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-singleline.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table-singleline.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table.json b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table.json index d5ecb0c84..17ddbba3f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_stf-table.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_table-fixed-layout.json b/tests/web_platform/css_flexbox_1/ref/flexbox_table-fixed-layout.json index a2db82d78..2d0dae3e7 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_table-fixed-layout.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_table-fixed-layout.json @@ -861,4 +861,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_visibility-collapse-line-wrapping.json b/tests/web_platform/css_flexbox_1/ref/flexbox_visibility-collapse-line-wrapping.json index cdc08f53a..1a95bb43a 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_visibility-collapse-line-wrapping.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_visibility-collapse-line-wrapping.json @@ -381,4 +381,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_visibility-collapse.json b/tests/web_platform/css_flexbox_1/ref/flexbox_visibility-collapse.json index 33200129e..ac54cff72 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_visibility-collapse.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_visibility-collapse.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_width-overflow.json b/tests/web_platform/css_flexbox_1/ref/flexbox_width-overflow.json index 72769719e..bd12e84ba 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_width-overflow.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_width-overflow.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_wrap-long.json b/tests/web_platform/css_flexbox_1/ref/flexbox_wrap-long.json index d378aab0a..e70709897 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_wrap-long.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_wrap-long.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_wrap-reverse.json b/tests/web_platform/css_flexbox_1/ref/flexbox_wrap-reverse.json index a41debea2..670ee3494 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_wrap-reverse.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_wrap.json b/tests/web_platform/css_flexbox_1/ref/flexbox_wrap.json index a96484488..bf356e65a 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_wrap.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_wrap.json @@ -285,4 +285,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.json b/tests/web_platform/css_flexbox_1/ref/flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.json index dc3a40a12..438e7798f 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.json +++ b/tests/web_platform/css_flexbox_1/ref/flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.json @@ -332,4 +332,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/flexible-box-float.json b/tests/web_platform/css_flexbox_1/ref/flexible-box-float.json index 187e10a6b..a59a160dd 100644 --- a/tests/web_platform/css_flexbox_1/ref/flexible-box-float.json +++ b/tests/web_platform/css_flexbox_1/ref/flexible-box-float.json @@ -330,4 +330,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/justify-content-001.json b/tests/web_platform/css_flexbox_1/ref/justify-content-001.json index 5a14eb49b..16ef86cd5 100644 --- a/tests/web_platform/css_flexbox_1/ref/justify-content-001.json +++ b/tests/web_platform/css_flexbox_1/ref/justify-content-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/justify-content-002.json b/tests/web_platform/css_flexbox_1/ref/justify-content-002.json index c829b48a7..1cb728df1 100644 --- a/tests/web_platform/css_flexbox_1/ref/justify-content-002.json +++ b/tests/web_platform/css_flexbox_1/ref/justify-content-002.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/justify-content-003.json b/tests/web_platform/css_flexbox_1/ref/justify-content-003.json index a08ec6166..3d0e91adb 100644 --- a/tests/web_platform/css_flexbox_1/ref/justify-content-003.json +++ b/tests/web_platform/css_flexbox_1/ref/justify-content-003.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/justify-content-004.json b/tests/web_platform/css_flexbox_1/ref/justify-content-004.json index 83d6183ce..f9f63ce83 100644 --- a/tests/web_platform/css_flexbox_1/ref/justify-content-004.json +++ b/tests/web_platform/css_flexbox_1/ref/justify-content-004.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/justify-content-005.json b/tests/web_platform/css_flexbox_1/ref/justify-content-005.json index 7bdba1615..737279ea8 100644 --- a/tests/web_platform/css_flexbox_1/ref/justify-content-005.json +++ b/tests/web_platform/css_flexbox_1/ref/justify-content-005.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/justify-content_center.json b/tests/web_platform/css_flexbox_1/ref/justify-content_center.json index 2bdda5e3c..44827f402 100644 --- a/tests/web_platform/css_flexbox_1/ref/justify-content_center.json +++ b/tests/web_platform/css_flexbox_1/ref/justify-content_center.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/justify-content_flex-end.json b/tests/web_platform/css_flexbox_1/ref/justify-content_flex-end.json index 1f89708c2..f05c04ccf 100644 --- a/tests/web_platform/css_flexbox_1/ref/justify-content_flex-end.json +++ b/tests/web_platform/css_flexbox_1/ref/justify-content_flex-end.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/justify-content_flex-start.json b/tests/web_platform/css_flexbox_1/ref/justify-content_flex-start.json index b88d66075..ae8934416 100644 --- a/tests/web_platform/css_flexbox_1/ref/justify-content_flex-start.json +++ b/tests/web_platform/css_flexbox_1/ref/justify-content_flex-start.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/justify-content_space-around.json b/tests/web_platform/css_flexbox_1/ref/justify-content_space-around.json index 4dbd8bd74..0aec6c086 100644 --- a/tests/web_platform/css_flexbox_1/ref/justify-content_space-around.json +++ b/tests/web_platform/css_flexbox_1/ref/justify-content_space-around.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/justify-content_space-between.json b/tests/web_platform/css_flexbox_1/ref/justify-content_space-between.json index 12c291f3f..dc74e3cc2 100644 --- a/tests/web_platform/css_flexbox_1/ref/justify-content_space-between.json +++ b/tests/web_platform/css_flexbox_1/ref/justify-content_space-between.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/layout-algorithm_algo-cross-line-001.json b/tests/web_platform/css_flexbox_1/ref/layout-algorithm_algo-cross-line-001.json index 86fa95ec5..ce2963b16 100644 --- a/tests/web_platform/css_flexbox_1/ref/layout-algorithm_algo-cross-line-001.json +++ b/tests/web_platform/css_flexbox_1/ref/layout-algorithm_algo-cross-line-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/layout-algorithm_algo-cross-line-002.json b/tests/web_platform/css_flexbox_1/ref/layout-algorithm_algo-cross-line-002.json index 75dac7ca5..11454a5a9 100644 --- a/tests/web_platform/css_flexbox_1/ref/layout-algorithm_algo-cross-line-002.json +++ b/tests/web_platform/css_flexbox_1/ref/layout-algorithm_algo-cross-line-002.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/negative-margins-001.json b/tests/web_platform/css_flexbox_1/ref/negative-margins-001.json index 8d81104f7..f6227c2c7 100644 --- a/tests/web_platform/css_flexbox_1/ref/negative-margins-001.json +++ b/tests/web_platform/css_flexbox_1/ref/negative-margins-001.json @@ -279,4 +279,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/order-001.json b/tests/web_platform/css_flexbox_1/ref/order-001.json index 94d3f47b1..81e91bf46 100644 --- a/tests/web_platform/css_flexbox_1/ref/order-001.json +++ b/tests/web_platform/css_flexbox_1/ref/order-001.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/order_value.json b/tests/web_platform/css_flexbox_1/ref/order_value.json index 8296c53e1..51cd876a7 100644 --- a/tests/web_platform/css_flexbox_1/ref/order_value.json +++ b/tests/web_platform/css_flexbox_1/ref/order_value.json @@ -283,4 +283,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/percentage-heights-000.json b/tests/web_platform/css_flexbox_1/ref/percentage-heights-000.json index 95d3ba3ac..d9e48fc57 100644 --- a/tests/web_platform/css_flexbox_1/ref/percentage-heights-000.json +++ b/tests/web_platform/css_flexbox_1/ref/percentage-heights-000.json @@ -1207,4 +1207,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/percentage-heights-002.json b/tests/web_platform/css_flexbox_1/ref/percentage-heights-002.json index f8798898c..b8ff0ebfd 100644 --- a/tests/web_platform/css_flexbox_1/ref/percentage-heights-002.json +++ b/tests/web_platform/css_flexbox_1/ref/percentage-heights-002.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/percentage-widths-001.json b/tests/web_platform/css_flexbox_1/ref/percentage-widths-001.json index f16257bf6..67e191a02 100644 --- a/tests/web_platform/css_flexbox_1/ref/percentage-widths-001.json +++ b/tests/web_platform/css_flexbox_1/ref/percentage-widths-001.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/position-absolute-001.json b/tests/web_platform/css_flexbox_1/ref/position-absolute-001.json index 8b1f9c95a..71dd994d2 100644 --- a/tests/web_platform/css_flexbox_1/ref/position-absolute-001.json +++ b/tests/web_platform/css_flexbox_1/ref/position-absolute-001.json @@ -22651,4 +22651,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/position-absolute-002.json b/tests/web_platform/css_flexbox_1/ref/position-absolute-002.json index 56fa7ba8e..b1267fa87 100644 --- a/tests/web_platform/css_flexbox_1/ref/position-absolute-002.json +++ b/tests/web_platform/css_flexbox_1/ref/position-absolute-002.json @@ -2413,4 +2413,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/position-absolute-003.json b/tests/web_platform/css_flexbox_1/ref/position-absolute-003.json index c159f7bb7..df6eee903 100644 --- a/tests/web_platform/css_flexbox_1/ref/position-absolute-003.json +++ b/tests/web_platform/css_flexbox_1/ref/position-absolute-003.json @@ -1641,4 +1641,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/position-absolute-004.json b/tests/web_platform/css_flexbox_1/ref/position-absolute-004.json index 8e5682fb8..57eb248f8 100644 --- a/tests/web_platform/css_flexbox_1/ref/position-absolute-004.json +++ b/tests/web_platform/css_flexbox_1/ref/position-absolute-004.json @@ -139,4 +139,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/position-absolute-005.json b/tests/web_platform/css_flexbox_1/ref/position-absolute-005.json index 89d4979e0..6dd174ab9 100644 --- a/tests/web_platform/css_flexbox_1/ref/position-absolute-005.json +++ b/tests/web_platform/css_flexbox_1/ref/position-absolute-005.json @@ -795,4 +795,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-center.json b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-center.json index 3d722eddc..de83f7ed1 100644 --- a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-center.json +++ b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-center.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-end.json b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-end.json index 3478a436e..d2ef21b6f 100644 --- a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-end.json +++ b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-end.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-space-around.json b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-space-around.json index 351dc7e83..47b017225 100644 --- a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-space-around.json +++ b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-space-around.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-space-between.json b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-space-between.json index 8d63a4292..c586aac96 100644 --- a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-space-between.json +++ b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-space-between.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-start.json b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-start.json index 920af79c3..153fd8cf0 100644 --- a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-start.json +++ b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-align-content-start.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-base.json b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-base.json index 70a34c0ea..016bb7d62 100644 --- a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-base.json +++ b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-base.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-direction-column-reverse.json b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-direction-column-reverse.json index 25f9b4911..758244757 100644 --- a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-direction-column-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-direction-column-reverse.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-direction-column.json b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-direction-column.json index baa6bbd70..46bb14543 100644 --- a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-direction-column.json +++ b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-direction-column.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-direction-row-reverse.json b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-direction-row-reverse.json index 0e95d848a..3a6d68a39 100644 --- a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-direction-row-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-direction-row-reverse.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-inline.json b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-inline.json index d775420d4..c67734dc1 100644 --- a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-inline.json +++ b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-inline.json @@ -196,4 +196,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-order.json b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-order.json index 5053cb02f..eff4336bb 100644 --- a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-order.json +++ b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-order.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-wrap-reverse.json b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-wrap-reverse.json index 975eeccc5..6912d1b8b 100644 --- a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-wrap-reverse.json +++ b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-wrap-reverse.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-wrap.json b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-wrap.json index e6816c83e..bc5a0d360 100644 --- a/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-wrap.json +++ b/tests/web_platform/css_flexbox_1/ref/ttwf-reftest-flex-wrap.json @@ -333,4 +333,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/visibility-collapse-001.json b/tests/web_platform/css_flexbox_1/ref/visibility-collapse-001.json index 4d72c48bb..bc789924e 100644 --- a/tests/web_platform/css_flexbox_1/ref/visibility-collapse-001.json +++ b/tests/web_platform/css_flexbox_1/ref/visibility-collapse-001.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/visibility-collapse-002.json b/tests/web_platform/css_flexbox_1/ref/visibility-collapse-002.json index 3bd36ae21..486ad31ba 100644 --- a/tests/web_platform/css_flexbox_1/ref/visibility-collapse-002.json +++ b/tests/web_platform/css_flexbox_1/ref/visibility-collapse-002.json @@ -277,4 +277,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/ref/whitespace-in-flexitem-001.json b/tests/web_platform/css_flexbox_1/ref/whitespace-in-flexitem-001.json index 2d98fd46b..cbe539606 100644 --- a/tests/web_platform/css_flexbox_1/ref/whitespace-in-flexitem-001.json +++ b/tests/web_platform/css_flexbox_1/ref/whitespace-in-flexitem-001.json @@ -283,4 +283,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_flexbox_1/test_Flexible_order.py b/tests/web_platform/css_flexbox_1/test_Flexible_order.py index 408bb0c11..16fa0aa8c 100644 --- a/tests/web_platform/css_flexbox_1/test_Flexible_order.py +++ b/tests/web_platform/css_flexbox_1/test_Flexible_order.py @@ -2,4 +2,4 @@ class TestFlexibleOrder(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'Flexible-order')) + vars().update(W3CTestCase.find_tests(__file__, "Flexible-order")) diff --git a/tests/web_platform/css_flexbox_1/test_align_content.py b/tests/web_platform/css_flexbox_1/test_align_content.py index ffa5173c7..99a2298bd 100644 --- a/tests/web_platform/css_flexbox_1/test_align_content.py +++ b/tests/web_platform/css_flexbox_1/test_align_content.py @@ -2,4 +2,4 @@ class TestAlignContent(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'align-content-')) + vars().update(W3CTestCase.find_tests(__file__, "align-content-")) diff --git a/tests/web_platform/css_flexbox_1/test_align_content_center.py b/tests/web_platform/css_flexbox_1/test_align_content_center.py index fa9602425..93c88fa48 100644 --- a/tests/web_platform/css_flexbox_1/test_align_content_center.py +++ b/tests/web_platform/css_flexbox_1/test_align_content_center.py @@ -2,4 +2,4 @@ class TestAlignContent_Center(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'align-content_center')) + vars().update(W3CTestCase.find_tests(__file__, "align-content_center")) diff --git a/tests/web_platform/css_flexbox_1/test_align_content_flex_end.py b/tests/web_platform/css_flexbox_1/test_align_content_flex_end.py index efba501be..8c2379aeb 100644 --- a/tests/web_platform/css_flexbox_1/test_align_content_flex_end.py +++ b/tests/web_platform/css_flexbox_1/test_align_content_flex_end.py @@ -2,4 +2,4 @@ class TestAlignContent_FlexEnd(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'align-content_flex-end')) + vars().update(W3CTestCase.find_tests(__file__, "align-content_flex-end")) diff --git a/tests/web_platform/css_flexbox_1/test_align_content_flex_start.py b/tests/web_platform/css_flexbox_1/test_align_content_flex_start.py index ffbf445d5..2822bde08 100644 --- a/tests/web_platform/css_flexbox_1/test_align_content_flex_start.py +++ b/tests/web_platform/css_flexbox_1/test_align_content_flex_start.py @@ -2,4 +2,4 @@ class TestAlignContent_FlexStart(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'align-content_flex-start')) + vars().update(W3CTestCase.find_tests(__file__, "align-content_flex-start")) diff --git a/tests/web_platform/css_flexbox_1/test_align_content_space_around.py b/tests/web_platform/css_flexbox_1/test_align_content_space_around.py index a59aceff6..18dee2f6f 100644 --- a/tests/web_platform/css_flexbox_1/test_align_content_space_around.py +++ b/tests/web_platform/css_flexbox_1/test_align_content_space_around.py @@ -2,4 +2,4 @@ class TestAlignContent_SpaceAround(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'align-content_space-around')) + vars().update(W3CTestCase.find_tests(__file__, "align-content_space-around")) diff --git a/tests/web_platform/css_flexbox_1/test_align_content_space_between.py b/tests/web_platform/css_flexbox_1/test_align_content_space_between.py index 7dbe04008..686904e5a 100644 --- a/tests/web_platform/css_flexbox_1/test_align_content_space_between.py +++ b/tests/web_platform/css_flexbox_1/test_align_content_space_between.py @@ -2,4 +2,4 @@ class TestAlignContent_SpaceBetween(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'align-content_space-between')) + vars().update(W3CTestCase.find_tests(__file__, "align-content_space-between")) diff --git a/tests/web_platform/css_flexbox_1/test_align_content_stretch.py b/tests/web_platform/css_flexbox_1/test_align_content_stretch.py index 78af3795c..1c35a46f9 100644 --- a/tests/web_platform/css_flexbox_1/test_align_content_stretch.py +++ b/tests/web_platform/css_flexbox_1/test_align_content_stretch.py @@ -2,4 +2,4 @@ class TestAlignContent_Stretch(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'align-content_stretch')) + vars().update(W3CTestCase.find_tests(__file__, "align-content_stretch")) diff --git a/tests/web_platform/css_flexbox_1/test_align_items.py b/tests/web_platform/css_flexbox_1/test_align_items.py index 914009062..430ac1c21 100644 --- a/tests/web_platform/css_flexbox_1/test_align_items.py +++ b/tests/web_platform/css_flexbox_1/test_align_items.py @@ -2,4 +2,4 @@ class TestAlignItems(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'align-items-')) + vars().update(W3CTestCase.find_tests(__file__, "align-items-")) diff --git a/tests/web_platform/css_flexbox_1/test_align_self.py b/tests/web_platform/css_flexbox_1/test_align_self.py index 4c0fe5360..22c32dd7b 100644 --- a/tests/web_platform/css_flexbox_1/test_align_self.py +++ b/tests/web_platform/css_flexbox_1/test_align_self.py @@ -2,4 +2,4 @@ class TestAlignSelf(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'align-self-')) + vars().update(W3CTestCase.find_tests(__file__, "align-self-")) diff --git a/tests/web_platform/css_flexbox_1/test_auto_margins.py b/tests/web_platform/css_flexbox_1/test_auto_margins.py index cd8a1c4bc..bbc0b7a88 100644 --- a/tests/web_platform/css_flexbox_1/test_auto_margins.py +++ b/tests/web_platform/css_flexbox_1/test_auto_margins.py @@ -2,4 +2,4 @@ class TestAutoMargins(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'auto-margins-')) + vars().update(W3CTestCase.find_tests(__file__, "auto-margins-")) diff --git a/tests/web_platform/css_flexbox_1/test_css_box_justify_content.py b/tests/web_platform/css_flexbox_1/test_css_box_justify_content.py index d9114af48..d03673e10 100644 --- a/tests/web_platform/css_flexbox_1/test_css_box_justify_content.py +++ b/tests/web_platform/css_flexbox_1/test_css_box_justify_content.py @@ -2,4 +2,4 @@ class TestCssBoxJustifyContent(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-box-justify-content')) + vars().update(W3CTestCase.find_tests(__file__, "css-box-justify-content")) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_column.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_column.py index 7c184c642..be9284910 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_column.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_column.py @@ -2,4 +2,4 @@ class TestCssFlexboxColumn(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-column')) + vars().update(W3CTestCase.find_tests(__file__, "css-flexbox-column")) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_column_reverse.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_column_reverse.py index cae3a20be..bf4001952 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_column_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_column_reverse.py @@ -2,4 +2,4 @@ class TestCssFlexboxColumnReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-column-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "css-flexbox-column-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_column_reverse_wrap.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_column_reverse_wrap.py index 68f6ce603..328b41150 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_column_reverse_wrap.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_column_reverse_wrap.py @@ -2,4 +2,4 @@ class TestCssFlexboxColumnReverseWrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-column-reverse-wrap')) + vars().update(W3CTestCase.find_tests(__file__, "css-flexbox-column-reverse-wrap")) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_column_reverse_wrap_reverse.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_column_reverse_wrap_reverse.py index 468a2f7f5..a822801ab 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_column_reverse_wrap_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_column_reverse_wrap_reverse.py @@ -2,4 +2,6 @@ class TestCssFlexboxColumnReverseWrapReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-column-reverse-wrap-reverse')) + vars().update( + W3CTestCase.find_tests(__file__, "css-flexbox-column-reverse-wrap-reverse") + ) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_column_wrap.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_column_wrap.py index f15df31d1..b6d93dcc1 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_column_wrap.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_column_wrap.py @@ -2,4 +2,4 @@ class TestCssFlexboxColumnWrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-column-wrap')) + vars().update(W3CTestCase.find_tests(__file__, "css-flexbox-column-wrap")) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_column_wrap_reverse.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_column_wrap_reverse.py index 9ef139062..013bc5190 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_column_wrap_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_column_wrap_reverse.py @@ -2,4 +2,4 @@ class TestCssFlexboxColumnWrapReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-column-wrap-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "css-flexbox-column-wrap-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_height_animation_stretch.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_height_animation_stretch.py index d11bf1a65..f212fcfe9 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_height_animation_stretch.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_height_animation_stretch.py @@ -2,4 +2,6 @@ class TestCssFlexboxHeightAnimationStretch(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-height-animation-stretch')) + vars().update( + W3CTestCase.find_tests(__file__, "css-flexbox-height-animation-stretch") + ) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_img_expand_evenly.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_img_expand_evenly.py index 92c4ff6dc..7808c4d2c 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_img_expand_evenly.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_img_expand_evenly.py @@ -2,4 +2,4 @@ class TestCssFlexboxImgExpandEvenly(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-img-expand-evenly')) + vars().update(W3CTestCase.find_tests(__file__, "css-flexbox-img-expand-evenly")) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_row.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_row.py index e6b4db98c..b7799b69a 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_row.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_row.py @@ -2,4 +2,4 @@ class TestCssFlexboxRow(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-row')) + vars().update(W3CTestCase.find_tests(__file__, "css-flexbox-row")) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_row_reverse.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_row_reverse.py index 3f7e956ea..ecb386d55 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_row_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_row_reverse.py @@ -2,4 +2,4 @@ class TestCssFlexboxRowReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-row-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "css-flexbox-row-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_row_reverse_wrap.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_row_reverse_wrap.py index 9e7ed2bd6..481a26a29 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_row_reverse_wrap.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_row_reverse_wrap.py @@ -2,4 +2,4 @@ class TestCssFlexboxRowReverseWrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-row-reverse-wrap')) + vars().update(W3CTestCase.find_tests(__file__, "css-flexbox-row-reverse-wrap")) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_row_reverse_wrap_reverse.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_row_reverse_wrap_reverse.py index e922f76de..520cdcbff 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_row_reverse_wrap_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_row_reverse_wrap_reverse.py @@ -2,4 +2,6 @@ class TestCssFlexboxRowReverseWrapReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-row-reverse-wrap-reverse')) + vars().update( + W3CTestCase.find_tests(__file__, "css-flexbox-row-reverse-wrap-reverse") + ) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_row_wrap.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_row_wrap.py index ea7a5560f..2264c3527 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_row_wrap.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_row_wrap.py @@ -2,4 +2,4 @@ class TestCssFlexboxRowWrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-row-wrap')) + vars().update(W3CTestCase.find_tests(__file__, "css-flexbox-row-wrap")) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_row_wrap_reverse.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_row_wrap_reverse.py index e9f576ba8..39742d3e6 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_row_wrap_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_row_wrap_reverse.py @@ -2,4 +2,4 @@ class TestCssFlexboxRowWrapReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-row-wrap-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "css-flexbox-row-wrap-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_css_flexbox_test1.py b/tests/web_platform/css_flexbox_1/test_css_flexbox_test1.py index 97e5b6030..c51f8af22 100644 --- a/tests/web_platform/css_flexbox_1/test_css_flexbox_test1.py +++ b/tests/web_platform/css_flexbox_1/test_css_flexbox_test1.py @@ -2,4 +2,4 @@ class TestCssFlexboxTest1(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'css-flexbox-test1')) + vars().update(W3CTestCase.find_tests(__file__, "css-flexbox-test1")) diff --git a/tests/web_platform/css_flexbox_1/test_display_flex.py b/tests/web_platform/css_flexbox_1/test_display_flex.py index 35d449817..ec20bd326 100644 --- a/tests/web_platform/css_flexbox_1/test_display_flex.py +++ b/tests/web_platform/css_flexbox_1/test_display_flex.py @@ -2,4 +2,4 @@ class TestDisplayFlex(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'display-flex-')) + vars().update(W3CTestCase.find_tests(__file__, "display-flex-")) diff --git a/tests/web_platform/css_flexbox_1/test_display_flex_exist.py b/tests/web_platform/css_flexbox_1/test_display_flex_exist.py index c7a446b75..33a61220d 100644 --- a/tests/web_platform/css_flexbox_1/test_display_flex_exist.py +++ b/tests/web_platform/css_flexbox_1/test_display_flex_exist.py @@ -2,4 +2,4 @@ class TestDisplay_Flex_Exist(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'display_flex_exist')) + vars().update(W3CTestCase.find_tests(__file__, "display_flex_exist")) diff --git a/tests/web_platform/css_flexbox_1/test_display_inline_flex_exist.py b/tests/web_platform/css_flexbox_1/test_display_inline_flex_exist.py index 49d03bd75..945c1342b 100644 --- a/tests/web_platform/css_flexbox_1/test_display_inline_flex_exist.py +++ b/tests/web_platform/css_flexbox_1/test_display_inline_flex_exist.py @@ -2,4 +2,4 @@ class TestDisplay_InlineFlex_Exist(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'display_inline-flex_exist')) + vars().update(W3CTestCase.find_tests(__file__, "display_inline-flex_exist")) diff --git a/tests/web_platform/css_flexbox_1/test_flex.py b/tests/web_platform/css_flexbox_1/test_flex.py index c497dc1a8..7b4ad68bf 100644 --- a/tests/web_platform/css_flexbox_1/test_flex.py +++ b/tests/web_platform/css_flexbox_1/test_flex.py @@ -2,4 +2,4 @@ class TestFlex(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-')) + vars().update(W3CTestCase.find_tests(__file__, "flex-")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_align_items_center.py b/tests/web_platform/css_flexbox_1/test_flex_align_items_center.py index 3b0a80ca3..2bde44c20 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_align_items_center.py +++ b/tests/web_platform/css_flexbox_1/test_flex_align_items_center.py @@ -2,4 +2,4 @@ class TestFlexAlignItemsCenter(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-align-items-center')) + vars().update(W3CTestCase.find_tests(__file__, "flex-align-items-center")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_aspect_ratio_img_column.py b/tests/web_platform/css_flexbox_1/test_flex_aspect_ratio_img_column.py index d4e55ef2e..77e48d100 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_aspect_ratio_img_column.py +++ b/tests/web_platform/css_flexbox_1/test_flex_aspect_ratio_img_column.py @@ -2,4 +2,4 @@ class TestFlexAspectRatioImgColumn(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-aspect-ratio-img-column-')) + vars().update(W3CTestCase.find_tests(__file__, "flex-aspect-ratio-img-column-")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_aspect_ratio_img_row.py b/tests/web_platform/css_flexbox_1/test_flex_aspect_ratio_img_row.py index 9dd762d6b..173ba3ae7 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_aspect_ratio_img_row.py +++ b/tests/web_platform/css_flexbox_1/test_flex_aspect_ratio_img_row.py @@ -2,4 +2,4 @@ class TestFlexAspectRatioImgRow(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-aspect-ratio-img-row-')) + vars().update(W3CTestCase.find_tests(__file__, "flex-aspect-ratio-img-row-")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_basis.py b/tests/web_platform/css_flexbox_1/test_flex_basis.py index 771e672e6..479572b7f 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_basis.py +++ b/tests/web_platform/css_flexbox_1/test_flex_basis.py @@ -2,4 +2,4 @@ class TestFlexBasis(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-basis-')) + vars().update(W3CTestCase.find_tests(__file__, "flex-basis-")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_box_wrap.py b/tests/web_platform/css_flexbox_1/test_flex_box_wrap.py index 1bce58085..ba89faae6 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_box_wrap.py +++ b/tests/web_platform/css_flexbox_1/test_flex_box_wrap.py @@ -2,4 +2,4 @@ class TestFlexBoxWrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-box-wrap')) + vars().update(W3CTestCase.find_tests(__file__, "flex-box-wrap")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_container_margin.py b/tests/web_platform/css_flexbox_1/test_flex_container_margin.py index fb0b6fc12..1b1ed929d 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_container_margin.py +++ b/tests/web_platform/css_flexbox_1/test_flex_container_margin.py @@ -2,4 +2,4 @@ class TestFlexContainerMargin(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-container-margin')) + vars().update(W3CTestCase.find_tests(__file__, "flex-container-margin")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_direction.py b/tests/web_platform/css_flexbox_1/test_flex_direction.py index 3093ef239..0557fae83 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_direction.py +++ b/tests/web_platform/css_flexbox_1/test_flex_direction.py @@ -2,4 +2,4 @@ class TestFlexDirection(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-direction')) + vars().update(W3CTestCase.find_tests(__file__, "flex-direction")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_direction_column.py b/tests/web_platform/css_flexbox_1/test_flex_direction_column.py index e3ad5d1c5..3a48497fd 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_direction_column.py +++ b/tests/web_platform/css_flexbox_1/test_flex_direction_column.py @@ -2,4 +2,4 @@ class TestFlexDirection_Column(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-direction_column')) + vars().update(W3CTestCase.find_tests(__file__, "flex-direction_column")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_direction_column_reverse.py b/tests/web_platform/css_flexbox_1/test_flex_direction_column_reverse.py index 3570293bc..4ba856a0e 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_direction_column_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_flex_direction_column_reverse.py @@ -2,4 +2,4 @@ class TestFlexDirection_ColumnReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-direction_column-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "flex-direction_column-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_direction_modify.py b/tests/web_platform/css_flexbox_1/test_flex_direction_modify.py index 5e5a16be3..febfdde96 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_direction_modify.py +++ b/tests/web_platform/css_flexbox_1/test_flex_direction_modify.py @@ -2,4 +2,4 @@ class TestFlexDirectionModify(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-direction-modify')) + vars().update(W3CTestCase.find_tests(__file__, "flex-direction-modify")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_direction_row.py b/tests/web_platform/css_flexbox_1/test_flex_direction_row.py index 2ecfec89c..6c26ae2ad 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_direction_row.py +++ b/tests/web_platform/css_flexbox_1/test_flex_direction_row.py @@ -2,4 +2,4 @@ class TestFlexDirection_Row(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-direction_row')) + vars().update(W3CTestCase.find_tests(__file__, "flex-direction_row")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_direction_row_reverse.py b/tests/web_platform/css_flexbox_1/test_flex_direction_row_reverse.py index 322d93ebe..88b78ae80 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_direction_row_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_flex_direction_row_reverse.py @@ -2,4 +2,4 @@ class TestFlexDirection_RowReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-direction_row-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "flex-direction_row-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_direction_row_vertical.py b/tests/web_platform/css_flexbox_1/test_flex_direction_row_vertical.py index 05dfe077c..0b70d5ca1 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_direction_row_vertical.py +++ b/tests/web_platform/css_flexbox_1/test_flex_direction_row_vertical.py @@ -2,4 +2,4 @@ class TestFlexDirectionRowVertical(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-direction-row-vertical')) + vars().update(W3CTestCase.find_tests(__file__, "flex-direction-row-vertical")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_direction_with_element_insert.py b/tests/web_platform/css_flexbox_1/test_flex_direction_with_element_insert.py index b81cc6862..aa76b296d 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_direction_with_element_insert.py +++ b/tests/web_platform/css_flexbox_1/test_flex_direction_with_element_insert.py @@ -2,4 +2,6 @@ class TestFlexDirectionWithElementInsert(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-direction-with-element-insert')) + vars().update( + W3CTestCase.find_tests(__file__, "flex-direction-with-element-insert") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flex_flexitem_childmargin.py b/tests/web_platform/css_flexbox_1/test_flex_flexitem_childmargin.py index e69c24afe..0cad5e159 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_flexitem_childmargin.py +++ b/tests/web_platform/css_flexbox_1/test_flex_flexitem_childmargin.py @@ -2,4 +2,4 @@ class TestFlexFlexitemChildmargin(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-flexitem-childmargin')) + vars().update(W3CTestCase.find_tests(__file__, "flex-flexitem-childmargin")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_flexitem_percentage_prescation.py b/tests/web_platform/css_flexbox_1/test_flex_flexitem_percentage_prescation.py index 3e3450500..e1670f1cf 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_flexitem_percentage_prescation.py +++ b/tests/web_platform/css_flexbox_1/test_flex_flexitem_percentage_prescation.py @@ -2,4 +2,6 @@ class TestFlexFlexitemPercentagePrescation(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-flexitem-percentage-prescation')) + vars().update( + W3CTestCase.find_tests(__file__, "flex-flexitem-percentage-prescation") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flex_flow.py b/tests/web_platform/css_flexbox_1/test_flex_flow.py index 751f65103..021deb541 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_flow.py +++ b/tests/web_platform/css_flexbox_1/test_flex_flow.py @@ -2,4 +2,4 @@ class TestFlexFlow(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-flow-')) + vars().update(W3CTestCase.find_tests(__file__, "flex-flow-")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_grow.py b/tests/web_platform/css_flexbox_1/test_flex_grow.py index 684d31529..ac3ff3f71 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_grow.py +++ b/tests/web_platform/css_flexbox_1/test_flex_grow.py @@ -2,4 +2,4 @@ class TestFlexGrow(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-grow-')) + vars().update(W3CTestCase.find_tests(__file__, "flex-grow-")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_items_flexibility.py b/tests/web_platform/css_flexbox_1/test_flex_items_flexibility.py index 703d339a8..ef7d4b6c5 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_items_flexibility.py +++ b/tests/web_platform/css_flexbox_1/test_flex_items_flexibility.py @@ -2,4 +2,4 @@ class TestFlexItemsFlexibility(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-items-flexibility')) + vars().update(W3CTestCase.find_tests(__file__, "flex-items-flexibility")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_margin_no_collapse.py b/tests/web_platform/css_flexbox_1/test_flex_margin_no_collapse.py index d85a05d8f..80eb997a8 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_margin_no_collapse.py +++ b/tests/web_platform/css_flexbox_1/test_flex_margin_no_collapse.py @@ -2,4 +2,4 @@ class TestFlexMarginNoCollapse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-margin-no-collapse')) + vars().update(W3CTestCase.find_tests(__file__, "flex-margin-no-collapse")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_minimum_height_flex_items.py b/tests/web_platform/css_flexbox_1/test_flex_minimum_height_flex_items.py index 1803805cf..47f696d74 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_minimum_height_flex_items.py +++ b/tests/web_platform/css_flexbox_1/test_flex_minimum_height_flex_items.py @@ -2,4 +2,4 @@ class TestFlexMinimumHeightFlexItems(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-minimum-height-flex-items-')) + vars().update(W3CTestCase.find_tests(__file__, "flex-minimum-height-flex-items-")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_minimum_width_flex_items.py b/tests/web_platform/css_flexbox_1/test_flex_minimum_width_flex_items.py index 991526b8b..c880e66f9 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_minimum_width_flex_items.py +++ b/tests/web_platform/css_flexbox_1/test_flex_minimum_width_flex_items.py @@ -2,4 +2,4 @@ class TestFlexMinimumWidthFlexItems(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-minimum-width-flex-items-')) + vars().update(W3CTestCase.find_tests(__file__, "flex-minimum-width-flex-items-")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_order.py b/tests/web_platform/css_flexbox_1/test_flex_order.py index 65075d7f5..fb3aeea92 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_order.py +++ b/tests/web_platform/css_flexbox_1/test_flex_order.py @@ -2,4 +2,4 @@ class TestFlexOrder(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-order')) + vars().update(W3CTestCase.find_tests(__file__, "flex-order")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_shrink.py b/tests/web_platform/css_flexbox_1/test_flex_shrink.py index 5f805bebf..284b257ef 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flex_shrink.py @@ -2,4 +2,4 @@ class TestFlexShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-shrink-')) + vars().update(W3CTestCase.find_tests(__file__, "flex-shrink-")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_vertical_align_effect.py b/tests/web_platform/css_flexbox_1/test_flex_vertical_align_effect.py index e619fc20a..82234c8b2 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_vertical_align_effect.py +++ b/tests/web_platform/css_flexbox_1/test_flex_vertical_align_effect.py @@ -2,4 +2,4 @@ class TestFlexVerticalAlignEffect(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-vertical-align-effect')) + vars().update(W3CTestCase.find_tests(__file__, "flex-vertical-align-effect")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_wrap.py b/tests/web_platform/css_flexbox_1/test_flex_wrap.py index 0839d7bca..74e67793b 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_wrap.py +++ b/tests/web_platform/css_flexbox_1/test_flex_wrap.py @@ -2,4 +2,4 @@ class TestFlexWrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-wrap-')) + vars().update(W3CTestCase.find_tests(__file__, "flex-wrap-")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_wrap_nowrap.py b/tests/web_platform/css_flexbox_1/test_flex_wrap_nowrap.py index 4aee73d77..f1bdc5530 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_wrap_nowrap.py +++ b/tests/web_platform/css_flexbox_1/test_flex_wrap_nowrap.py @@ -2,4 +2,4 @@ class TestFlexWrap_Nowrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-wrap_nowrap')) + vars().update(W3CTestCase.find_tests(__file__, "flex-wrap_nowrap")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_wrap_wrap.py b/tests/web_platform/css_flexbox_1/test_flex_wrap_wrap.py index 796ad903b..0d79e689e 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_wrap_wrap.py +++ b/tests/web_platform/css_flexbox_1/test_flex_wrap_wrap.py @@ -2,4 +2,4 @@ class TestFlexWrap_Wrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-wrap_wrap')) + vars().update(W3CTestCase.find_tests(__file__, "flex-wrap_wrap")) diff --git a/tests/web_platform/css_flexbox_1/test_flex_wrap_wrap_reverse.py b/tests/web_platform/css_flexbox_1/test_flex_wrap_wrap_reverse.py index 071856b6e..8916619d3 100644 --- a/tests/web_platform/css_flexbox_1/test_flex_wrap_wrap_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_flex_wrap_wrap_reverse.py @@ -2,4 +2,4 @@ class TestFlexWrap_WrapReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flex-wrap_wrap-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "flex-wrap_wrap-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_absolute_atomic.py b/tests/web_platform/css_flexbox_1/test_flexbox_absolute_atomic.py index 454c37aec..42a205e73 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_absolute_atomic.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_absolute_atomic.py @@ -2,4 +2,4 @@ class TestFlexbox_AbsoluteAtomic(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_absolute-atomic')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_absolute-atomic")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_content_center.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_content_center.py index e4e27285a..8a49dad2e 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_content_center.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_content_center.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignContentCenter(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-content-center')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-content-center")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_content_flexend.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_content_flexend.py index cc7bb2ce7..e0464cf4b 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_content_flexend.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_content_flexend.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignContentFlexend(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-content-flexend')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-content-flexend")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_content_flexstart.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_content_flexstart.py index 6817130d4..292990000 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_content_flexstart.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_content_flexstart.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignContentFlexstart(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-content-flexstart')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-content-flexstart")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_content_spacearound.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_content_spacearound.py index 305d5ea2c..f31b5958e 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_content_spacearound.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_content_spacearound.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignContentSpacearound(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-content-spacearound')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-content-spacearound")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_content_spacebetween.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_content_spacebetween.py index eaa113f4b..71a1d2efd 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_content_spacebetween.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_content_spacebetween.py @@ -2,4 +2,6 @@ class TestFlexbox_AlignContentSpacebetween(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-content-spacebetween')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_align-content-spacebetween") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_content_stretch.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_content_stretch.py index 79f78613d..eead390d0 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_content_stretch.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_content_stretch.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignContentStretch(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-content-stretch')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-content-stretch")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_items_baseline.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_items_baseline.py index 798570998..d5dd90bd9 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_items_baseline.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_items_baseline.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignItemsBaseline(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-items-baseline')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-items-baseline")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_items_center.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_items_center.py index 986540953..e527fc6e5 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_items_center.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_items_center.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignItemsCenter(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-items-center')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-items-center")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_items_flexend.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_items_flexend.py index 41feaf1d9..ca5e693ca 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_items_flexend.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_items_flexend.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignItemsFlexend(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-items-flexend')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-items-flexend")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_items_flexstart.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_items_flexstart.py index c744e7faa..479234c16 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_items_flexstart.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_items_flexstart.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignItemsFlexstart(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-items-flexstart')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-items-flexstart")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_items_stretch.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_items_stretch.py index e9f9fab74..b09495597 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_items_stretch.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_items_stretch.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignItemsStretch(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-items-stretch')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-items-stretch")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_self_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_self_auto.py index 3e989fcc4..b9cd8f197 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_self_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_self_auto.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignSelfAuto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-self-auto')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-self-auto")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_self_baseline.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_self_baseline.py index 7f779658f..923464506 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_self_baseline.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_self_baseline.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignSelfBaseline(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-self-baseline')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-self-baseline")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_self_center.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_self_center.py index d205c6d18..8e54a6e06 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_self_center.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_self_center.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignSelfCenter(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-self-center')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-self-center")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_self_flexend.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_self_flexend.py index 21acd800c..477a1d5f0 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_self_flexend.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_self_flexend.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignSelfFlexend(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-self-flexend')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-self-flexend")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_self_flexstart.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_self_flexstart.py index 2209bae47..edbb34d92 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_self_flexstart.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_self_flexstart.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignSelfFlexstart(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-self-flexstart')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-self-flexstart")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_align_self_stretch.py b/tests/web_platform/css_flexbox_1/test_flexbox_align_self_stretch.py index 59e7fb716..9610c9a8d 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_align_self_stretch.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_align_self_stretch.py @@ -2,4 +2,4 @@ class TestFlexbox_AlignSelfStretch(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_align-self-stretch')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_align-self-stretch")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_block.py b/tests/web_platform/css_flexbox_1/test_flexbox_block.py index 38ce0bcfd..feac02083 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_block.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_block.py @@ -2,4 +2,4 @@ class TestFlexbox_Block(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_block')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_block")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_box_clear.py b/tests/web_platform/css_flexbox_1/test_flexbox_box_clear.py index f6fba8de5..4c06fbf36 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_box_clear.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_box_clear.py @@ -2,4 +2,4 @@ class TestFlexbox_BoxClear(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_box-clear')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_box-clear")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_columns.py b/tests/web_platform/css_flexbox_1/test_flexbox_columns.py index 0c7dedd1d..25e5fe0e3 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_columns.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_columns.py @@ -2,4 +2,4 @@ class TestFlexbox_Columns(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_columns')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_columns")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_columns_flexitems.py b/tests/web_platform/css_flexbox_1/test_flexbox_columns_flexitems.py index 7613fd438..fecd94f5d 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_columns_flexitems.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_columns_flexitems.py @@ -2,4 +2,4 @@ class TestFlexbox_ColumnsFlexitems(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_columns-flexitems')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_columns-flexitems")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_direction_column.py b/tests/web_platform/css_flexbox_1/test_flexbox_direction_column.py index 4c55c4cff..291de9d6a 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_direction_column.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_direction_column.py @@ -2,4 +2,4 @@ class TestFlexbox_DirectionColumn(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_direction-column')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_direction-column")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_direction_column_reverse.py b/tests/web_platform/css_flexbox_1/test_flexbox_direction_column_reverse.py index dcfdd73d6..a48ec80ce 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_direction_column_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_direction_column_reverse.py @@ -2,4 +2,4 @@ class TestFlexbox_DirectionColumnReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_direction-column-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_direction-column-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_direction_row_reverse.py b/tests/web_platform/css_flexbox_1/test_flexbox_direction_row_reverse.py index c20720f87..33ee6712d 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_direction_row_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_direction_row_reverse.py @@ -2,4 +2,4 @@ class TestFlexbox_DirectionRowReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_direction-row-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_direction-row-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_display.py b/tests/web_platform/css_flexbox_1/test_flexbox_display.py index fc9bb9869..d48fa6f4f 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_display.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_display.py @@ -2,4 +2,4 @@ class TestFlexbox_Display(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_display')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_display")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_fbfc.py b/tests/web_platform/css_flexbox_1/test_flexbox_fbfc.py index ecdd57023..692befbee 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_fbfc.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_fbfc.py @@ -2,4 +2,4 @@ class TestFlexbox_Fbfc(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_fbfc')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_fbfc")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_fbfc2.py b/tests/web_platform/css_flexbox_1/test_flexbox_fbfc2.py index 8b8888888..5df2c75cb 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_fbfc2.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_fbfc2.py @@ -2,4 +2,4 @@ class TestFlexbox_Fbfc2(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_fbfc2')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_fbfc2")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_first_line.py b/tests/web_platform/css_flexbox_1/test_flexbox_first_line.py index 4e6d4d902..f86b7cdc8 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_first_line.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_first_line.py @@ -2,4 +2,4 @@ class TestFlexbox_FirstLine(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_first-line')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_first-line")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0.py index 5ae650c87..7ef9efb6b 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex0(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0.py index 2088359b0..ba37b74d8 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex00(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-0-')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-0-")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_0_unitless.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_0_unitless.py index 0dab820c8..9a7c970b9 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_0_unitless.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_0_unitless.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex000Unitless(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-0-0-unitless')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-0-0-unitless")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_1_unitless_basis.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_1_unitless_basis.py index 019a6e95a..f53368e74 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_1_unitless_basis.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_1_unitless_basis.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex001UnitlessBasis(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-0-1-unitless-basis')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-0-1-unitless-basis")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_N.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_N.py index fd062c6d8..dd8c5f95c 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_N.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_N.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex00N(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-0-N')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-0-N")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_N_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_N_shrink.py index a4bd55d53..1d8abc0d0 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_N_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_N_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex00NShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-0-N-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-0-N-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_N_unitless_basis.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_N_unitless_basis.py index fb3966931..7dad998d1 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_N_unitless_basis.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_N_unitless_basis.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex00NUnitlessBasis(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-0-N-unitless-basis')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-0-N-unitless-basis")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_Npercent.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_Npercent.py index a135c5642..22b62c2eb 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_Npercent.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_Npercent.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex00Npercent(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-0-Npercent')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-0-Npercent")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_Npercent_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_Npercent_shrink.py index 3920a7c8f..ba1faefd2 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_Npercent_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_Npercent_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex00NpercentShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-0-Npercent-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-0-Npercent-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_auto.py index a9420c7fe..621541449 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_auto.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex00Auto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-0-auto')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-0-auto")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_auto_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_auto_shrink.py index 580cf1901..907679321 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_auto_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_0_auto_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex00AutoShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-0-auto-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-0-auto-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1.py index cabbf9d29..8cceeb447 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex01(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-1-')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-1-")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_0_unitless.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_0_unitless.py index 981c6b763..943bb9c0e 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_0_unitless.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_0_unitless.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex010Unitless(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-1-0-unitless')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-1-0-unitless")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_1_unitless_basis.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_1_unitless_basis.py index 798ae41d4..11649e707 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_1_unitless_basis.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_1_unitless_basis.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex011UnitlessBasis(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-1-1-unitless-basis')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-1-1-unitless-basis")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_N.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_N.py index 2f41938ce..9be1e8c67 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_N.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_N.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex01N(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-1-N')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-1-N")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_N_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_N_shrink.py index 550e28f4c..e54bf4e48 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_N_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_N_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex01NShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-1-N-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-1-N-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_N_unitless_basis.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_N_unitless_basis.py index 479726434..53388f10e 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_N_unitless_basis.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_N_unitless_basis.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex01NUnitlessBasis(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-1-N-unitless-basis')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-1-N-unitless-basis")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_Npercent.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_Npercent.py index 5c4c1f96b..fafb4ba26 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_Npercent.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_Npercent.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex01Npercent(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-1-Npercent')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-1-Npercent")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_Npercent_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_Npercent_shrink.py index 3b8bd300c..c2605c97a 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_Npercent_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_Npercent_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex01NpercentShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-1-Npercent-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-1-Npercent-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_auto.py index d871f2003..61ca8c89f 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_auto.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex01Auto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-1-auto')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-1-auto")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_auto_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_auto_shrink.py index ce67b1e1e..3067dcc41 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_auto_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_1_auto_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex01AutoShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-1-auto-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-1-auto-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N.py index 19d7e1c44..62f5ae224 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex0N(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-N')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-N")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_0_unitless.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_0_unitless.py index 2d70a7a44..1812f5aa8 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_0_unitless.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_0_unitless.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex0N0Unitless(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-N-0-unitless')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-N-0-unitless")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_N.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_N.py index c53055515..b944abc40 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_N.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_N.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex0NN(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-N-N')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-N-N")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_N_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_N_shrink.py index 8be7f8d05..252e42b00 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_N_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_N_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex0NNShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-N-N-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-N-N-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_Npercent.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_Npercent.py index 34f8c2a34..147c7025f 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_Npercent.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_Npercent.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex0NNpercent(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-N-Npercent')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-N-Npercent")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_Npercent_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_Npercent_shrink.py index 455a831de..a3dbf4ec4 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_Npercent_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_Npercent_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex0NNpercentShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-N-Npercent-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-N-Npercent-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_auto.py index 15f083131..1e2e1a44e 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_auto.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex0NAuto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-N-auto')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-N-auto")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_auto_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_auto_shrink.py index c870ab6d0..1f726eb46 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_auto_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_N_auto_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex0NAutoShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-N-auto-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-N-auto-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_auto.py index 87e0e9707..0239c8448 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_0_auto.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex0Auto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-0-auto')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-0-auto")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1.py index 92e464d49..2b3e36ee9 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex1(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0.py index dad9df3a8..b84d4dcfa 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex10(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-0-')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-0-")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_0_unitless.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_0_unitless.py index 41f504b34..bbd836abd 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_0_unitless.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_0_unitless.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex100Unitless(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-0-0-unitless')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-0-0-unitless")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_N.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_N.py index 4d67f5480..fda063da0 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_N.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_N.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex10N(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-0-N')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-0-N")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_N_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_N_shrink.py index 1bdf33373..396dce05e 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_N_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_N_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex10NShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-0-N-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-0-N-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_Npercent.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_Npercent.py index 95870a983..8b0d73922 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_Npercent.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_Npercent.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex10Npercent(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-0-Npercent')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-0-Npercent")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_Npercent_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_Npercent_shrink.py index c8638dadf..4044aebf0 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_Npercent_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_Npercent_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex10NpercentShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-0-Npercent-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-0-Npercent-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_auto.py index 34907a5ec..da52ee694 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_auto.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex10Auto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-0-auto')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-0-auto")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_auto_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_auto_shrink.py index 900813e95..b52fd4509 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_auto_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_0_auto_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex10AutoShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-0-auto-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-0-auto-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1.py index 32f514d50..3056de0ed 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex11(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-1-')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-1-")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_0_unitless.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_0_unitless.py index c1ba716d4..836ef2993 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_0_unitless.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_0_unitless.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex110Unitless(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-1-0-unitless')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-1-0-unitless")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_N.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_N.py index 75e20a2e3..4e3bf9653 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_N.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_N.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex11N(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-1-N')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-1-N")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_N_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_N_shrink.py index a752a4024..c80f62cf2 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_N_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_N_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex11NShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-1-N-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-1-N-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_Npercent.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_Npercent.py index e3495b04e..0536ef60d 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_Npercent.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_Npercent.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex11Npercent(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-1-Npercent')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-1-Npercent")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_Npercent_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_Npercent_shrink.py index 09c740347..191d4e332 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_Npercent_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_Npercent_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex11NpercentShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-1-Npercent-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-1-Npercent-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_auto.py index 253061f01..2b263c5ac 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_auto.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex11Auto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-1-auto')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-1-auto")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_auto_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_auto_shrink.py index 1e41bcf49..a9d3178e8 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_auto_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_1_auto_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex11AutoShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-1-auto-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-1-auto-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N.py index bfaa75375..3dc36dde2 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex1N(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-N')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-N")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_0_unitless.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_0_unitless.py index 07a181347..560093be5 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_0_unitless.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_0_unitless.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex1N0Unitless(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-N-0-unitless')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-N-0-unitless")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_N.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_N.py index 77f7b0344..3b82386af 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_N.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_N.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex1NN(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-N-N')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-N-N")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_N_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_N_shrink.py index 37ff88320..f73bfe66c 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_N_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_N_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex1NNShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-N-N-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-N-N-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_Npercent.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_Npercent.py index d6bcf3cf4..339e873d9 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_Npercent.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_Npercent.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex1NNpercent(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-N-Npercent')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-N-Npercent")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_Npercent_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_Npercent_shrink.py index 8eea73951..e3e4f46ea 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_Npercent_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_Npercent_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex1NNpercentShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-N-Npercent-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-N-Npercent-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_auto.py index e2f6c6fa8..b151b9451 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_auto.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex1NAuto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-N-auto')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-N-auto")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_auto_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_auto_shrink.py index 327d33571..2eb612a3d 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_auto_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_1_N_auto_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_Flex1NAutoShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-1-N-auto-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-1-N-auto-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N.py index de856ab18..00f009e2f 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0.py index 866ed32ee..1b75e8254 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN0(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-0-')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-0-")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_0_unitless.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_0_unitless.py index e363ef509..cedc26f45 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_0_unitless.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_0_unitless.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN00Unitless(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-0-0-unitless')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-0-0-unitless")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_N.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_N.py index 72685f2e7..0006bc27b 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_N.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_N.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN0N(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-0-N')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-0-N")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_N_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_N_shrink.py index 0c58565ba..5050e0254 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_N_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_N_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN0NShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-0-N-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-0-N-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_Npercent.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_Npercent.py index e793c54aa..f771ea3b2 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_Npercent.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_Npercent.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN0Npercent(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-0-Npercent')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-0-Npercent")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_Npercent_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_Npercent_shrink.py index 21486e152..2ea03bd0b 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_Npercent_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_Npercent_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN0NpercentShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-0-Npercent-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-0-Npercent-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_auto.py index bcd3d0ffb..5e25b30e0 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_auto.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN0Auto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-0-auto')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-0-auto")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_auto_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_auto_shrink.py index 9901522f2..5324cf799 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_auto_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_0_auto_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN0AutoShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-0-auto-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-0-auto-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1.py index 1252ca24a..785a55a5e 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN1(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-1-')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-1-")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_0_unitless.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_0_unitless.py index d2e88494f..1a542c8ef 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_0_unitless.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_0_unitless.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN10Unitless(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-1-0-unitless')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-1-0-unitless")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_N.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_N.py index 418568e16..e24719d3b 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_N.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_N.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN1N(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-1-N')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-1-N")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_N_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_N_shrink.py index 0a6de0c19..f4dcde88c 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_N_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_N_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN1NShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-1-N-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-1-N-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_Npercent.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_Npercent.py index 191f0a7b9..c13460e0d 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_Npercent.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_Npercent.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN1Npercent(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-1-Npercent')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-1-Npercent")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_Npercent_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_Npercent_shrink.py index 0b72795d7..a2a07861d 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_Npercent_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_Npercent_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN1NpercentShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-1-Npercent-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-1-Npercent-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_auto.py index 59bc0852c..056a269a9 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_auto.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN1Auto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-1-auto')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-1-auto")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_auto_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_auto_shrink.py index 934da0f59..913898767 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_auto_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_1_auto_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexN1AutoShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-1-auto-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-1-auto-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N.py index 293b2a371..28ce663a7 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexNN(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-N')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-N")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_0_unitless.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_0_unitless.py index c69b01a2d..b2f1ef610 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_0_unitless.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_0_unitless.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexNN0Unitless(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-N-0-unitless')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-N-0-unitless")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_N.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_N.py index 2aae7b48f..f8bfff4ec 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_N.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_N.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexNNN(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-N-N')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-N-N")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_N_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_N_shrink.py index 64de97fe0..85060c5e9 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_N_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_N_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexNNNShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-N-N-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-N-N-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_Npercent.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_Npercent.py index 093146401..924450ceb 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_Npercent.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_Npercent.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexNNNpercent(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-N-Npercent')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-N-Npercent")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_Npercent_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_Npercent_shrink.py index 6973e3774..55eba6fdb 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_Npercent_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_Npercent_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexNNNpercentShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-N-Npercent-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-N-Npercent-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_auto.py index c960c7183..75a904760 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_auto.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexNNAuto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-N-auto')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-N-auto")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_auto_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_auto_shrink.py index bc06f2986..0e3961ae7 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_auto_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_N_N_auto_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexNNAutoShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-N-N-auto-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-N-N-auto-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_auto.py index 803eb42e5..ff2764d4c 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_auto.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexAuto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-auto')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-auto")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_basis.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_basis.py index 8508538a4..cd54b0add 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_basis.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_basis.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexBasis(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-basis')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-basis")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_basis_shrink.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_basis_shrink.py index cd35e6f11..09f05bf22 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_basis_shrink.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_basis_shrink.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexBasisShrink(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-basis-shrink')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-basis-shrink")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_column.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_column.py index 20507f14b..7826e53bc 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_column.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_column.py @@ -2,4 +2,4 @@ class TestFlexboxFlexDirectionColumn(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox-flex-direction-column')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox-flex-direction-column")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_column_reverse.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_column_reverse.py index 9b5257fcd..51cc6c15f 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_column_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_column_reverse.py @@ -2,4 +2,6 @@ class TestFlexboxFlexDirectionColumnReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox-flex-direction-column-reverse')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox-flex-direction-column-reverse") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_default.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_default.py index bf375fe5c..5f838f233 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_default.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_default.py @@ -2,4 +2,4 @@ class TestFlexboxFlexDirectionDefault(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox-flex-direction-default')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox-flex-direction-default")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_row.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_row.py index 0dbaa96c8..d0d9b58eb 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_row.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_row.py @@ -2,4 +2,4 @@ class TestFlexboxFlexDirectionRow(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox-flex-direction-row')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox-flex-direction-row")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_row_reverse.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_row_reverse.py index ef7d5ad19..ff479ec13 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_row_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_direction_row_reverse.py @@ -2,4 +2,6 @@ class TestFlexboxFlexDirectionRowReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox-flex-direction-row-reverse')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox-flex-direction-row-reverse") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_formatting_interop.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_formatting_interop.py index 64f3dc8e3..0394c294b 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_formatting_interop.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_formatting_interop.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexFormattingInterop(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-formatting-interop')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-formatting-interop")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_initial.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_initial.py index d9f8410cc..700489bc1 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_initial.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_initial.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexInitial(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-initial')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-initial")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural.py index 1a640fe73..4048aa619 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexNatural(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-natural')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-natural")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_mixed_basis.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_mixed_basis.py index 9ea0077d9..d2cc071b2 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_mixed_basis.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_mixed_basis.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexNaturalMixedBasis(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-natural-mixed-basis')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-natural-mixed-basis")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_mixed_basis_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_mixed_basis_auto.py index 5509bfbac..9c3aa3907 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_mixed_basis_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_mixed_basis_auto.py @@ -2,4 +2,6 @@ class TestFlexbox_FlexNaturalMixedBasisAuto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-natural-mixed-basis-auto')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_flex-natural-mixed-basis-auto") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_variable_auto_basis.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_variable_auto_basis.py index b7371a751..2b0232d92 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_variable_auto_basis.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_variable_auto_basis.py @@ -2,4 +2,6 @@ class TestFlexbox_FlexNaturalVariableAutoBasis(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-natural-variable-auto-basis')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_flex-natural-variable-auto-basis") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_variable_zero_basis.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_variable_zero_basis.py index a66eaa377..9323cf55e 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_variable_zero_basis.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_natural_variable_zero_basis.py @@ -2,4 +2,6 @@ class TestFlexbox_FlexNaturalVariableZeroBasis(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-natural-variable-zero-basis')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_flex-natural-variable-zero-basis") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_none.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_none.py index 44406432b..f4c2a9740 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_none.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_none.py @@ -2,4 +2,4 @@ class TestFlexbox_FlexNone(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flex-none')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flex-none")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_default.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_default.py index 254e83c43..53306c155 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_default.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_default.py @@ -2,4 +2,4 @@ class TestFlexboxFlexWrapDefault(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox-flex-wrap-default')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox-flex-wrap-default")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_flexing.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_flexing.py index 8065a7621..c837740b8 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_flexing.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_flexing.py @@ -2,4 +2,4 @@ class TestFlexboxFlexWrapFlexing(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox-flex-wrap-flexing')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox-flex-wrap-flexing")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_nowrap.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_nowrap.py index 4d7a5c5ce..161af2a61 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_nowrap.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_nowrap.py @@ -2,4 +2,4 @@ class TestFlexboxFlexWrapNowrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox-flex-wrap-nowrap')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox-flex-wrap-nowrap")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_wrap.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_wrap.py index 35be69afd..7a5d3be1a 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_wrap.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_wrap.py @@ -2,4 +2,4 @@ class TestFlexboxFlexWrapWrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox-flex-wrap-wrap')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox-flex-wrap-wrap")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_wrap_reverse.py b/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_wrap_reverse.py index bc7eb5d51..aaa2540f7 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_wrap_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flex_wrap_wrap_reverse.py @@ -2,4 +2,4 @@ class TestFlexboxFlexWrapWrapReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox-flex-wrap-wrap-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox-flex-wrap-wrap-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_reverse_wrap.py b/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_reverse_wrap.py index e94365f40..fb23f4c40 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_reverse_wrap.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_reverse_wrap.py @@ -2,4 +2,4 @@ class TestFlexbox_FlowColumnReverseWrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flow-column-reverse-wrap')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flow-column-reverse-wrap")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_reverse_wrap_reverse.py b/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_reverse_wrap_reverse.py index 15e16b906..141ce0687 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_reverse_wrap_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_reverse_wrap_reverse.py @@ -2,4 +2,6 @@ class TestFlexbox_FlowColumnReverseWrapReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flow-column-reverse-wrap-reverse')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_flow-column-reverse-wrap-reverse") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_wrap.py b/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_wrap.py index de369bfaf..c27feb4a7 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_wrap.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_wrap.py @@ -2,4 +2,4 @@ class TestFlexbox_FlowColumnWrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flow-column-wrap')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flow-column-wrap")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_wrap_reverse.py b/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_wrap_reverse.py index 663eb6ae7..428954daf 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_wrap_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flow_column_wrap_reverse.py @@ -2,4 +2,4 @@ class TestFlexbox_FlowColumnWrapReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flow-column-wrap-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flow-column-wrap-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flow_row_wrap.py b/tests/web_platform/css_flexbox_1/test_flexbox_flow_row_wrap.py index e7bdab2c8..7e4b5262f 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flow_row_wrap.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flow_row_wrap.py @@ -2,4 +2,4 @@ class TestFlexbox_FlowRowWrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flow-row-wrap')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flow-row-wrap")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_flow_row_wrap_reverse.py b/tests/web_platform/css_flexbox_1/test_flexbox_flow_row_wrap_reverse.py index b86d3f794..22cc7aa0e 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_flow_row_wrap_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_flow_row_wrap_reverse.py @@ -2,4 +2,4 @@ class TestFlexbox_FlowRowWrapReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_flow-row-wrap-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_flow-row-wrap-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_generated.py b/tests/web_platform/css_flexbox_1/test_flexbox_generated.py index 6cb94b12e..206af28ad 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_generated.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_generated.py @@ -2,4 +2,4 @@ class TestFlexbox_Generated(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_generated')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_generated")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_generated_flex.py b/tests/web_platform/css_flexbox_1/test_flexbox_generated_flex.py index 296eccd3c..f856d6c5e 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_generated_flex.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_generated_flex.py @@ -2,4 +2,4 @@ class TestFlexbox_GeneratedFlex(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_generated-flex')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_generated-flex")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_generated_nested_flex.py b/tests/web_platform/css_flexbox_1/test_flexbox_generated_nested_flex.py index a0ad06ff2..3a3b15460 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_generated_nested_flex.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_generated_nested_flex.py @@ -2,4 +2,4 @@ class TestFlexbox_GeneratedNestedFlex(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_generated-nested-flex')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_generated-nested-flex")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_inline.py b/tests/web_platform/css_flexbox_1/test_flexbox_inline.py index 50e788656..c297e67f9 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_inline.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_inline.py @@ -2,4 +2,4 @@ class TestFlexbox_Inline(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_inline')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_inline")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_inline_abspos.py b/tests/web_platform/css_flexbox_1/test_flexbox_inline_abspos.py index dc98f11d0..a87c492c3 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_inline_abspos.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_inline_abspos.py @@ -2,4 +2,4 @@ class TestFlexbox_InlineAbspos(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_inline-abspos')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_inline-abspos")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_inline_float.py b/tests/web_platform/css_flexbox_1/test_flexbox_inline_float.py index eb7d8e517..dd5a7cfe8 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_inline_float.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_inline_float.py @@ -2,4 +2,4 @@ class TestFlexbox_InlineFloat(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_inline-float')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_inline-float")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_item_bottom_float.py b/tests/web_platform/css_flexbox_1/test_flexbox_item_bottom_float.py index 886f1243a..ea0e4c0c3 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_item_bottom_float.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_item_bottom_float.py @@ -2,4 +2,4 @@ class TestFlexbox_ItemBottomFloat(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_item-bottom-float')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_item-bottom-float")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_item_clear.py b/tests/web_platform/css_flexbox_1/test_flexbox_item_clear.py index 2850601ee..ec7200a42 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_item_clear.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_item_clear.py @@ -2,4 +2,4 @@ class TestFlexbox_ItemClear(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_item-clear')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_item-clear")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_item_float.py b/tests/web_platform/css_flexbox_1/test_flexbox_item_float.py index 2fb018591..1a44585ab 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_item_float.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_item_float.py @@ -2,4 +2,4 @@ class TestFlexbox_ItemFloat(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_item-float')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_item-float")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_item_top_float.py b/tests/web_platform/css_flexbox_1/test_flexbox_item_top_float.py index 0eeb24108..37ffb789c 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_item_top_float.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_item_top_float.py @@ -2,4 +2,4 @@ class TestFlexbox_ItemTopFloat(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_item-top-float')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_item-top-float")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_item_vertical_align.py b/tests/web_platform/css_flexbox_1/test_flexbox_item_vertical_align.py index d3bbf9667..3f4ba8912 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_item_vertical_align.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_item_vertical_align.py @@ -2,4 +2,4 @@ class TestFlexbox_ItemVerticalAlign(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_item-vertical-align')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_item-vertical-align")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_center.py b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_center.py index 3e1196222..d1d7ae7ab 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_center.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_center.py @@ -2,4 +2,4 @@ class TestFlexbox_JustifycontentCenter(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_justifycontent-center')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_justifycontent-center")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_center_overflow.py b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_center_overflow.py index 27b5c350a..fb3e791c9 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_center_overflow.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_center_overflow.py @@ -2,4 +2,6 @@ class TestFlexbox_JustifycontentCenterOverflow(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_justifycontent-center-overflow')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_justifycontent-center-overflow") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_flex_end.py b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_flex_end.py index 08842a641..bbdaa7889 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_flex_end.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_flex_end.py @@ -2,4 +2,4 @@ class TestFlexbox_JustifycontentFlexEnd(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_justifycontent-flex-end')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_justifycontent-flex-end")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_flex_start.py b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_flex_start.py index ae027031d..10b2b9475 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_flex_start.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_flex_start.py @@ -2,4 +2,4 @@ class TestFlexbox_JustifycontentFlexStart(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_justifycontent-flex-start')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_justifycontent-flex-start")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacearound.py b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacearound.py index f6d18204a..590d37537 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacearound.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacearound.py @@ -2,4 +2,6 @@ class TestFlexbox_JustifycontentSpacearound(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_justifycontent-spacearound')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_justifycontent-spacearound") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacearound_negative.py b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacearound_negative.py index a823e24d7..cbc3742a5 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacearound_negative.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacearound_negative.py @@ -2,4 +2,6 @@ class TestFlexbox_JustifycontentSpacearoundNegative(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_justifycontent-spacearound-negative')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_justifycontent-spacearound-negative") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacearound_only.py b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacearound_only.py index 8190a29f9..d75c7245a 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacearound_only.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacearound_only.py @@ -2,4 +2,6 @@ class TestFlexbox_JustifycontentSpacearoundOnly(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_justifycontent-spacearound-only')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_justifycontent-spacearound-only") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacebetween.py b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacebetween.py index aea290332..d8229b8e9 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacebetween.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacebetween.py @@ -2,4 +2,6 @@ class TestFlexbox_JustifycontentSpacebetween(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_justifycontent-spacebetween')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_justifycontent-spacebetween") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacebetween_negative.py b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacebetween_negative.py index 189a2979b..0696ad123 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacebetween_negative.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacebetween_negative.py @@ -2,4 +2,6 @@ class TestFlexbox_JustifycontentSpacebetweenNegative(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_justifycontent-spacebetween-negative')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_justifycontent-spacebetween-negative") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacebetween_only.py b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacebetween_only.py index 7b53ed488..379ec573c 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacebetween_only.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_justifycontent_spacebetween_only.py @@ -2,4 +2,6 @@ class TestFlexbox_JustifycontentSpacebetweenOnly(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_justifycontent-spacebetween-only')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_justifycontent-spacebetween-only") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_margin.py b/tests/web_platform/css_flexbox_1/test_flexbox_margin.py index ff467d017..3618df1fd 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_margin.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_margin.py @@ -2,4 +2,4 @@ class TestFlexbox_Margin(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_margin')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_margin")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_margin_auto.py b/tests/web_platform/css_flexbox_1/test_flexbox_margin_auto.py index 0adf04d72..3dcc78de3 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_margin_auto.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_margin_auto.py @@ -2,4 +2,4 @@ class TestFlexbox_MarginAuto(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_margin-auto')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_margin-auto")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_margin_auto_overflow.py b/tests/web_platform/css_flexbox_1/test_flexbox_margin_auto_overflow.py index be6199aec..c3ed5a27d 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_margin_auto_overflow.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_margin_auto_overflow.py @@ -2,4 +2,4 @@ class TestFlexbox_MarginAutoOverflow(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_margin-auto-overflow')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_margin-auto-overflow")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_margin_collapse.py b/tests/web_platform/css_flexbox_1/test_flexbox_margin_collapse.py index 6f6bb921a..217c35055 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_margin_collapse.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_margin_collapse.py @@ -2,4 +2,4 @@ class TestFlexbox_MarginCollapse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_margin-collapse')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_margin-collapse")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_margin_left_ex.py b/tests/web_platform/css_flexbox_1/test_flexbox_margin_left_ex.py index 5666743fe..fe51f9c4c 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_margin_left_ex.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_margin_left_ex.py @@ -2,4 +2,4 @@ class TestFlexbox_MarginLeftEx(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_margin-left-ex')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_margin-left-ex")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_nested_flex.py b/tests/web_platform/css_flexbox_1/test_flexbox_nested_flex.py index fd61cfdd9..72400f520 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_nested_flex.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_nested_flex.py @@ -2,4 +2,4 @@ class TestFlexbox_NestedFlex(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_nested-flex')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_nested-flex")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_object.py b/tests/web_platform/css_flexbox_1/test_flexbox_object.py index af65e3eff..9466b91ac 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_object.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_object.py @@ -2,4 +2,4 @@ class TestFlexbox_Object(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_object')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_object")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_order.py b/tests/web_platform/css_flexbox_1/test_flexbox_order.py index 72525e72f..ab236a445 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_order.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_order.py @@ -2,4 +2,4 @@ class TestFlexbox_Order(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_order')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_order")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_order_abspos_space_around.py b/tests/web_platform/css_flexbox_1/test_flexbox_order_abspos_space_around.py index aa750c853..ae9398534 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_order_abspos_space_around.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_order_abspos_space_around.py @@ -2,4 +2,4 @@ class TestFlexbox_OrderAbsposSpaceAround(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_order-abspos-space-around')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_order-abspos-space-around")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_order_box.py b/tests/web_platform/css_flexbox_1/test_flexbox_order_box.py index e6a62bdf4..d59685c34 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_order_box.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_order_box.py @@ -2,4 +2,4 @@ class TestFlexbox_OrderBox(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_order-box')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_order-box")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_order_from_lowest.py b/tests/web_platform/css_flexbox_1/test_flexbox_order_from_lowest.py index 7240390d0..d3d9c4c61 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_order_from_lowest.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_order_from_lowest.py @@ -2,4 +2,4 @@ class TestFlexboxOrderFromLowest(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox-order-from-lowest')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox-order-from-lowest")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_order_noninteger_invalid.py b/tests/web_platform/css_flexbox_1/test_flexbox_order_noninteger_invalid.py index efa6c5a6c..b6f277630 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_order_noninteger_invalid.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_order_noninteger_invalid.py @@ -2,4 +2,4 @@ class TestFlexbox_OrderNonintegerInvalid(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_order-noninteger-invalid')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_order-noninteger-invalid")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_order_only_flexitems.py b/tests/web_platform/css_flexbox_1/test_flexbox_order_only_flexitems.py index a9e4c91f0..c1e6c3274 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_order_only_flexitems.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_order_only_flexitems.py @@ -2,4 +2,4 @@ class TestFlexboxOrderOnlyFlexitems(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox-order-only-flexitems')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox-order-only-flexitems")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_rowspan.py b/tests/web_platform/css_flexbox_1/test_flexbox_rowspan.py index e4a751efb..c4f8b817b 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_rowspan.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_rowspan.py @@ -2,4 +2,4 @@ class TestFlexbox_Rowspan(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_rowspan')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_rowspan")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_rowspan_overflow.py b/tests/web_platform/css_flexbox_1/test_flexbox_rowspan_overflow.py index 6c1177d59..5d6f97854 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_rowspan_overflow.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_rowspan_overflow.py @@ -2,4 +2,4 @@ class TestFlexbox_RowspanOverflow(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_rowspan-overflow')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_rowspan-overflow")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_rowspan_overflow_automatic.py b/tests/web_platform/css_flexbox_1/test_flexbox_rowspan_overflow_automatic.py index 2e6a1482a..f13f3298d 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_rowspan_overflow_automatic.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_rowspan_overflow_automatic.py @@ -2,4 +2,6 @@ class TestFlexbox_RowspanOverflowAutomatic(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_rowspan-overflow-automatic')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_rowspan-overflow-automatic") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_rtl_direction.py b/tests/web_platform/css_flexbox_1/test_flexbox_rtl_direction.py index 18639174d..3c078a9c3 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_rtl_direction.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_rtl_direction.py @@ -2,4 +2,4 @@ class TestFlexbox_RtlDirection(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_rtl-direction')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_rtl-direction")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_rtl_flow.py b/tests/web_platform/css_flexbox_1/test_flexbox_rtl_flow.py index ac827766a..a8297e364 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_rtl_flow.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_rtl_flow.py @@ -2,4 +2,4 @@ class TestFlexbox_RtlFlow(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_rtl-flow')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_rtl-flow")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_rtl_flow_reverse.py b/tests/web_platform/css_flexbox_1/test_flexbox_rtl_flow_reverse.py index e6c63d1f3..d0e4cfc14 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_rtl_flow_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_rtl_flow_reverse.py @@ -2,4 +2,4 @@ class TestFlexbox_RtlFlowReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_rtl-flow-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_rtl-flow-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_rtl_order.py b/tests/web_platform/css_flexbox_1/test_flexbox_rtl_order.py index 6ebaaf64a..f794d5a9d 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_rtl_order.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_rtl_order.py @@ -2,4 +2,4 @@ class TestFlexbox_RtlOrder(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_rtl-order')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_rtl-order")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_stf_abspos.py b/tests/web_platform/css_flexbox_1/test_flexbox_stf_abspos.py index 365534f1b..e9cb4f1d6 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_stf_abspos.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_stf_abspos.py @@ -2,4 +2,4 @@ class TestFlexbox_StfAbspos(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_stf-abspos')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_stf-abspos")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_stf_float.py b/tests/web_platform/css_flexbox_1/test_flexbox_stf_float.py index 1f17afcd2..b9740c9ed 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_stf_float.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_stf_float.py @@ -2,4 +2,4 @@ class TestFlexbox_StfFloat(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_stf-float')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_stf-float")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_stf_inline_block.py b/tests/web_platform/css_flexbox_1/test_flexbox_stf_inline_block.py index a6364e0ee..ab0dd2aed 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_stf_inline_block.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_stf_inline_block.py @@ -2,4 +2,4 @@ class TestFlexbox_StfInlineBlock(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_stf-inline-block')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_stf-inline-block")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_stf_table.py b/tests/web_platform/css_flexbox_1/test_flexbox_stf_table.py index a49d23e4b..89c764052 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_stf_table.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_stf_table.py @@ -2,4 +2,4 @@ class TestFlexbox_StfTable(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_stf-table')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_stf-table")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_caption.py b/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_caption.py index 443528d89..0005c3897 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_caption.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_caption.py @@ -2,4 +2,4 @@ class TestFlexbox_StfTableCaption(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_stf-table-caption')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_stf-table-caption")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_cell.py b/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_cell.py index 8535410c8..571a48be9 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_cell.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_cell.py @@ -2,4 +2,4 @@ class TestFlexbox_StfTableCell(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_stf-table-cell')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_stf-table-cell")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_row.py b/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_row.py index 7b257b0c1..5a1d5de05 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_row.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_row.py @@ -2,4 +2,4 @@ class TestFlexbox_StfTableRow(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_stf-table-row')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_stf-table-row")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_row_group.py b/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_row_group.py index 70ad44aee..58804d167 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_row_group.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_row_group.py @@ -2,4 +2,4 @@ class TestFlexbox_StfTableRowGroup(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_stf-table-row-group')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_stf-table-row-group")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_singleline.py b/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_singleline.py index 75dc0b755..f5031aae9 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_singleline.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_stf_table_singleline.py @@ -2,4 +2,4 @@ class TestFlexbox_StfTableSingleline(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_stf-table-singleline')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_stf-table-singleline")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_table_fixed_layout.py b/tests/web_platform/css_flexbox_1/test_flexbox_table_fixed_layout.py index 334d81633..cfa06f380 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_table_fixed_layout.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_table_fixed_layout.py @@ -2,4 +2,4 @@ class TestFlexbox_TableFixedLayout(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_table-fixed-layout')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_table-fixed-layout")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_visibility_collapse.py b/tests/web_platform/css_flexbox_1/test_flexbox_visibility_collapse.py index 38c87782e..e7ec9c8ac 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_visibility_collapse.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_visibility_collapse.py @@ -2,4 +2,4 @@ class TestFlexbox_VisibilityCollapse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_visibility-collapse')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_visibility-collapse")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_visibility_collapse_line_wrapping.py b/tests/web_platform/css_flexbox_1/test_flexbox_visibility_collapse_line_wrapping.py index 7f8b56313..474b6c18b 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_visibility_collapse_line_wrapping.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_visibility_collapse_line_wrapping.py @@ -2,4 +2,6 @@ class TestFlexbox_VisibilityCollapseLineWrapping(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_visibility-collapse-line-wrapping')) + vars().update( + W3CTestCase.find_tests(__file__, "flexbox_visibility-collapse-line-wrapping") + ) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_width_overflow.py b/tests/web_platform/css_flexbox_1/test_flexbox_width_overflow.py index 6a824fb34..af7ad80de 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_width_overflow.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_width_overflow.py @@ -2,4 +2,4 @@ class TestFlexbox_WidthOverflow(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_width-overflow')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_width-overflow")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_wrap.py b/tests/web_platform/css_flexbox_1/test_flexbox_wrap.py index c2fd4b8a3..a393830a2 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_wrap.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_wrap.py @@ -2,4 +2,4 @@ class TestFlexbox_Wrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_wrap')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_wrap")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_wrap_long.py b/tests/web_platform/css_flexbox_1/test_flexbox_wrap_long.py index 091bc1158..d52a532de 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_wrap_long.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_wrap_long.py @@ -2,4 +2,4 @@ class TestFlexbox_WrapLong(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_wrap-long')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_wrap-long")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_wrap_reverse.py b/tests/web_platform/css_flexbox_1/test_flexbox_wrap_reverse.py index 7ae9a2464..c0946ccfb 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_wrap_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_wrap_reverse.py @@ -2,4 +2,4 @@ class TestFlexbox_WrapReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexbox_wrap-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "flexbox_wrap-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.py b/tests/web_platform/css_flexbox_1/test_flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.py index 1f14a162f..01687e30c 100644 --- a/tests/web_platform/css_flexbox_1/test_flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.py +++ b/tests/web_platform/css_flexbox_1/test_flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.py @@ -1,7 +1,12 @@ from tests.utils import W3CTestCase -class TestFlexbox_Writing_Mode_Vertical_Lays_Out_Contents_From_Top_To_Bottom(W3CTestCase): +class TestFlexbox_Writing_Mode_Vertical_Lays_Out_Contents_From_Top_To_Bottom( + W3CTestCase +): vars().update( - W3CTestCase.find_tests(__file__, 'flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom') + W3CTestCase.find_tests( + __file__, + "flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom", + ) ) diff --git a/tests/web_platform/css_flexbox_1/test_flexible_box_float.py b/tests/web_platform/css_flexbox_1/test_flexible_box_float.py index d30d9ae2f..0f7f86d5d 100644 --- a/tests/web_platform/css_flexbox_1/test_flexible_box_float.py +++ b/tests/web_platform/css_flexbox_1/test_flexible_box_float.py @@ -2,4 +2,4 @@ class TestFlexibleBoxFloat(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'flexible-box-float')) + vars().update(W3CTestCase.find_tests(__file__, "flexible-box-float")) diff --git a/tests/web_platform/css_flexbox_1/test_justify_content.py b/tests/web_platform/css_flexbox_1/test_justify_content.py index 93647e038..e74f272da 100644 --- a/tests/web_platform/css_flexbox_1/test_justify_content.py +++ b/tests/web_platform/css_flexbox_1/test_justify_content.py @@ -2,4 +2,4 @@ class TestJustifyContent(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'justify-content-')) + vars().update(W3CTestCase.find_tests(__file__, "justify-content-")) diff --git a/tests/web_platform/css_flexbox_1/test_justify_content_center.py b/tests/web_platform/css_flexbox_1/test_justify_content_center.py index aee8927d1..d85f16d14 100644 --- a/tests/web_platform/css_flexbox_1/test_justify_content_center.py +++ b/tests/web_platform/css_flexbox_1/test_justify_content_center.py @@ -2,4 +2,4 @@ class TestJustifyContent_Center(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'justify-content_center')) + vars().update(W3CTestCase.find_tests(__file__, "justify-content_center")) diff --git a/tests/web_platform/css_flexbox_1/test_justify_content_flex_end.py b/tests/web_platform/css_flexbox_1/test_justify_content_flex_end.py index 3a47d992b..0ac8b941d 100644 --- a/tests/web_platform/css_flexbox_1/test_justify_content_flex_end.py +++ b/tests/web_platform/css_flexbox_1/test_justify_content_flex_end.py @@ -2,4 +2,4 @@ class TestJustifyContent_FlexEnd(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'justify-content_flex-end')) + vars().update(W3CTestCase.find_tests(__file__, "justify-content_flex-end")) diff --git a/tests/web_platform/css_flexbox_1/test_justify_content_flex_start.py b/tests/web_platform/css_flexbox_1/test_justify_content_flex_start.py index 5026528bf..e57305bd9 100644 --- a/tests/web_platform/css_flexbox_1/test_justify_content_flex_start.py +++ b/tests/web_platform/css_flexbox_1/test_justify_content_flex_start.py @@ -2,4 +2,4 @@ class TestJustifyContent_FlexStart(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'justify-content_flex-start')) + vars().update(W3CTestCase.find_tests(__file__, "justify-content_flex-start")) diff --git a/tests/web_platform/css_flexbox_1/test_justify_content_space_around.py b/tests/web_platform/css_flexbox_1/test_justify_content_space_around.py index fc08be6e4..e7a2f174d 100644 --- a/tests/web_platform/css_flexbox_1/test_justify_content_space_around.py +++ b/tests/web_platform/css_flexbox_1/test_justify_content_space_around.py @@ -2,4 +2,4 @@ class TestJustifyContent_SpaceAround(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'justify-content_space-around')) + vars().update(W3CTestCase.find_tests(__file__, "justify-content_space-around")) diff --git a/tests/web_platform/css_flexbox_1/test_justify_content_space_between.py b/tests/web_platform/css_flexbox_1/test_justify_content_space_between.py index 3aa1b2117..2c8f7b95a 100644 --- a/tests/web_platform/css_flexbox_1/test_justify_content_space_between.py +++ b/tests/web_platform/css_flexbox_1/test_justify_content_space_between.py @@ -2,4 +2,4 @@ class TestJustifyContent_SpaceBetween(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'justify-content_space-between')) + vars().update(W3CTestCase.find_tests(__file__, "justify-content_space-between")) diff --git a/tests/web_platform/css_flexbox_1/test_layout_algorithm_algo_cross_line.py b/tests/web_platform/css_flexbox_1/test_layout_algorithm_algo_cross_line.py index dc65edce5..d7112c153 100644 --- a/tests/web_platform/css_flexbox_1/test_layout_algorithm_algo_cross_line.py +++ b/tests/web_platform/css_flexbox_1/test_layout_algorithm_algo_cross_line.py @@ -2,4 +2,4 @@ class TestLayoutAlgorithm_AlgoCrossLine(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'layout-algorithm_algo-cross-line-')) + vars().update(W3CTestCase.find_tests(__file__, "layout-algorithm_algo-cross-line-")) diff --git a/tests/web_platform/css_flexbox_1/test_negative_margins.py b/tests/web_platform/css_flexbox_1/test_negative_margins.py index da69b0811..9f2c81621 100644 --- a/tests/web_platform/css_flexbox_1/test_negative_margins.py +++ b/tests/web_platform/css_flexbox_1/test_negative_margins.py @@ -2,4 +2,4 @@ class TestNegativeMargins(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'negative-margins-')) + vars().update(W3CTestCase.find_tests(__file__, "negative-margins-")) diff --git a/tests/web_platform/css_flexbox_1/test_order.py b/tests/web_platform/css_flexbox_1/test_order.py index 9be08f8d5..66196218c 100644 --- a/tests/web_platform/css_flexbox_1/test_order.py +++ b/tests/web_platform/css_flexbox_1/test_order.py @@ -2,4 +2,4 @@ class TestOrder(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'order-')) + vars().update(W3CTestCase.find_tests(__file__, "order-")) diff --git a/tests/web_platform/css_flexbox_1/test_order_value.py b/tests/web_platform/css_flexbox_1/test_order_value.py index 0dd54d860..ab2b86a52 100644 --- a/tests/web_platform/css_flexbox_1/test_order_value.py +++ b/tests/web_platform/css_flexbox_1/test_order_value.py @@ -2,4 +2,4 @@ class TestOrder_Value(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'order_value')) + vars().update(W3CTestCase.find_tests(__file__, "order_value")) diff --git a/tests/web_platform/css_flexbox_1/test_percentage_heights.py b/tests/web_platform/css_flexbox_1/test_percentage_heights.py index 46e10c746..9d1580ec7 100644 --- a/tests/web_platform/css_flexbox_1/test_percentage_heights.py +++ b/tests/web_platform/css_flexbox_1/test_percentage_heights.py @@ -2,4 +2,4 @@ class TestPercentageHeights(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'percentage-heights-')) + vars().update(W3CTestCase.find_tests(__file__, "percentage-heights-")) diff --git a/tests/web_platform/css_flexbox_1/test_percentage_widths.py b/tests/web_platform/css_flexbox_1/test_percentage_widths.py index 63078611e..497743656 100644 --- a/tests/web_platform/css_flexbox_1/test_percentage_widths.py +++ b/tests/web_platform/css_flexbox_1/test_percentage_widths.py @@ -2,4 +2,4 @@ class TestPercentageWidths(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'percentage-widths-')) + vars().update(W3CTestCase.find_tests(__file__, "percentage-widths-")) diff --git a/tests/web_platform/css_flexbox_1/test_position_absolute.py b/tests/web_platform/css_flexbox_1/test_position_absolute.py index 888742eae..41f79a06b 100644 --- a/tests/web_platform/css_flexbox_1/test_position_absolute.py +++ b/tests/web_platform/css_flexbox_1/test_position_absolute.py @@ -2,4 +2,4 @@ class TestPositionAbsolute(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'position-absolute-')) + vars().update(W3CTestCase.find_tests(__file__, "position-absolute-")) diff --git a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_center.py b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_center.py index 650835429..2492b18e6 100644 --- a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_center.py +++ b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_center.py @@ -2,4 +2,6 @@ class TestTtwfReftestFlexAlignContentCenter(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ttwf-reftest-flex-align-content-center')) + vars().update( + W3CTestCase.find_tests(__file__, "ttwf-reftest-flex-align-content-center") + ) diff --git a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_end.py b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_end.py index 2dc50e383..6dd797767 100644 --- a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_end.py +++ b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_end.py @@ -2,4 +2,6 @@ class TestTtwfReftestFlexAlignContentEnd(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ttwf-reftest-flex-align-content-end')) + vars().update( + W3CTestCase.find_tests(__file__, "ttwf-reftest-flex-align-content-end") + ) diff --git a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_space_around.py b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_space_around.py index b78b33b19..6dd0567c1 100644 --- a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_space_around.py +++ b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_space_around.py @@ -2,4 +2,6 @@ class TestTtwfReftestFlexAlignContentSpaceAround(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ttwf-reftest-flex-align-content-space-around')) + vars().update( + W3CTestCase.find_tests(__file__, "ttwf-reftest-flex-align-content-space-around") + ) diff --git a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_space_between.py b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_space_between.py index 59ddb637f..df7e336fd 100644 --- a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_space_between.py +++ b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_space_between.py @@ -2,4 +2,8 @@ class TestTtwfReftestFlexAlignContentSpaceBetween(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ttwf-reftest-flex-align-content-space-between')) + vars().update( + W3CTestCase.find_tests( + __file__, "ttwf-reftest-flex-align-content-space-between" + ) + ) diff --git a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_start.py b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_start.py index e7480f988..6f32bb713 100644 --- a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_start.py +++ b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_align_content_start.py @@ -2,4 +2,6 @@ class TestTtwfReftestFlexAlignContentStart(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ttwf-reftest-flex-align-content-start')) + vars().update( + W3CTestCase.find_tests(__file__, "ttwf-reftest-flex-align-content-start") + ) diff --git a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_base.py b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_base.py index 205dafa6d..5d168ced9 100644 --- a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_base.py +++ b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_base.py @@ -2,4 +2,4 @@ class TestTtwfReftestFlexBase(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ttwf-reftest-flex-base')) + vars().update(W3CTestCase.find_tests(__file__, "ttwf-reftest-flex-base")) diff --git a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_direction_column.py b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_direction_column.py index 4330e6a66..0eb9b6ee4 100644 --- a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_direction_column.py +++ b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_direction_column.py @@ -2,4 +2,6 @@ class TestTtwfReftestFlexDirectionColumn(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ttwf-reftest-flex-direction-column')) + vars().update( + W3CTestCase.find_tests(__file__, "ttwf-reftest-flex-direction-column") + ) diff --git a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_direction_column_reverse.py b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_direction_column_reverse.py index 569a065ba..5cf85f18b 100644 --- a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_direction_column_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_direction_column_reverse.py @@ -2,4 +2,6 @@ class TestTtwfReftestFlexDirectionColumnReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ttwf-reftest-flex-direction-column-reverse')) + vars().update( + W3CTestCase.find_tests(__file__, "ttwf-reftest-flex-direction-column-reverse") + ) diff --git a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_direction_row_reverse.py b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_direction_row_reverse.py index 5c0eb6685..2825f5a63 100644 --- a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_direction_row_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_direction_row_reverse.py @@ -2,4 +2,6 @@ class TestTtwfReftestFlexDirectionRowReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ttwf-reftest-flex-direction-row-reverse')) + vars().update( + W3CTestCase.find_tests(__file__, "ttwf-reftest-flex-direction-row-reverse") + ) diff --git a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_inline.py b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_inline.py index 7c441e82f..4fdae281f 100644 --- a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_inline.py +++ b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_inline.py @@ -2,4 +2,4 @@ class TestTtwfReftestFlexInline(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ttwf-reftest-flex-inline')) + vars().update(W3CTestCase.find_tests(__file__, "ttwf-reftest-flex-inline")) diff --git a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_order.py b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_order.py index 87972c455..f4d07c6a1 100644 --- a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_order.py +++ b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_order.py @@ -2,4 +2,4 @@ class TestTtwfReftestFlexOrder(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ttwf-reftest-flex-order')) + vars().update(W3CTestCase.find_tests(__file__, "ttwf-reftest-flex-order")) diff --git a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_wrap.py b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_wrap.py index e502fb68c..e1b87fb1a 100644 --- a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_wrap.py +++ b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_wrap.py @@ -2,4 +2,4 @@ class TestTtwfReftestFlexWrap(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ttwf-reftest-flex-wrap')) + vars().update(W3CTestCase.find_tests(__file__, "ttwf-reftest-flex-wrap")) diff --git a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_wrap_reverse.py b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_wrap_reverse.py index 506bc4c2e..68cb5a864 100644 --- a/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_wrap_reverse.py +++ b/tests/web_platform/css_flexbox_1/test_ttwf_reftest_flex_wrap_reverse.py @@ -2,4 +2,4 @@ class TestTtwfReftestFlexWrapReverse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'ttwf-reftest-flex-wrap-reverse')) + vars().update(W3CTestCase.find_tests(__file__, "ttwf-reftest-flex-wrap-reverse")) diff --git a/tests/web_platform/css_flexbox_1/test_visibility_collapse.py b/tests/web_platform/css_flexbox_1/test_visibility_collapse.py index 30dd3d97c..ff2c9ff5b 100644 --- a/tests/web_platform/css_flexbox_1/test_visibility_collapse.py +++ b/tests/web_platform/css_flexbox_1/test_visibility_collapse.py @@ -2,4 +2,4 @@ class TestVisibilityCollapse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'visibility-collapse-')) + vars().update(W3CTestCase.find_tests(__file__, "visibility-collapse-")) diff --git a/tests/web_platform/css_flexbox_1/test_whitespace_in_flexitem.py b/tests/web_platform/css_flexbox_1/test_whitespace_in_flexitem.py index 40f4efbca..747f44017 100644 --- a/tests/web_platform/css_flexbox_1/test_whitespace_in_flexitem.py +++ b/tests/web_platform/css_flexbox_1/test_whitespace_in_flexitem.py @@ -2,4 +2,4 @@ class TestWhitespaceInFlexitem(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'whitespace-in-flexitem-')) + vars().update(W3CTestCase.find_tests(__file__, "whitespace-in-flexitem-")) diff --git a/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-changing-containing-block-001.json b/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-changing-containing-block-001.json index b43fa7cef..a44a47ecb 100644 --- a/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-changing-containing-block-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-changing-containing-block-001.json @@ -180,4 +180,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-definite-sizes-001.json b/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-definite-sizes-001.json index 08f9d5fa1..96ee73d70 100644 --- a/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-definite-sizes-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-definite-sizes-001.json @@ -94,4 +94,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-grid-container-containing-block-001.json b/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-grid-container-containing-block-001.json index 2b24193e0..d9e4e2a3c 100644 --- a/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-grid-container-containing-block-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-grid-container-containing-block-001.json @@ -1945,4 +1945,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-grid-container-parent-001.json b/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-grid-container-parent-001.json index 1181ff556..c73b4ad5c 100644 --- a/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-grid-container-parent-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/absolute-positioning-grid-container-parent-001.json @@ -894,4 +894,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-item-absolute-positioning-dynamic-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-item-absolute-positioning-dynamic-001.json index 1803567c6..d7eb6f1c3 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-item-absolute-positioning-dynamic-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-item-absolute-positioning-dynamic-001.json @@ -86,4 +86,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-paint-positioned-children-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-paint-positioned-children-001.json index 454b8bfcb..9f53e90fb 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-paint-positioned-children-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-paint-positioned-children-001.json @@ -157,4 +157,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-children-writing-modes-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-children-writing-modes-001.json index c5c7a2187..54c9e9077 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-children-writing-modes-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-children-writing-modes-001.json @@ -919,4 +919,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-item-dynamic-change-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-item-dynamic-change-001.json index 5404684c9..f42851434 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-item-dynamic-change-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-item-dynamic-change-001.json @@ -141,4 +141,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-background-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-background-001.json index 8a8f0067a..ed4cdb7c8 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-background-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-background-001.json @@ -194,4 +194,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-background-rtl-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-background-rtl-001.json index 5ad7345a6..041f84b58 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-background-rtl-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-background-rtl-001.json @@ -195,4 +195,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-content-alignment-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-content-alignment-001.json index 6a7b471da..9ef838ba1 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-content-alignment-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-content-alignment-001.json @@ -2305,4 +2305,4 @@ "https://drafts.csswg.org/css-grid-1/#abspos", "https://drafts.csswg.org/css-grid-1/#grid-align" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-content-alignment-rtl-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-content-alignment-rtl-001.json index 26dc08896..1e7e0e5c6 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-content-alignment-rtl-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-content-alignment-rtl-001.json @@ -2365,4 +2365,4 @@ "https://drafts.csswg.org/css-grid-1/#abspos", "https://drafts.csswg.org/css-grid-1/#grid-align" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-gaps-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-gaps-001.json index aed386cfb..995d6aeaf 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-gaps-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-gaps-001.json @@ -2621,4 +2621,4 @@ "https://drafts.csswg.org/css-grid-1/#abspos", "https://drafts.csswg.org/css-grid-1/#gutters" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-gaps-rtl-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-gaps-rtl-001.json index 03699d903..ac46d8a1e 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-gaps-rtl-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-gaps-rtl-001.json @@ -2665,4 +2665,4 @@ "https://drafts.csswg.org/css-grid-1/#abspos", "https://drafts.csswg.org/css-grid-1/#gutters" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-implicit-grid-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-implicit-grid-001.json index 673813684..c6f2d4521 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-implicit-grid-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-implicit-grid-001.json @@ -439,4 +439,4 @@ "https://drafts.csswg.org/css-grid-1/#abspos", "https://drafts.csswg.org/css-grid-1/#implicit-grids" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-implicit-grid-line-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-implicit-grid-line-001.json index 0298a6fce..ec0c0646d 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-implicit-grid-line-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-implicit-grid-line-001.json @@ -363,4 +363,4 @@ "https://drafts.csswg.org/css-grid-1/#abspos", "https://drafts.csswg.org/css-grid-1/#implicit-grids" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-padding-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-padding-001.json index d4a9c5d89..93dc8b36f 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-padding-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-padding-001.json @@ -2030,4 +2030,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-unknown-named-grid-line-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-unknown-named-grid-line-001.json index dbebd3529..4b50ce8b1 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-unknown-named-grid-line-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-unknown-named-grid-line-001.json @@ -237,4 +237,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-within-grid-implicit-track-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-within-grid-implicit-track-001.json index e2abbde79..a161959eb 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-within-grid-implicit-track-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-positioned-items-within-grid-implicit-track-001.json @@ -1489,4 +1489,4 @@ "https://drafts.csswg.org/css-grid-1/#abspos", "https://drafts.csswg.org/css-grid-1/#implicit-grids" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/grid-sizing-positioned-items-001.json b/tests/web_platform/css_grid_1/abspos/data/grid-sizing-positioned-items-001.json index 669742efa..0ceb51540 100644 --- a/tests/web_platform/css_grid_1/abspos/data/grid-sizing-positioned-items-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/grid-sizing-positioned-items-001.json @@ -996,4 +996,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-001.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-001.json index 18021c74a..bcd4193ee 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-001.json @@ -169,4 +169,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-002.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-002.json index 950e667c2..f06d10b0d 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-002.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-002.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-003.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-003.json index b1e832052..fb35526d0 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-003.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-003.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-004.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-004.json index b7ec77496..9bfa0554e 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-004.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-004.json @@ -177,4 +177,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-005.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-005.json index b3ab65650..012979ebf 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-005.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-005.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-006.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-006.json index d554dedfa..ebed1e3db 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-006.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-006.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-007.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-007.json index 0c3422ae1..15a75a0a2 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-007.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-007.json @@ -177,4 +177,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-008.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-008.json index 21b56222d..2faf9ab06 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-008.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-008.json @@ -177,4 +177,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-009.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-009.json index af51d0b92..e14045743 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-009.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-009.json @@ -185,4 +185,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-010.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-010.json index c6a2c7727..b12e193e9 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-010.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-010.json @@ -177,4 +177,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-011.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-011.json index ff0da0fd3..933f1d6d6 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-011.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-011.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-012.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-012.json index 50c4bb198..880881954 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-012.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-012.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-013.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-013.json index d825343d2..d01754a82 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-013.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-013.json @@ -177,4 +177,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-014.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-014.json index ab9dbdabc..811d88fd5 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-014.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-014.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-015.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-015.json index 45dd6c4a6..8618fce2a 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-015.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-015.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-016.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-016.json index a508b96f5..1c0e03845 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-016.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-016.json @@ -177,4 +177,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-017.json b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-017.json index 676131425..cc9c4b168 100644 --- a/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-017.json +++ b/tests/web_platform/css_grid_1/abspos/data/orthogonal-positioned-grid-items-017.json @@ -185,4 +185,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-001.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-001.json index f363eb79d..a5d96634c 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-001.json @@ -165,4 +165,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-002.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-002.json index 71abc8152..978681408 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-002.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-002.json @@ -169,4 +169,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-003.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-003.json index b8f67e059..e29ac3186 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-003.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-003.json @@ -169,4 +169,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-004.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-004.json index c1a57ecbc..69bebf572 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-004.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-004.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-005.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-005.json index ddb8ac3b1..f6768ffc8 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-005.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-005.json @@ -169,4 +169,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-006.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-006.json index a63d09d69..30ec42496 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-006.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-006.json @@ -169,4 +169,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-007.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-007.json index df359ad26..8cbde65f3 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-007.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-007.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-008.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-008.json index f5ea7fcf4..29f97b2e2 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-008.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-008.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-009.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-009.json index dccd82ac5..0db8bdda4 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-009.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-009.json @@ -181,4 +181,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-010.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-010.json index b4711ea00..323d4a630 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-010.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-010.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-011.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-011.json index fe2d2effd..931f3d03b 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-011.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-011.json @@ -169,4 +169,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-012.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-012.json index 758a1aa02..fdfe34ddf 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-012.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-012.json @@ -169,4 +169,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-013.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-013.json index 96473526c..c3c023f9f 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-013.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-013.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-014.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-014.json index 2e43ab8bb..3f3c97dec 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-014.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-014.json @@ -169,4 +169,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-015.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-015.json index eb5515369..68a25c861 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-015.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-015.json @@ -169,4 +169,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-016.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-016.json index f93543d55..2fac93546 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-016.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-016.json @@ -173,4 +173,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-017.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-017.json index 8026a3e69..67d17d8db 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-017.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-017.json @@ -181,4 +181,4 @@ "help": [ "https://drafts.csswg.org/css-grid/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-should-not-create-implicit-tracks-001.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-should-not-create-implicit-tracks-001.json index 651140cf8..a3c055648 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-should-not-create-implicit-tracks-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-should-not-create-implicit-tracks-001.json @@ -113,4 +113,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-should-not-take-up-space-001.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-should-not-take-up-space-001.json index 281195a50..a40778d6e 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-should-not-take-up-space-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-should-not-take-up-space-001.json @@ -1028,4 +1028,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-sizing-001.json b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-sizing-001.json index eb6a401ba..af2adc724 100644 --- a/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-sizing-001.json +++ b/tests/web_platform/css_grid_1/abspos/data/positioned-grid-items-sizing-001.json @@ -786,4 +786,4 @@ "help": [ "https://drafts.csswg.org/css-grid-1/#abspos" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-changing-containing-block-001.json b/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-changing-containing-block-001.json index 44ca01564..b83bc49ba 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-changing-containing-block-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-changing-containing-block-001.json @@ -377,4 +377,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-definite-sizes-001.json b/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-definite-sizes-001.json index 06c6b2f4f..923fff94d 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-definite-sizes-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-definite-sizes-001.json @@ -235,4 +235,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-grid-container-containing-block-001.json b/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-grid-container-containing-block-001.json index bd709c2aa..f334cdf81 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-grid-container-containing-block-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-grid-container-containing-block-001.json @@ -3769,4 +3769,4 @@ 30 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-grid-container-parent-001.json b/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-grid-container-parent-001.json index d23a8fd55..7f77933bb 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-grid-container-parent-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/absolute-positioning-grid-container-parent-001.json @@ -1795,4 +1795,4 @@ 20 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-item-absolute-positioning-dynamic-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-item-absolute-positioning-dynamic-001.json index 1bb7d5a39..b67e6e7d5 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-item-absolute-positioning-dynamic-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-item-absolute-positioning-dynamic-001.json @@ -187,4 +187,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-paint-positioned-children-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-paint-positioned-children-001.json index adbd5c2b6..7039784e9 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-paint-positioned-children-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-paint-positioned-children-001.json @@ -323,4 +323,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-children-writing-modes-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-children-writing-modes-001.json index b1d999363..730cf637a 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-children-writing-modes-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-children-writing-modes-001.json @@ -1749,4 +1749,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-item-dynamic-change-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-item-dynamic-change-001.json index 52ddf6cbe..e4f1411c4 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-item-dynamic-change-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-item-dynamic-change-001.json @@ -323,4 +323,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-background-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-background-001.json index f3d5397fa..525214e91 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-background-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-background-001.json @@ -512,4 +512,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-background-rtl-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-background-rtl-001.json index 26a505dd5..adf5b2946 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-background-rtl-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-background-rtl-001.json @@ -512,4 +512,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-content-alignment-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-content-alignment-001.json index b73a7aeef..0b84c9df3 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-content-alignment-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-content-alignment-001.json @@ -5791,4 +5791,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-content-alignment-rtl-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-content-alignment-rtl-001.json index f12877c48..384a4da9f 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-content-alignment-rtl-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-content-alignment-rtl-001.json @@ -5791,4 +5791,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-gaps-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-gaps-001.json index 867e3fc6b..e8fe7e66f 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-gaps-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-gaps-001.json @@ -4271,4 +4271,4 @@ 30 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-gaps-rtl-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-gaps-rtl-001.json index 1c42e576d..1be005a43 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-gaps-rtl-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-gaps-rtl-001.json @@ -4271,4 +4271,4 @@ 30 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-implicit-grid-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-implicit-grid-001.json index a6746867c..78c525830 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-implicit-grid-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-implicit-grid-001.json @@ -847,4 +847,4 @@ 30 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-implicit-grid-line-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-implicit-grid-line-001.json index 74f8356f4..0827a8cc7 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-implicit-grid-line-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-implicit-grid-line-001.json @@ -659,4 +659,4 @@ 30 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-padding-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-padding-001.json index 0acba7b5b..b230a238f 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-padding-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-padding-001.json @@ -3299,4 +3299,4 @@ 30 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-unknown-named-grid-line-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-unknown-named-grid-line-001.json index f9dac0e55..55cae65e0 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-unknown-named-grid-line-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-unknown-named-grid-line-001.json @@ -469,4 +469,4 @@ 30 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-within-grid-implicit-track-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-within-grid-implicit-track-001.json index 0027bf967..2d5ae3920 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-within-grid-implicit-track-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-positioned-items-within-grid-implicit-track-001.json @@ -2363,4 +2363,4 @@ 30 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/grid-sizing-positioned-items-001.json b/tests/web_platform/css_grid_1/abspos/ref/grid-sizing-positioned-items-001.json index ee99b75af..8a60da379 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/grid-sizing-positioned-items-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/grid-sizing-positioned-items-001.json @@ -2363,4 +2363,4 @@ 30 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-001.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-001.json index bd4d97671..41d24748b 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-001.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-002.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-002.json index 0505c88bd..112e613b0 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-002.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-002.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-003.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-003.json index 209c67d45..02dfdd611 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-003.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-003.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-004.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-004.json index 1446d7a63..72f61fe50 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-004.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-004.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-005.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-005.json index 8ecd2f387..fcb991e13 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-005.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-005.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-006.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-006.json index 183ebec87..64a745284 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-006.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-006.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-007.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-007.json index aaadad40d..e32e68ddb 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-007.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-007.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-008.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-008.json index 954d8349f..ab6e716e5 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-008.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-008.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-009.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-009.json index d5bf9bad4..4fa89b4f5 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-009.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-009.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-010.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-010.json index e77111c4b..e2247eb62 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-010.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-010.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-011.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-011.json index 5b2382eb6..6dc97c356 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-011.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-011.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-012.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-012.json index ebfabd8a0..8f617e0e8 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-012.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-012.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-013.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-013.json index 57dcc9241..30a8fba69 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-013.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-013.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-014.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-014.json index aff340f73..e585520be 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-014.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-014.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-015.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-015.json index a6fbb7722..7fdb8bd20 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-015.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-015.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-016.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-016.json index 7ebdaf139..a5ecfd0b5 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-016.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-016.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-017.json b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-017.json index 017262b4b..1fa342b96 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-017.json +++ b/tests/web_platform/css_grid_1/abspos/ref/orthogonal-positioned-grid-items-017.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-001.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-001.json index 312900643..e15067ec1 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-001.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-002.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-002.json index 312900643..e15067ec1 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-002.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-002.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-003.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-003.json index 312900643..e15067ec1 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-003.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-003.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-004.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-004.json index 312900643..e15067ec1 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-004.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-004.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-005.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-005.json index 4bfc40a4a..7a13670a0 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-005.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-005.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-006.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-006.json index 4942c57e0..5c2c8e134 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-006.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-006.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-007.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-007.json index a64b62792..046e08c0a 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-007.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-007.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-008.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-008.json index f073d9767..70f17a05a 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-008.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-008.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-009.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-009.json index b084f585f..9229a4759 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-009.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-009.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-010.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-010.json index b084f585f..9229a4759 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-010.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-010.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-011.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-011.json index ec9f1b486..5f969f503 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-011.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-011.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-012.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-012.json index e8a7aa5dc..77fa45c6d 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-012.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-012.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-013.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-013.json index 484271dfa..d53d738b1 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-013.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-013.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-014.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-014.json index d38138a74..443c76e6f 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-014.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-014.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-015.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-015.json index 20c5132c8..7e27d28aa 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-015.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-015.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-016.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-016.json index 82a5ef5f0..f28f04962 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-016.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-016.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-017.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-017.json index c53db84ac..207e2a889 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-017.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-017.json @@ -285,4 +285,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-should-not-create-implicit-tracks-001.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-should-not-create-implicit-tracks-001.json index 317eafb0d..4f90b7d81 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-should-not-create-implicit-tracks-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-should-not-create-implicit-tracks-001.json @@ -374,4 +374,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-should-not-take-up-space-001.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-should-not-take-up-space-001.json index e7654b1ce..194ec3084 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-should-not-take-up-space-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-should-not-take-up-space-001.json @@ -2459,4 +2459,4 @@ 16 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-sizing-001.json b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-sizing-001.json index 04a60beeb..9fd7ae4bb 100644 --- a/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-sizing-001.json +++ b/tests/web_platform/css_grid_1/abspos/ref/positioned-grid-items-sizing-001.json @@ -1485,4 +1485,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_changing_containing_block.py b/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_changing_containing_block.py index 01ddb0257..745bd1c75 100644 --- a/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_changing_containing_block.py +++ b/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_changing_containing_block.py @@ -2,4 +2,8 @@ class TestAbsolutePositioningChangingContainingBlock(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'absolute-positioning-changing-containing-block-')) + vars().update( + W3CTestCase.find_tests( + __file__, "absolute-positioning-changing-containing-block-" + ) + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_definite_sizes.py b/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_definite_sizes.py index de51f1a2c..c14a4d3eb 100644 --- a/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_definite_sizes.py +++ b/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_definite_sizes.py @@ -2,4 +2,6 @@ class TestAbsolutePositioningDefiniteSizes(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'absolute-positioning-definite-sizes-')) + vars().update( + W3CTestCase.find_tests(__file__, "absolute-positioning-definite-sizes-") + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_grid_container_containing_block.py b/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_grid_container_containing_block.py index 96daac0d7..1b43026d6 100644 --- a/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_grid_container_containing_block.py +++ b/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_grid_container_containing_block.py @@ -2,4 +2,8 @@ class TestAbsolutePositioningGridContainerContainingBlock(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'absolute-positioning-grid-container-containing-block-')) + vars().update( + W3CTestCase.find_tests( + __file__, "absolute-positioning-grid-container-containing-block-" + ) + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_grid_container_parent.py b/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_grid_container_parent.py index 8975c5657..527e917a9 100644 --- a/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_grid_container_parent.py +++ b/tests/web_platform/css_grid_1/abspos/test_absolute_positioning_grid_container_parent.py @@ -2,4 +2,6 @@ class TestAbsolutePositioningGridContainerParent(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'absolute-positioning-grid-container-parent-')) + vars().update( + W3CTestCase.find_tests(__file__, "absolute-positioning-grid-container-parent-") + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_item_absolute_positioning_dynamic.py b/tests/web_platform/css_grid_1/abspos/test_grid_item_absolute_positioning_dynamic.py index 2e1be9d93..4fdb9829c 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_item_absolute_positioning_dynamic.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_item_absolute_positioning_dynamic.py @@ -2,4 +2,6 @@ class TestGridItemAbsolutePositioningDynamic(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-item-absolute-positioning-dynamic-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-item-absolute-positioning-dynamic-") + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_paint_positioned_children.py b/tests/web_platform/css_grid_1/abspos/test_grid_paint_positioned_children.py index f0a1f10e5..5220b364d 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_paint_positioned_children.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_paint_positioned_children.py @@ -2,4 +2,4 @@ class TestGridPaintPositionedChildren(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-paint-positioned-children-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-paint-positioned-children-")) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_children_writing_modes.py b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_children_writing_modes.py index 964fc823e..dcfd01a2f 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_children_writing_modes.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_children_writing_modes.py @@ -2,4 +2,6 @@ class TestGridPositionedChildrenWritingModes(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-positioned-children-writing-modes-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-positioned-children-writing-modes-") + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_item_dynamic_change.py b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_item_dynamic_change.py index cd75a16f4..4e33c7e9f 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_item_dynamic_change.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_item_dynamic_change.py @@ -2,4 +2,6 @@ class TestGridPositionedItemDynamicChange(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-positioned-item-dynamic-change-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-positioned-item-dynamic-change-") + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_background.py b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_background.py index 71947ec6f..c03ac3379 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_background.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_background.py @@ -2,4 +2,4 @@ class TestGridPositionedItemsBackground(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-positioned-items-background-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-positioned-items-background-")) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_background_rtl.py b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_background_rtl.py index a3e0244d2..7ed320591 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_background_rtl.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_background_rtl.py @@ -2,4 +2,6 @@ class TestGridPositionedItemsBackgroundRtl(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-positioned-items-background-rtl-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-positioned-items-background-rtl-") + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_content_alignment.py b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_content_alignment.py index 785f4429e..71f2cb224 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_content_alignment.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_content_alignment.py @@ -2,4 +2,6 @@ class TestGridPositionedItemsContentAlignment(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-positioned-items-content-alignment-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-positioned-items-content-alignment-") + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_content_alignment_rtl.py b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_content_alignment_rtl.py index 65e2e289a..991766b3a 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_content_alignment_rtl.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_content_alignment_rtl.py @@ -2,4 +2,6 @@ class TestGridPositionedItemsContentAlignmentRtl(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-positioned-items-content-alignment-rtl-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-positioned-items-content-alignment-rtl-") + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_gaps.py b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_gaps.py index dfed59a42..b4b02035c 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_gaps.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_gaps.py @@ -2,4 +2,4 @@ class TestGridPositionedItemsGaps(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-positioned-items-gaps-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-positioned-items-gaps-")) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_gaps_rtl.py b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_gaps_rtl.py index d3648f2bd..656a29b66 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_gaps_rtl.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_gaps_rtl.py @@ -2,4 +2,4 @@ class TestGridPositionedItemsGapsRtl(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-positioned-items-gaps-rtl-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-positioned-items-gaps-rtl-")) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_implicit_grid.py b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_implicit_grid.py index e3b62e71d..afe5d8854 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_implicit_grid.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_implicit_grid.py @@ -2,4 +2,6 @@ class TestGridPositionedItemsImplicitGrid(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-positioned-items-implicit-grid-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-positioned-items-implicit-grid-") + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_implicit_grid_line.py b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_implicit_grid_line.py index f6ee90620..de92daa4f 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_implicit_grid_line.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_implicit_grid_line.py @@ -2,4 +2,6 @@ class TestGridPositionedItemsImplicitGridLine(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-positioned-items-implicit-grid-line-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-positioned-items-implicit-grid-line-") + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_padding.py b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_padding.py index 47afa4ee9..4c70e5c29 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_padding.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_padding.py @@ -2,4 +2,4 @@ class TestGridPositionedItemsPadding(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-positioned-items-padding-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-positioned-items-padding-")) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_unknown_named_grid_line.py b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_unknown_named_grid_line.py index fc3af10f0..d9df81b76 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_unknown_named_grid_line.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_unknown_named_grid_line.py @@ -2,4 +2,8 @@ class TestGridPositionedItemsUnknownNamedGridLine(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-positioned-items-unknown-named-grid-line-')) + vars().update( + W3CTestCase.find_tests( + __file__, "grid-positioned-items-unknown-named-grid-line-" + ) + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_within_grid_implicit_track.py b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_within_grid_implicit_track.py index 3613d6f31..cee20c4a7 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_within_grid_implicit_track.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_positioned_items_within_grid_implicit_track.py @@ -2,4 +2,8 @@ class TestGridPositionedItemsWithinGridImplicitTrack(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-positioned-items-within-grid-implicit-track-')) + vars().update( + W3CTestCase.find_tests( + __file__, "grid-positioned-items-within-grid-implicit-track-" + ) + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_grid_sizing_positioned_items.py b/tests/web_platform/css_grid_1/abspos/test_grid_sizing_positioned_items.py index 1d90a0a32..3c6c54ba6 100644 --- a/tests/web_platform/css_grid_1/abspos/test_grid_sizing_positioned_items.py +++ b/tests/web_platform/css_grid_1/abspos/test_grid_sizing_positioned_items.py @@ -2,4 +2,4 @@ class TestGridSizingPositionedItems(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-sizing-positioned-items-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-sizing-positioned-items-")) diff --git a/tests/web_platform/css_grid_1/abspos/test_orthogonal_positioned_grid_items.py b/tests/web_platform/css_grid_1/abspos/test_orthogonal_positioned_grid_items.py index d9ef74924..1579fe9de 100644 --- a/tests/web_platform/css_grid_1/abspos/test_orthogonal_positioned_grid_items.py +++ b/tests/web_platform/css_grid_1/abspos/test_orthogonal_positioned_grid_items.py @@ -2,4 +2,4 @@ class TestOrthogonalPositionedGridItems(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'orthogonal-positioned-grid-items-')) + vars().update(W3CTestCase.find_tests(__file__, "orthogonal-positioned-grid-items-")) diff --git a/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items.py b/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items.py index 3f6c18cd6..8473cc952 100644 --- a/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items.py +++ b/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items.py @@ -2,4 +2,4 @@ class TestPositionedGridItems(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'positioned-grid-items-')) + vars().update(W3CTestCase.find_tests(__file__, "positioned-grid-items-")) diff --git a/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items_should_not_create_implicit_tracks.py b/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items_should_not_create_implicit_tracks.py index 271e32a47..efe931f25 100644 --- a/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items_should_not_create_implicit_tracks.py +++ b/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items_should_not_create_implicit_tracks.py @@ -2,4 +2,8 @@ class TestPositionedGridItemsShouldNotCreateImplicitTracks(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'positioned-grid-items-should-not-create-implicit-tracks-')) + vars().update( + W3CTestCase.find_tests( + __file__, "positioned-grid-items-should-not-create-implicit-tracks-" + ) + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items_should_not_take_up_space.py b/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items_should_not_take_up_space.py index 012f8801c..ee5f028db 100644 --- a/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items_should_not_take_up_space.py +++ b/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items_should_not_take_up_space.py @@ -2,4 +2,8 @@ class TestPositionedGridItemsShouldNotTakeUpSpace(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'positioned-grid-items-should-not-take-up-space-')) + vars().update( + W3CTestCase.find_tests( + __file__, "positioned-grid-items-should-not-take-up-space-" + ) + ) diff --git a/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items_sizing.py b/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items_sizing.py index 98be128ef..caf24e489 100644 --- a/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items_sizing.py +++ b/tests/web_platform/css_grid_1/abspos/test_positioned_grid_items_sizing.py @@ -2,4 +2,4 @@ class TestPositionedGridItemsSizing(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'positioned-grid-items-sizing-')) + vars().update(W3CTestCase.find_tests(__file__, "positioned-grid-items-sizing-")) diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-001.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-001.json index b6c769ea8..05cfe5cad 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-001.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-001.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-002.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-002.json index a3c9bdde5..905d2f851 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-002.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-002.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-003.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-003.json index 8e2e3ccf8..b650b7324 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-003.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-003.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-004.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-004.json index 0adcba100..9859191f7 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-004.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-004.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-005.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-005.json index 6aa523ba6..90655b362 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-005.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-005.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-start", "https://drafts.csswg.org/css-align/#valdef-align-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-006.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-006.json index 4c9868314..63d990309 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-006.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-006.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-normal", "https://drafts.csswg.org/css-align/#valdef-align-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-007.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-007.json index e0a93193d..d7916f1fa 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-007.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-007.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-008.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-008.json index 02b8be098..605a4e758 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-008.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-008.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-009.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-009.json index c6f6eadbd..35d7a2311 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-009.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-009.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-normal", "https://drafts.csswg.org/css-align/#valdef-align-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-010.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-010.json index 98490b1dc..89a296401 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-010.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-010.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-normal", "https://drafts.csswg.org/css-align/#valdef-align-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-011.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-011.json index df978689a..9c45acaff 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-011.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-011.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-012.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-012.json index a1994d5ce..063ed383d 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-012.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-012.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-013.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-013.json index 782cc4cfc..b3baa3ffb 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-013.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-013.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-014.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-014.json index ddaed4592..ec685858f 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-014.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-014.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-015.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-015.json index a07c70544..50d98a7c0 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-015.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-015.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-start", "https://drafts.csswg.org/css-align/#valdef-align-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-016.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-016.json index 8d7b50636..e302c9911 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-016.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-016.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-start", "https://drafts.csswg.org/css-align/#valdef-align-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-017.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-017.json index 496bf2942..c1bf0b505 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-017.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-017.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-018.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-018.json index 064c86548..77f70213e 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-018.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-018.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-align-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-019.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-019.json index c0e46c6f2..7b3da9f95 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-019.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-019.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-justify-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-020.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-020.json index 297adb755..eb8c29eac 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-020.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-020.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-justify-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-021.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-021.json index bf827c494..28be3a4f4 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-021.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-021.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-justify-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-022.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-022.json index 1453bb739..6a6a8ffe6 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-022.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-022.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-justify-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-023.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-023.json index ff8b052d5..25683cf6b 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-023.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-023.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-start", "https://drafts.csswg.org/css-align/#valdef-justify-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-024.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-024.json index 7ce5a0c43..17a64cfe4 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-024.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-024.json @@ -98,4 +98,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-normal", "https://drafts.csswg.org/css-align/#valdef-justify-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-025.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-025.json index f31057458..fdd51ef47 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-025.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-025.json @@ -90,4 +90,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-justify-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-026.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-026.json index 5dbe67123..c23d8a7cf 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-026.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-026.json @@ -90,4 +90,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-justify-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-027.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-027.json index 943f0b575..6c7942e1e 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-027.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-027.json @@ -90,4 +90,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-normal", "https://drafts.csswg.org/css-align/#valdef-justify-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-028.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-028.json index 0aa7b1e95..5155e450a 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-028.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-028.json @@ -90,4 +90,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-normal", "https://drafts.csswg.org/css-align/#valdef-justify-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-029.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-029.json index 345f47ff4..a3895e56b 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-029.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-029.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-justify-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-030.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-030.json index 287adfe97..79d555516 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-030.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-030.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-justify-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-031.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-031.json index 819f85941..65af8cc43 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-031.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-031.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-justify-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-032.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-032.json index 71f2c2aee..a1facb33c 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-032.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-032.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-justify-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-033.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-033.json index 0f4d3195f..a184b9165 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-033.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-033.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-start", "https://drafts.csswg.org/css-align/#valdef-justify-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-034.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-034.json index 7c88e75bd..cd446220e 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-034.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-034.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-start", "https://drafts.csswg.org/css-align/#valdef-justify-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-035.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-035.json index 1ee09f509..39f2bd135 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-035.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-035.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-justify-self-normal" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-036.json b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-036.json index 83ccae862..fa16a3256 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-036.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-alignment-implies-size-change-036.json @@ -66,4 +66,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-justify-self-start" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-001.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-001.json index 77e6bb954..aae6f5f72 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-001.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-001.json @@ -144,4 +144,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-evenly" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-002.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-002.json index 7a8cebb48..a815c6ee2 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-002.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-002.json @@ -144,4 +144,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-between" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-003.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-003.json index d385e6658..355da07c1 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-003.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-003.json @@ -144,4 +144,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-around" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-004.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-004.json index 06e60cd78..2c2ef614e 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-004.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-004.json @@ -144,4 +144,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-005.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-005.json index 0a2bc1531..9e69e3669 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-005.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-005.json @@ -142,4 +142,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-006.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-006.json index 54bf7d36e..961dc8b04 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-006.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-006.json @@ -146,4 +146,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-evenly" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-007.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-007.json index 30d5871ef..e92b4cf2e 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-007.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-007.json @@ -230,4 +230,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-evenly" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-008.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-008.json index 48034b01c..019be9a4c 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-008.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-008.json @@ -232,4 +232,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-evenly" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-009.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-009.json index 63c59a7ec..c8a91bf61 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-009.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-009.json @@ -316,4 +316,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-evenly" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-010.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-010.json index dbd0eaec5..6029c5471 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-010.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-010.json @@ -318,4 +318,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-evenly" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-011.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-011.json index 0c6eb867b..77e151b3c 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-011.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-011.json @@ -146,4 +146,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-between" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-012.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-012.json index c486e3a74..790aa1856 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-012.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-012.json @@ -230,4 +230,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-between" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-013.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-013.json index 66c46d0e7..4c5c1d581 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-013.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-013.json @@ -232,4 +232,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-between" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-014.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-014.json index 8e141b74b..2771c44c5 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-014.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-014.json @@ -316,4 +316,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-between" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-015.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-015.json index f8d235748..e0b1ab004 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-015.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-015.json @@ -318,4 +318,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-between" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-016.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-016.json index d29dc3636..8a183f8f9 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-016.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-016.json @@ -146,4 +146,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-around" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-017.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-017.json index e34d8dbf4..13af16fb5 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-017.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-017.json @@ -230,4 +230,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-around" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-018.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-018.json index b6bd896c0..e15a898fc 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-018.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-018.json @@ -231,4 +231,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-around" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-019.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-019.json index e156d5b43..491d3ccdb 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-019.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-019.json @@ -316,4 +316,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-around" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-020.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-020.json index 86431f066..32178e61e 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-020.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-020.json @@ -318,4 +318,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-space-around" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-021.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-021.json index 5f6f31b62..05b4aff27 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-021.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-021.json @@ -146,4 +146,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-022.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-022.json index 32d78f133..e4dd96c6a 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-022.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-022.json @@ -230,4 +230,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-023.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-023.json index 2a45cf105..b6a4549a0 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-023.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-023.json @@ -232,4 +232,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-024.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-024.json index 3e566eab1..0133f7f35 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-024.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-024.json @@ -316,4 +316,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-025.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-025.json index add72a8bb..8556f7210 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-025.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-025.json @@ -318,4 +318,4 @@ "https://drafts.csswg.org/css-align-3/#content-distribution", "https://drafts.csswg.org/css-align-3/#valdef-align-content-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-001.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-001.json index 3d482c538..1b3f04be1 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-001.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-001.json @@ -144,4 +144,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-002.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-002.json index c3705cd06..f0cc2deb4 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-002.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-002.json @@ -144,4 +144,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-003.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-003.json index f4d25fafa..85cff86b5 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-003.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-003.json @@ -144,4 +144,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-004.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-004.json index 47f31c017..de7864cae 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-004.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-004.json @@ -144,4 +144,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-005.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-005.json index a299ccd4a..f85e61099 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-005.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-005.json @@ -146,4 +146,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-006.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-006.json index 8363b0449..04083494d 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-006.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-006.json @@ -230,4 +230,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-007.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-007.json index d28262fa9..1e7b85dee 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-007.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-007.json @@ -232,4 +232,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-008.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-008.json index 1de2c58f4..e72909aec 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-008.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-008.json @@ -316,4 +316,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-009.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-009.json index f7241e3c9..da19c0c29 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-009.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-009.json @@ -318,4 +318,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-010.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-010.json index d89a79a8b..548b7c92b 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-010.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-010.json @@ -146,4 +146,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-011.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-011.json index 74490ac2c..57c19751a 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-011.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-011.json @@ -230,4 +230,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-012.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-012.json index f335bafdd..fe010ad18 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-012.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-012.json @@ -232,4 +232,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-013.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-013.json index e3d280533..dc480eccd 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-013.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-013.json @@ -316,4 +316,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-014.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-014.json index 891d71871..2089d20bf 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-014.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-014.json @@ -318,4 +318,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-015.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-015.json index 1f50ddfec..11a258cc8 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-015.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-015.json @@ -146,4 +146,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-016.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-016.json index 9c6e92f76..059c9ed26 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-016.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-016.json @@ -230,4 +230,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-017.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-017.json index 855d333d0..f62165392 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-017.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-017.json @@ -232,4 +232,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-018.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-018.json index 0d0f063ef..a092a55fe 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-018.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-018.json @@ -316,4 +316,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-019.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-019.json index 961e6cce6..653b80a3b 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-019.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-019.json @@ -318,4 +318,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-020.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-020.json index 6f7addee5..57ef1534a 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-020.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-020.json @@ -146,4 +146,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-021.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-021.json index f5b1216bd..136c5497f 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-021.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-021.json @@ -230,4 +230,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-022.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-022.json index fd8a017e6..63b4044bf 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-022.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-022.json @@ -232,4 +232,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-023.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-023.json index 2993e5e66..3329f6d2e 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-023.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-023.json @@ -316,4 +316,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-024.json b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-024.json index 78f4e89b7..9a9c7a576 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-024.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-content-distribution-with-collapsed-tracks-024.json @@ -318,4 +318,4 @@ "https://drafts.csswg.org/css-grid-1/#collapsed-track", "https://drafts.csswg.org/css-align-3/#content-distribution" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-fit-content-tracks-dont-stretch-001.json b/tests/web_platform/css_grid_1/alignment/data/grid-fit-content-tracks-dont-stretch-001.json index fb4bc0166..b02eaa593 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-fit-content-tracks-dont-stretch-001.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-fit-content-tracks-dont-stretch-001.json @@ -1517,4 +1517,4 @@ "https://drafts.csswg.org/css-grid-1/#grid-align", "https://drafts.csswg.org/css-grid-1/#algo-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-001.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-001.json index 178102071..42653e284 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-001.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-001.json @@ -213,4 +213,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-002.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-002.json index f6286582b..d095d8b04 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-002.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-002.json @@ -217,4 +217,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-003.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-003.json index 4d5ac683c..2cab6562a 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-003.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-003.json @@ -245,4 +245,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-004.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-004.json index 2403411f8..6b064e2c3 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-004.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-004.json @@ -217,4 +217,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-005.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-005.json index a96d86787..fa0e2344e 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-005.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-005.json @@ -217,4 +217,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-006.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-006.json index 41f6b4b65..6988d77ea 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-006.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-006.json @@ -221,4 +221,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-007.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-007.json index 681ab4fdb..e1f264de4 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-007.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-007.json @@ -249,4 +249,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-008.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-008.json index aada83c60..30267c869 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-008.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-008.json @@ -221,4 +221,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-009.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-009.json index 45af9fb4b..60c9d3b9a 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-009.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-009.json @@ -165,4 +165,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-010.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-010.json index 211970444..2f1c4012c 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-010.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-010.json @@ -169,4 +169,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-011.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-011.json index 5999731c6..d7e62eb02 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-011.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-011.json @@ -197,4 +197,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-012.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-012.json index 27f4c1f37..9bcce1659 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-012.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-012.json @@ -169,4 +169,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-013.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-013.json index 98cc5b342..03792924a 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-013.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-013.json @@ -169,4 +169,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-014.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-014.json index 77c584f1a..4ccd85f6d 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-014.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-014.json @@ -173,4 +173,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-015.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-015.json index 2960b35e7..9bbc0bef2 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-015.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-015.json @@ -201,4 +201,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-016.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-016.json index 64c589f34..92ea1835d 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-016.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-016.json @@ -172,4 +172,4 @@ "https://drafts.csswg.org/css-align-3/#propdef-justify-self", "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-001.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-001.json index 73c218ada..a33972596 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-001.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-001.json @@ -214,4 +214,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-002.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-002.json index decbdbc26..4f8602bf4 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-002.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-002.json @@ -218,4 +218,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-003.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-003.json index 579ef558c..68b6df8c1 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-003.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-003.json @@ -246,4 +246,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-004.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-004.json index 2b899fcf2..9fc554383 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-004.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-004.json @@ -218,4 +218,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-005.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-005.json index cbf20bf4a..958b5474f 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-005.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-005.json @@ -218,4 +218,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-006.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-006.json index 125a32a08..8feffbd12 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-006.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-006.json @@ -222,4 +222,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-007.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-007.json index 0fb2c112c..72a93523e 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-007.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-007.json @@ -250,4 +250,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-008.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-008.json index 2c8e018dc..3c6942963 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-008.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-008.json @@ -222,4 +222,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-009.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-009.json index 6c71fcd59..4814f85eb 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-009.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-009.json @@ -166,4 +166,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-010.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-010.json index 098e8b125..95632fb6f 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-010.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-010.json @@ -170,4 +170,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-011.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-011.json index e81f4152e..f69beeec4 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-011.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-011.json @@ -198,4 +198,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-012.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-012.json index f3545f600..b664a8eb3 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-012.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-012.json @@ -170,4 +170,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-013.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-013.json index 5777e02d6..81a4eef06 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-013.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-013.json @@ -170,4 +170,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-014.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-014.json index 28aee7a90..e6d465b1d 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-014.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-014.json @@ -174,4 +174,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-015.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-015.json index 3d2f74891..866f67132 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-015.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-015.json @@ -202,4 +202,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-016.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-016.json index ad9353162..8985a7d3e 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-016.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-lr-016.json @@ -173,4 +173,4 @@ "https://drafts.csswg.org/css-align-3/#propdef-justify-self", "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-001.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-001.json index 50dd5be8d..35dbc7fd2 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-001.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-001.json @@ -214,4 +214,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-002.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-002.json index 66792abfc..ae820cbe3 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-002.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-002.json @@ -218,4 +218,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-003.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-003.json index 1f88656b8..f1bc3a6a1 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-003.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-003.json @@ -246,4 +246,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-004.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-004.json index 6c36632a5..8753d51fc 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-004.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-004.json @@ -218,4 +218,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-005.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-005.json index bafc51cd0..a8e992c5b 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-005.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-005.json @@ -218,4 +218,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-006.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-006.json index 82dfd3db2..f73dd9e5b 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-006.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-006.json @@ -222,4 +222,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-007.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-007.json index 705aba8ad..87ce533ca 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-007.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-007.json @@ -250,4 +250,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-008.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-008.json index c719a0898..2108601e8 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-008.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-008.json @@ -222,4 +222,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-009.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-009.json index 1d91104a9..8387f903c 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-009.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-009.json @@ -166,4 +166,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-010.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-010.json index 29b5754db..407f76a08 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-010.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-010.json @@ -170,4 +170,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-011.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-011.json index 2257a002d..cf8e469e1 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-011.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-011.json @@ -198,4 +198,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-012.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-012.json index 6e8286d75..ee4a41c22 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-012.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-012.json @@ -170,4 +170,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-013.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-013.json index 601060028..8d7e95ca7 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-013.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-013.json @@ -170,4 +170,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-014.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-014.json index 97134b108..3c082bda6 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-014.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-014.json @@ -174,4 +174,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-015.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-015.json index b53fd55e0..65cc6c51a 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-015.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-015.json @@ -202,4 +202,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-016.json b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-016.json index d7903c809..df7924024 100644 --- a/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-016.json +++ b/tests/web_platform/css_grid_1/alignment/data/grid-self-alignment-stretch-vertical-rl-016.json @@ -174,4 +174,4 @@ "https://drafts.csswg.org/css-align/#valdef-justify-self-stretch", "https://drafts.csswg.org/css-align/#valdef-align-self-stretch" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-001.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-001.json index 82557a674..62c9d5534 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-001.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-001.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-002.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-002.json index 9f9238c90..14d53d3bc 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-002.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-002.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-003.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-003.json index 82557a674..62c9d5534 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-003.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-003.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-004.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-004.json index 82557a674..62c9d5534 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-004.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-004.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-005.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-005.json index 9f9238c90..14d53d3bc 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-005.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-005.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-006.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-006.json index 82557a674..62c9d5534 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-006.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-006.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-007.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-007.json index ae7aae768..4400f377b 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-007.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-007.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-008.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-008.json index ae7aae768..4400f377b 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-008.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-008.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-009.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-009.json index ae7aae768..4400f377b 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-009.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-009.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-010.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-010.json index ae7aae768..4400f377b 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-010.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-010.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-011.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-011.json index 9849be9cc..f8ac259a4 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-011.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-011.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-012.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-012.json index c715ddff5..23dcedd2e 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-012.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-012.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-013.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-013.json index 9849be9cc..f8ac259a4 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-013.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-013.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-014.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-014.json index 9849be9cc..f8ac259a4 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-014.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-014.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-015.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-015.json index c715ddff5..23dcedd2e 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-015.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-015.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-016.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-016.json index 9849be9cc..f8ac259a4 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-016.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-016.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-017.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-017.json index 5bb01c33d..c464f5c5b 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-017.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-017.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-018.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-018.json index c164816a5..28daa610e 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-018.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-018.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-019.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-019.json index ff2f412f4..820097c73 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-019.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-019.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-020.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-020.json index 8ba7f01be..a3a62f798 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-020.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-020.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-021.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-021.json index ff2f412f4..820097c73 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-021.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-021.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-022.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-022.json index ff2f412f4..820097c73 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-022.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-022.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-023.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-023.json index 8ba7f01be..a3a62f798 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-023.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-023.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-024.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-024.json index ff2f412f4..820097c73 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-024.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-024.json @@ -307,4 +307,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-025.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-025.json index 33eb1b045..744283cae 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-025.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-025.json @@ -254,4 +254,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-026.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-026.json index 33eb1b045..744283cae 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-026.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-026.json @@ -254,4 +254,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-027.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-027.json index 33eb1b045..744283cae 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-027.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-027.json @@ -254,4 +254,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-028.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-028.json index 33eb1b045..744283cae 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-028.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-028.json @@ -254,4 +254,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-029.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-029.json index ddd0244a5..fb22842d2 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-029.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-029.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-030.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-030.json index 3e7c5ff7d..a49d2b922 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-030.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-030.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-031.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-031.json index ddd0244a5..fb22842d2 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-031.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-031.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-032.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-032.json index ddd0244a5..fb22842d2 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-032.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-032.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-033.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-033.json index 3e7c5ff7d..a49d2b922 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-033.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-033.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-034.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-034.json index ddd0244a5..fb22842d2 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-034.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-034.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-035.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-035.json index 058ee2ae6..b86861332 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-035.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-035.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-036.json b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-036.json index 058ee2ae6..b86861332 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-036.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-alignment-implies-size-change-036.json @@ -139,4 +139,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-001.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-001.json index 977493719..9b6af9c68 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-001.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-001.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-002.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-002.json index 13f260609..a7b974578 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-002.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-002.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-003.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-003.json index c2999a4af..cb373a5f1 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-003.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-003.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-004.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-004.json index 3acaf5d7d..0b6a06f21 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-004.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-004.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-005.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-005.json index 3acaf5d7d..0b6a06f21 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-005.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-005.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-006.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-006.json index a55486767..946a936b1 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-006.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-006.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-007.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-007.json index e6208cfa1..a4a2f5080 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-007.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-007.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-008.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-008.json index 7bf95759f..034f2092c 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-008.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-008.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-009.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-009.json index 277ad6d4d..313e41433 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-009.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-009.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-010.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-010.json index 2b9189c28..a1f3595f5 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-010.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-010.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-011.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-011.json index 13f260609..a7b974578 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-011.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-011.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-012.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-012.json index 7429c9c97..58735facf 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-012.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-012.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-013.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-013.json index 7429c9c97..58735facf 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-013.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-013.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-014.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-014.json index 573c5f482..44b402fb9 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-014.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-014.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-015.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-015.json index 573c5f482..44b402fb9 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-015.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-015.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-016.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-016.json index 47d9701a5..c66deaa4a 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-016.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-016.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-017.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-017.json index 5d0f45482..7151a58d4 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-017.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-017.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-018.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-018.json index c545ad763..a2ca3471a 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-018.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-018.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-019.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-019.json index 81b7ae900..aaba8f08d 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-019.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-019.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-020.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-020.json index c32d7dff0..16aca2513 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-020.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-020.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-021.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-021.json index eaadeb9d8..375b9a9c5 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-021.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-021.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-022.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-022.json index 3c0182d82..b8a8b6a8c 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-022.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-022.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-023.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-023.json index cd34b0152..fd1935538 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-023.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-023.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-024.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-024.json index a0d4d6a33..a2c3d5a42 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-024.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-024.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-025.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-025.json index 3f9ac32be..320f05304 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-025.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-025.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-001.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-001.json index 08c4c6e0b..275c60f8b 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-001.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-001.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-002.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-002.json index 9df50e015..e40832396 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-002.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-002.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-003.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-003.json index 0b55fa37e..2bf179d4c 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-003.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-003.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-004.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-004.json index 3acaf5d7d..0b6a06f21 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-004.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-004.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-005.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-005.json index 5a360a59f..fc8d408df 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-005.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-005.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-006.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-006.json index de9c10363..5b47d410c 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-006.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-006.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-007.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-007.json index deb831c37..94dad1d86 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-007.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-007.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-008.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-008.json index 63a2733fe..a6a50856d 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-008.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-008.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-009.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-009.json index a98097b41..21c7d77d6 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-009.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-009.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-010.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-010.json index f67cade02..11ba90691 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-010.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-010.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-011.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-011.json index 0a17afacf..1eb40e44b 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-011.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-011.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-012.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-012.json index db53b3581..b52d22d36 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-012.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-012.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-013.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-013.json index 1a4f22ca4..eef624a22 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-013.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-013.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-014.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-014.json index 5863fb213..01d5444d7 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-014.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-014.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-015.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-015.json index e4bc6a06f..1d213cdf2 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-015.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-015.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-016.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-016.json index d4d487c19..04d2cf084 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-016.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-016.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-017.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-017.json index d4dad3f4c..dec41b8f7 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-017.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-017.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-018.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-018.json index 4f2b0e0d2..d941939b2 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-018.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-018.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-019.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-019.json index 9c6435e86..6ecb6f70c 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-019.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-019.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-020.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-020.json index eaadeb9d8..375b9a9c5 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-020.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-020.json @@ -325,4 +325,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-021.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-021.json index 3c0182d82..b8a8b6a8c 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-021.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-021.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-022.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-022.json index cd34b0152..fd1935538 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-022.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-022.json @@ -509,4 +509,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-023.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-023.json index a0d4d6a33..a2c3d5a42 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-023.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-023.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-024.json b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-024.json index 3f9ac32be..320f05304 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-024.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-content-distribution-with-collapsed-tracks-024.json @@ -693,4 +693,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-fit-content-tracks-dont-stretch-001.json b/tests/web_platform/css_grid_1/alignment/ref/grid-fit-content-tracks-dont-stretch-001.json index b7898df1e..846d81ad1 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-fit-content-tracks-dont-stretch-001.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-fit-content-tracks-dont-stretch-001.json @@ -5293,4 +5293,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-001.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-001.json index a87f47ee9..1d35aa41c 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-001.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-001.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-002.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-002.json index 53f896e2c..f8c16895c 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-002.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-002.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-003.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-003.json index 7d38af1da..0ebd68ac5 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-003.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-003.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-004.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-004.json index 735965877..8e4080e39 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-004.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-004.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-005.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-005.json index fb6da6515..c5b570d28 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-005.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-005.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-006.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-006.json index 8dac71ddb..4e66a2aec 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-006.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-006.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-007.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-007.json index 45d7e07b1..6ac4e4e00 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-007.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-007.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-008.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-008.json index 4b225aaf0..d235ac009 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-008.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-008.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-009.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-009.json index 7ce7520e1..a871f3487 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-009.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-009.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-010.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-010.json index 145d0af11..06d2d541d 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-010.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-010.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-011.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-011.json index 5d0ca85a2..588f59b8b 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-011.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-011.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-012.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-012.json index 07a8e1d09..d8f12d9fd 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-012.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-012.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-013.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-013.json index 67cdd81de..d06d05b98 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-013.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-013.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-014.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-014.json index 78a85916e..9a3f2aae4 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-014.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-014.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-015.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-015.json index 64ab09dbc..28373a668 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-015.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-015.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-016.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-016.json index ff4a72b58..0f064a15b 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-016.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-016.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-001.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-001.json index 0a9050a4c..0267fff79 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-001.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-001.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-002.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-002.json index d2c3e0210..d64010822 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-002.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-002.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-003.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-003.json index f66fb1328..1fc39f2fd 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-003.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-003.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-004.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-004.json index d2f45e649..e97ce31ae 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-004.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-004.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-005.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-005.json index d0634737d..cd855ce6d 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-005.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-005.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-006.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-006.json index 052acfa10..75acb69c4 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-006.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-006.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-007.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-007.json index c9097aad2..6ee71bc03 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-007.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-007.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-008.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-008.json index 43ab0a1f7..edc5e0887 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-008.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-008.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-009.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-009.json index 71a498d5a..2b0d1a098 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-009.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-009.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-010.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-010.json index f7d895362..23b277291 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-010.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-010.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-011.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-011.json index 3f1a35118..fdf5c3dcc 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-011.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-011.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-012.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-012.json index c6cd059c7..cdaf2cd23 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-012.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-012.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-013.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-013.json index 96cbaf146..e3d9b59e9 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-013.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-013.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-014.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-014.json index b1bb1db8b..28418eb00 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-014.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-014.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-015.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-015.json index ce097aed8..00b809618 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-015.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-015.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-016.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-016.json index 4984f4d81..76d16bdd0 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-016.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-lr-016.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-001.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-001.json index c76af4bc3..1dfe761bb 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-001.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-001.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-002.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-002.json index fb196a80f..6858a86a4 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-002.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-002.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-003.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-003.json index d5798b085..e7f73360c 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-003.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-003.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-004.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-004.json index 4c772d5bd..8490dd8eb 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-004.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-004.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-005.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-005.json index 0dec1bcbb..d6644b213 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-005.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-005.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-006.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-006.json index 5a8817eef..f889e52b9 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-006.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-006.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-007.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-007.json index a54401cda..7c1d89ea5 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-007.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-007.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-008.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-008.json index f2ce94fed..3aeec0122 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-008.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-008.json @@ -617,4 +617,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-009.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-009.json index 477091dd4..5cca337d6 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-009.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-009.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-010.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-010.json index 8f76c6919..8674bf985 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-010.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-010.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-011.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-011.json index fdc8c4dbe..40de46345 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-011.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-011.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-012.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-012.json index 0a3f6737c..05af5c2c1 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-012.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-012.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-013.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-013.json index 80ea86958..e96253b6b 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-013.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-013.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-014.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-014.json index 2770a28bd..9485feea9 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-014.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-014.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-015.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-015.json index 4dac8bb2b..d7bbd3a38 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-015.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-015.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-016.json b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-016.json index d1a0a70d7..af431ccaa 100644 --- a/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-016.json +++ b/tests/web_platform/css_grid_1/alignment/ref/grid-self-alignment-stretch-vertical-rl-016.json @@ -285,4 +285,4 @@ 0 ], "id": "" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/alignment/test_grid_alignment_implies_size_change.py b/tests/web_platform/css_grid_1/alignment/test_grid_alignment_implies_size_change.py index 1291f0af0..dce967478 100644 --- a/tests/web_platform/css_grid_1/alignment/test_grid_alignment_implies_size_change.py +++ b/tests/web_platform/css_grid_1/alignment/test_grid_alignment_implies_size_change.py @@ -2,4 +2,6 @@ class TestGridAlignmentImpliesSizeChange(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-alignment-implies-size-change-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-alignment-implies-size-change-") + ) diff --git a/tests/web_platform/css_grid_1/alignment/test_grid_content_distribution.py b/tests/web_platform/css_grid_1/alignment/test_grid_content_distribution.py index e99494fe8..3d7ecb2c1 100644 --- a/tests/web_platform/css_grid_1/alignment/test_grid_content_distribution.py +++ b/tests/web_platform/css_grid_1/alignment/test_grid_content_distribution.py @@ -2,4 +2,4 @@ class TestGridContentDistribution(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-content-distribution-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-content-distribution-")) diff --git a/tests/web_platform/css_grid_1/alignment/test_grid_content_distribution_with_collapsed_tracks.py b/tests/web_platform/css_grid_1/alignment/test_grid_content_distribution_with_collapsed_tracks.py index 463ce3d39..e100a223b 100644 --- a/tests/web_platform/css_grid_1/alignment/test_grid_content_distribution_with_collapsed_tracks.py +++ b/tests/web_platform/css_grid_1/alignment/test_grid_content_distribution_with_collapsed_tracks.py @@ -2,4 +2,8 @@ class TestGridContentDistributionWithCollapsedTracks(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-content-distribution-with-collapsed-tracks-')) + vars().update( + W3CTestCase.find_tests( + __file__, "grid-content-distribution-with-collapsed-tracks-" + ) + ) diff --git a/tests/web_platform/css_grid_1/alignment/test_grid_fit_content_tracks_dont_stretch.py b/tests/web_platform/css_grid_1/alignment/test_grid_fit_content_tracks_dont_stretch.py index 0ce2e4004..457a1964f 100644 --- a/tests/web_platform/css_grid_1/alignment/test_grid_fit_content_tracks_dont_stretch.py +++ b/tests/web_platform/css_grid_1/alignment/test_grid_fit_content_tracks_dont_stretch.py @@ -2,4 +2,6 @@ class TestGridFitContentTracksDontStretch(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-fit-content-tracks-dont-stretch-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-fit-content-tracks-dont-stretch-") + ) diff --git a/tests/web_platform/css_grid_1/alignment/test_grid_self_alignment_stretch.py b/tests/web_platform/css_grid_1/alignment/test_grid_self_alignment_stretch.py index 53d247aba..d1ed9ef59 100644 --- a/tests/web_platform/css_grid_1/alignment/test_grid_self_alignment_stretch.py +++ b/tests/web_platform/css_grid_1/alignment/test_grid_self_alignment_stretch.py @@ -2,4 +2,4 @@ class TestGridSelfAlignmentStretch(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-self-alignment-stretch-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-self-alignment-stretch-")) diff --git a/tests/web_platform/css_grid_1/alignment/test_grid_self_alignment_stretch_vertical_lr.py b/tests/web_platform/css_grid_1/alignment/test_grid_self_alignment_stretch_vertical_lr.py index fe8f21823..ea375cd3a 100644 --- a/tests/web_platform/css_grid_1/alignment/test_grid_self_alignment_stretch_vertical_lr.py +++ b/tests/web_platform/css_grid_1/alignment/test_grid_self_alignment_stretch_vertical_lr.py @@ -2,4 +2,6 @@ class TestGridSelfAlignmentStretchVerticalLr(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-self-alignment-stretch-vertical-lr-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-self-alignment-stretch-vertical-lr-") + ) diff --git a/tests/web_platform/css_grid_1/alignment/test_grid_self_alignment_stretch_vertical_rl.py b/tests/web_platform/css_grid_1/alignment/test_grid_self_alignment_stretch_vertical_rl.py index b3b6c552a..7f527223d 100644 --- a/tests/web_platform/css_grid_1/alignment/test_grid_self_alignment_stretch_vertical_rl.py +++ b/tests/web_platform/css_grid_1/alignment/test_grid_self_alignment_stretch_vertical_rl.py @@ -2,4 +2,6 @@ class TestGridSelfAlignmentStretchVerticalRl(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-self-alignment-stretch-vertical-rl-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-self-alignment-stretch-vertical-rl-") + ) diff --git a/tests/web_platform/css_grid_1/grid_definition/data/fr-unit-with-percentage.json b/tests/web_platform/css_grid_1/grid_definition/data/fr-unit-with-percentage.json index 2b30464ff..baa537092 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/fr-unit-with-percentage.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/fr-unit-with-percentage.json @@ -219,4 +219,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/fr-unit.json b/tests/web_platform/css_grid_1/grid_definition/data/fr-unit.json index 9c3c01990..df5218ab2 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/fr-unit.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/fr-unit.json @@ -221,4 +221,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-flexible-lengths-001.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-flexible-lengths-001.json index be4bb8501..685a49514 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-flexible-lengths-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-flexible-lengths-001.json @@ -83,4 +83,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-grid-template-areas-001.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-grid-template-areas-001.json index f72fb4d98..ade148282 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-grid-template-areas-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-grid-template-areas-001.json @@ -41,4 +41,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-grid-template-columns-rows-001.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-grid-template-columns-rows-001.json index c06e1f02d..d3b0c4b5d 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-grid-template-columns-rows-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-grid-template-columns-rows-001.json @@ -83,4 +83,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-named-grid-lines-001.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-named-grid-lines-001.json index 33a3fb41b..992c2df7a 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-named-grid-lines-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-named-grid-lines-001.json @@ -83,4 +83,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-repeat-001.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-repeat-001.json index e454445c8..4adbfbdaf 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-repeat-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-support-repeat-001.json @@ -83,4 +83,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-template-columns-rows-resolved-values-001.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-template-columns-rows-resolved-values-001.json index b1c210da2..fe7bc2935 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-template-columns-rows-resolved-values-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-inline-template-columns-rows-resolved-values-001.json @@ -308,4 +308,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-layout-auto-tracks.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-layout-auto-tracks.json index 551739c46..a8295d30f 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-layout-auto-tracks.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-layout-auto-tracks.json @@ -120,4 +120,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-layout-basic.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-layout-basic.json index b3d45eefc..03ef1ec21 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-layout-basic.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-layout-basic.json @@ -86,4 +86,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-layout-repeat-notation.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-layout-repeat-notation.json index 9f3550449..db5d795b7 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-layout-repeat-notation.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-layout-repeat-notation.json @@ -142,4 +142,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-support-flexible-lengths-001.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-support-flexible-lengths-001.json index 739bde085..feef22636 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-support-flexible-lengths-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-support-flexible-lengths-001.json @@ -83,4 +83,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-support-grid-template-areas-001.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-support-grid-template-areas-001.json index 8edf44043..79549ed8c 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-support-grid-template-areas-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-support-grid-template-areas-001.json @@ -41,4 +41,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-support-grid-template-columns-rows-001.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-support-grid-template-columns-rows-001.json index 24ce247a5..2a853ed38 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-support-grid-template-columns-rows-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-support-grid-template-columns-rows-001.json @@ -83,4 +83,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-support-named-grid-lines-001.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-support-named-grid-lines-001.json index d1555f325..a4454aa25 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-support-named-grid-lines-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-support-named-grid-lines-001.json @@ -83,4 +83,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-support-repeat-001.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-support-repeat-001.json index 57a939eb5..cf93dd09b 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-support-repeat-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-support-repeat-001.json @@ -83,4 +83,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/data/grid-template-columns-rows-resolved-values-001.json b/tests/web_platform/css_grid_1/grid_definition/data/grid-template-columns-rows-resolved-values-001.json index 402e0057c..b1d480056 100644 --- a/tests/web_platform/css_grid_1/grid_definition/data/grid-template-columns-rows-resolved-values-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/data/grid-template-columns-rows-resolved-values-001.json @@ -308,4 +308,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/fr-unit-with-percentage.json b/tests/web_platform/css_grid_1/grid_definition/ref/fr-unit-with-percentage.json index 00199d625..c58e70bd4 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/fr-unit-with-percentage.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/fr-unit-with-percentage.json @@ -761,4 +761,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/fr-unit.json b/tests/web_platform/css_grid_1/grid_definition/ref/fr-unit.json index 00199d625..c58e70bd4 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/fr-unit.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/fr-unit.json @@ -761,4 +761,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-flexible-lengths-001.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-flexible-lengths-001.json index 7f0b4a4fd..2a702b212 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-flexible-lengths-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-flexible-lengths-001.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-grid-template-areas-001.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-grid-template-areas-001.json index 0c3ef5daf..e39f307c8 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-grid-template-areas-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-grid-template-areas-001.json @@ -137,4 +137,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-grid-template-columns-rows-001.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-grid-template-columns-rows-001.json index 76c9da562..cecd14179 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-grid-template-columns-rows-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-grid-template-columns-rows-001.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-named-grid-lines-001.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-named-grid-lines-001.json index 76c9da562..cecd14179 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-named-grid-lines-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-named-grid-lines-001.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-repeat-001.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-repeat-001.json index 76c9da562..cecd14179 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-repeat-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-support-repeat-001.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-template-columns-rows-resolved-values-001.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-template-columns-rows-resolved-values-001.json index bd1686ddb..8055b9f93 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-template-columns-rows-resolved-values-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-inline-template-columns-rows-resolved-values-001.json @@ -1099,4 +1099,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-layout-auto-tracks.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-layout-auto-tracks.json index 82cc87e03..5d1843b41 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-layout-auto-tracks.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-layout-auto-tracks.json @@ -282,4 +282,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-layout-basic.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-layout-basic.json index 08027ad27..0ec988a2a 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-layout-basic.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-layout-basic.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-layout-repeat-notation.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-layout-repeat-notation.json index d66ee5f97..914fb085f 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-layout-repeat-notation.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-layout-repeat-notation.json @@ -328,4 +328,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-flexible-lengths-001.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-flexible-lengths-001.json index 13365bbf8..c24493668 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-flexible-lengths-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-flexible-lengths-001.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-grid-template-areas-001.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-grid-template-areas-001.json index 72f7d46dc..3bd292724 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-grid-template-areas-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-grid-template-areas-001.json @@ -137,4 +137,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-grid-template-columns-rows-001.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-grid-template-columns-rows-001.json index e0720b651..32dbaa2cc 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-grid-template-columns-rows-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-grid-template-columns-rows-001.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-named-grid-lines-001.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-named-grid-lines-001.json index e0720b651..32dbaa2cc 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-named-grid-lines-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-named-grid-lines-001.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-repeat-001.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-repeat-001.json index e0720b651..32dbaa2cc 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-repeat-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-support-repeat-001.json @@ -233,4 +233,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/ref/grid-template-columns-rows-resolved-values-001.json b/tests/web_platform/css_grid_1/grid_definition/ref/grid-template-columns-rows-resolved-values-001.json index bd1686ddb..8055b9f93 100644 --- a/tests/web_platform/css_grid_1/grid_definition/ref/grid-template-columns-rows-resolved-values-001.json +++ b/tests/web_platform/css_grid_1/grid_definition/ref/grid-template-columns-rows-resolved-values-001.json @@ -1099,4 +1099,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_definition/test_fr_unit.py b/tests/web_platform/css_grid_1/grid_definition/test_fr_unit.py index d6971fe9f..ca480b919 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_fr_unit.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_fr_unit.py @@ -2,4 +2,4 @@ class TestFrUnit(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'fr-unit')) + vars().update(W3CTestCase.find_tests(__file__, "fr-unit")) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_fr_unit_with_percentage.py b/tests/web_platform/css_grid_1/grid_definition/test_fr_unit_with_percentage.py index 5d7baf893..829cbc53e 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_fr_unit_with_percentage.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_fr_unit_with_percentage.py @@ -2,4 +2,4 @@ class TestFrUnitWithPercentage(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'fr-unit-with-percentage')) + vars().update(W3CTestCase.find_tests(__file__, "fr-unit-with-percentage")) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_flexible_lengths.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_flexible_lengths.py index c2245b389..8f0d0e8f6 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_flexible_lengths.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_flexible_lengths.py @@ -2,4 +2,6 @@ class TestGridInlineSupportFlexibleLengths(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-support-flexible-lengths-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-inline-support-flexible-lengths-") + ) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_grid_template_areas.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_grid_template_areas.py index d152aeb05..b0213b132 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_grid_template_areas.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_grid_template_areas.py @@ -2,4 +2,6 @@ class TestGridInlineSupportGridTemplateAreas(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-support-grid-template-areas-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-inline-support-grid-template-areas-") + ) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_grid_template_columns_rows.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_grid_template_columns_rows.py index f0bc531d4..4deb4b2f2 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_grid_template_columns_rows.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_grid_template_columns_rows.py @@ -2,4 +2,8 @@ class TestGridInlineSupportGridTemplateColumnsRows(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-support-grid-template-columns-rows-')) + vars().update( + W3CTestCase.find_tests( + __file__, "grid-inline-support-grid-template-columns-rows-" + ) + ) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_named_grid_lines.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_named_grid_lines.py index c46c355be..eae1a80e8 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_named_grid_lines.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_named_grid_lines.py @@ -2,4 +2,6 @@ class TestGridInlineSupportNamedGridLines(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-support-named-grid-lines-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-inline-support-named-grid-lines-") + ) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_repeat.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_repeat.py index 0c5e6aa11..2959505fa 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_repeat.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_support_repeat.py @@ -2,4 +2,4 @@ class TestGridInlineSupportRepeat(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-support-repeat-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-inline-support-repeat-")) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_template_columns_rows_resolved_values.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_template_columns_rows_resolved_values.py index 3ead2448c..7d6eb2cbb 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_template_columns_rows_resolved_values.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_inline_template_columns_rows_resolved_values.py @@ -2,4 +2,8 @@ class TestGridInlineTemplateColumnsRowsResolvedValues(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-template-columns-rows-resolved-values-')) + vars().update( + W3CTestCase.find_tests( + __file__, "grid-inline-template-columns-rows-resolved-values-" + ) + ) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_layout_auto_tracks.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_layout_auto_tracks.py index 10b5f504a..0ddab0930 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_layout_auto_tracks.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_layout_auto_tracks.py @@ -2,4 +2,4 @@ class TestGridLayoutAutoTracks(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-layout-auto-tracks')) + vars().update(W3CTestCase.find_tests(__file__, "grid-layout-auto-tracks")) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_layout_basic.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_layout_basic.py index c9fbef0bf..c97ac5d25 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_layout_basic.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_layout_basic.py @@ -2,4 +2,4 @@ class TestGridLayoutBasic(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-layout-basic')) + vars().update(W3CTestCase.find_tests(__file__, "grid-layout-basic")) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_layout_repeat_notation.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_layout_repeat_notation.py index b91c64217..025c9aa5f 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_layout_repeat_notation.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_layout_repeat_notation.py @@ -2,4 +2,4 @@ class TestGridLayoutRepeatNotation(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-layout-repeat-notation')) + vars().update(W3CTestCase.find_tests(__file__, "grid-layout-repeat-notation")) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_support_flexible_lengths.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_support_flexible_lengths.py index cbcc81289..05ef0e31c 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_support_flexible_lengths.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_support_flexible_lengths.py @@ -2,4 +2,4 @@ class TestGridSupportFlexibleLengths(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-support-flexible-lengths-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-support-flexible-lengths-")) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_support_grid_template_areas.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_support_grid_template_areas.py index 67d5eca8f..38c465ff5 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_support_grid_template_areas.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_support_grid_template_areas.py @@ -2,4 +2,4 @@ class TestGridSupportGridTemplateAreas(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-support-grid-template-areas-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-support-grid-template-areas-")) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_support_grid_template_columns_rows.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_support_grid_template_columns_rows.py index ad4ab2b5b..31e9d7bb6 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_support_grid_template_columns_rows.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_support_grid_template_columns_rows.py @@ -2,4 +2,6 @@ class TestGridSupportGridTemplateColumnsRows(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-support-grid-template-columns-rows-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-support-grid-template-columns-rows-") + ) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_support_named_grid_lines.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_support_named_grid_lines.py index b6019013e..e69c43fc0 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_support_named_grid_lines.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_support_named_grid_lines.py @@ -2,4 +2,4 @@ class TestGridSupportNamedGridLines(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-support-named-grid-lines-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-support-named-grid-lines-")) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_support_repeat.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_support_repeat.py index 20883d7c6..5517e8a1e 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_support_repeat.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_support_repeat.py @@ -2,4 +2,4 @@ class TestGridSupportRepeat(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-support-repeat-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-support-repeat-")) diff --git a/tests/web_platform/css_grid_1/grid_definition/test_grid_template_columns_rows_resolved_values.py b/tests/web_platform/css_grid_1/grid_definition/test_grid_template_columns_rows_resolved_values.py index 07a9ba0d6..b0057fa92 100644 --- a/tests/web_platform/css_grid_1/grid_definition/test_grid_template_columns_rows_resolved_values.py +++ b/tests/web_platform/css_grid_1/grid_definition/test_grid_template_columns_rows_resolved_values.py @@ -2,4 +2,6 @@ class TestGridTemplateColumnsRowsResolvedValues(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-template-columns-rows-resolved-values-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-template-columns-rows-resolved-values-") + ) diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-001.json index 2a7c191d9..a261bb953 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-001.json @@ -123,4 +123,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-items" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-002.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-002.json index bba41f1f7..1f8784ece 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-002.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-002.json @@ -193,4 +193,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-items" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-003.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-003.json index 9d2ab48b7..02816ad30 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-003.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-003.json @@ -78,4 +78,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-items" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-inline-blocks-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-inline-blocks-001.json index 7b36e2e82..6d0ad30cf 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-inline-blocks-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-items-inline-blocks-001.json @@ -65,4 +65,4 @@ "http://www.w3.org/TR/CSS2/zindex.html#painting-order" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-001.json index dfb1b2168..323af1514 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-001.json @@ -122,4 +122,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../reference/grid-2x2-blue-yellow-lime-magenta.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-002.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-002.json index d0c175b4e..6086e3b23 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-002.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-002.json @@ -122,4 +122,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../reference/grid-2x2-blue-yellow-lime-magenta.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-003.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-003.json index 970e0d42c..8d509dadf 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-003.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-003.json @@ -122,4 +122,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../reference/grid-2x2-blue-yellow-lime-magenta.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-004.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-004.json index d843fe0e1..9d1a54e47 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-004.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-004.json @@ -123,4 +123,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../reference/grid-2x2-blue-yellow-lime-magenta.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-005.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-005.json index 77d889c27..b98e7bc84 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-005.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-auto-placement-005.json @@ -123,4 +123,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../reference/grid-2x2-blue-yellow-lime-magenta.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-001.json index 2cb204e94..aafef1429 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-001.json @@ -70,4 +70,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-002.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-002.json index 5f7787435..89771daaa 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-002.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-002.json @@ -70,4 +70,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-003.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-003.json index 0044eec9f..b0d6f4141 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-003.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-003.json @@ -71,4 +71,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-004.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-004.json index f699ad0e7..76d6797c8 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-004.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-004.json @@ -71,4 +71,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-005.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-005.json index 2a2656e0f..142b46f6b 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-005.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-order-property-painting-005.json @@ -71,4 +71,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-001.json index 106de293f..777ba2302 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-001.json @@ -69,4 +69,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-002.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-002.json index e2bcb58ca..19ae64fee 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-002.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-002.json @@ -69,4 +69,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-003.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-003.json index 472c2ca3f..dfc4e4a96 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-003.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-003.json @@ -70,4 +70,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-004.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-004.json index d0786d76f..83315a71e 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-004.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-004.json @@ -70,4 +70,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-005.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-005.json index c2e8ca533..3abeb6529 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-005.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-005.json @@ -70,4 +70,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-001.json index 43dd7fd0b..859ab1e62 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-001.json @@ -90,4 +90,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-002.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-002.json index 17a69a8c5..ce963e1e5 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-002.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-002.json @@ -91,4 +91,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-003.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-003.json index 34ae1f152..011f9e29f 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-003.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-003.json @@ -91,4 +91,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-004.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-004.json index 0074563ec..e4a32d7e2 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-004.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-004.json @@ -90,4 +90,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-005.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-005.json index fd341123b..bcec57364 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-005.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-005.json @@ -90,4 +90,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-006.json b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-006.json index 4f3961f39..0ade758a2 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-006.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-inline-z-axis-ordering-overlapped-items-006.json @@ -96,4 +96,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-001.json index cf1c3316d..bfa5985c5 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-001.json @@ -52,4 +52,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-items" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-002.json b/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-002.json index 8dd568cc0..e1dbd51d2 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-002.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-002.json @@ -52,4 +52,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-items" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-003.json b/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-003.json index 1b90baf17..c90bc7f0a 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-003.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-003.json @@ -52,4 +52,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-items" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-004.json b/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-004.json index 7fe7a43ed..630ddf4bd 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-004.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-item-containing-block-004.json @@ -54,4 +54,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-items" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-items-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-items-001.json index 4c4518419..90fa3ea2d 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-items-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-items-001.json @@ -129,4 +129,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-items" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-items-002.json b/tests/web_platform/css_grid_1/grid_items/data/grid-items-002.json index 084852271..afcecda32 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-items-002.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-items-002.json @@ -158,4 +158,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-items" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-items-003.json b/tests/web_platform/css_grid_1/grid_items/data/grid-items-003.json index 008b0a452..976ab9b83 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-items-003.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-items-003.json @@ -78,4 +78,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-items" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-items-inline-blocks-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-items-inline-blocks-001.json index 888afe89a..e0cc1053d 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-items-inline-blocks-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-items-inline-blocks-001.json @@ -65,4 +65,4 @@ "http://www.w3.org/TR/CSS2/zindex.html#painting-order" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-items-sizing-alignment-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-items-sizing-alignment-001.json index 75b64c7c2..c0ad5438c 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-items-sizing-alignment-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-items-sizing-alignment-001.json @@ -91,4 +91,4 @@ "https://www.w3.org/TR/css-grid-1/#grid-item-sizing" ], "matches": "grid-items-sizing-alignment-001-ref.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-layout-grid-in-grid.json b/tests/web_platform/css_grid_1/grid_items/data/grid-layout-grid-in-grid.json index f927eccde..a0fe27d8a 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-layout-grid-in-grid.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-layout-grid-in-grid.json @@ -197,4 +197,4 @@ "https://drafts.csswg.org/css-grid/#grid-items" ], "matches": "../reference/grid-layout-grid-in-grid-ref.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-layout-z-order-a.json b/tests/web_platform/css_grid_1/grid_items/data/grid-layout-z-order-a.json index 0cad66bf3..764331b8c 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-layout-z-order-a.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-layout-z-order-a.json @@ -99,4 +99,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-layout-z-order-ref.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-layout-z-order-b.json b/tests/web_platform/css_grid_1/grid_items/data/grid-layout-z-order-b.json index 2728ebe62..02582b74e 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-layout-z-order-b.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-layout-z-order-b.json @@ -99,4 +99,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-layout-z-order-ref.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-001.json index 86817f80e..7efc7e4ce 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-001.json @@ -61,4 +61,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-002.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-002.json index 484f7ec33..33dce4c41 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-002.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-002.json @@ -59,4 +59,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-003.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-003.json index 4fa1f18c9..c8883d7f6 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-003.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-003.json @@ -61,4 +61,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-004.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-004.json index 7da1445aa..857b7224c 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-004.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-004.json @@ -61,4 +61,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-005.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-005.json index 4eda5ac3f..9b1025f79 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-005.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-005.json @@ -44,4 +44,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "ref-filled-green-100px-square-image.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-006.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-006.json index e07964706..b3267c52a 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-006.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-006.json @@ -46,4 +46,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "ref-filled-green-100px-square-image.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-007.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-007.json index 40d25af77..52b812d06 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-007.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-007.json @@ -57,4 +57,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "ref-filled-green-100px-square-image.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-008.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-008.json index a9c99d96f..2c67ac29a 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-008.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-008.json @@ -46,4 +46,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "ref-filled-green-100px-square-image.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-009.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-009.json index a7e26c8fa..88e20be77 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-009.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-009.json @@ -56,4 +56,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "ref-filled-green-100px-square-image.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-010.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-010.json index 956c0625e..f3d95e87e 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-010.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-010.json @@ -65,4 +65,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-011.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-011.json index 1565caeb2..3e8e619b3 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-011.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-011.json @@ -67,4 +67,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-012.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-012.json index 259e51e19..730989e91 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-012.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-012.json @@ -67,4 +67,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-013.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-013.json index 5eda1b90a..5107786f2 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-013.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-013.json @@ -69,4 +69,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-014.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-014.json index 9a918793a..01b382cb1 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-014.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-014.json @@ -67,4 +67,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-015.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-015.json index 02448af6b..d53facb26 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-015.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-015.json @@ -70,4 +70,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-016.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-016.json index 3d0b0f1b4..84086bc3f 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-016.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-016.json @@ -69,4 +69,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-017.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-017.json index 4a826cf94..ee789149b 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-017.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-017.json @@ -67,4 +67,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-018.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-018.json index 09365eac6..b04b319e3 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-018.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-018.json @@ -67,4 +67,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-019.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-019.json index 0b2fef374..37cf88c79 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-019.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-019.json @@ -67,4 +67,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-020.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-020.json index 0880b9151..d33fa70b6 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-020.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-020.json @@ -71,4 +71,4 @@ "http://www.w3.org/TR/css-grid-1/#min-size-auto" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-021.json b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-021.json index c8c4e06e6..c00e80206 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-021.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-minimum-size-grid-items-021.json @@ -741,4 +741,4 @@ "http://www.w3.org/TR/css-grid-1/#algo-track-sizing" ], "matches": null -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-001.json index bb4bd6264..dd95dfa46 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-001.json @@ -124,4 +124,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../reference/grid-2x2-blue-yellow-lime-magenta.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-002.json b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-002.json index e6a8ccfbb..c5c3f10de 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-002.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-002.json @@ -124,4 +124,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../reference/grid-2x2-blue-yellow-lime-magenta.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-003.json b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-003.json index bd1e044c3..5a64de57f 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-003.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-003.json @@ -124,4 +124,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../reference/grid-2x2-blue-yellow-lime-magenta.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-004.json b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-004.json index f2d07e97d..d7a54485e 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-004.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-004.json @@ -125,4 +125,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../reference/grid-2x2-blue-yellow-lime-magenta.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-005.json b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-005.json index 7fe0448be..dd9c13edb 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-005.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-auto-placement-005.json @@ -125,4 +125,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../reference/grid-2x2-blue-yellow-lime-magenta.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-001.json index 0ece49eb2..6fbf1f7ac 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-001.json @@ -70,4 +70,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-002.json b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-002.json index 192e90589..17c1eb17c 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-002.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-002.json @@ -70,4 +70,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-003.json b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-003.json index d3015fe6f..871b00148 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-003.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-003.json @@ -71,4 +71,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-004.json b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-004.json index b050d3f9c..1a19585e8 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-004.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-004.json @@ -71,4 +71,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-005.json b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-005.json index c9899bafd..ac0ce57c6 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-005.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-order-property-painting-005.json @@ -71,4 +71,4 @@ "https://drafts.csswg.org/css-flexbox-1/#order-property" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-001.json index b68fd0808..2ca2783a7 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-001.json @@ -69,4 +69,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-002.json b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-002.json index 10a52540a..5c50b7bce 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-002.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-002.json @@ -69,4 +69,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-003.json b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-003.json index cded82de5..1d8db50d4 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-003.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-003.json @@ -70,4 +70,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-004.json b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-004.json index 1cb36e517..126564153 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-004.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-004.json @@ -70,4 +70,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-005.json b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-005.json index 4473d695c..bc4579ca3 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-005.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-005.json @@ -70,4 +70,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../../reference/ref-filled-green-100px-square.xht" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-001.json b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-001.json index 83a5d7069..594dc178e 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-001.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-001.json @@ -90,4 +90,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-002.json b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-002.json index ded43c0b9..96c7642f7 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-002.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-002.json @@ -91,4 +91,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-003.json b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-003.json index ae3294dd0..f9a7df531 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-003.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-003.json @@ -91,4 +91,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-004.json b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-004.json index dcc6a8fa1..2a8a20cea 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-004.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-004.json @@ -90,4 +90,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-005.json b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-005.json index 086deab76..9354c4ab6 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-005.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-005.json @@ -90,4 +90,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-006.json b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-006.json index 950b376f0..2101cd04d 100644 --- a/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-006.json +++ b/tests/web_platform/css_grid_1/grid_items/data/grid-z-axis-ordering-overlapped-items-006.json @@ -96,4 +96,4 @@ "http://www.w3.org/TR/css-grid-1/#z-order" ], "matches": "../reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-001.json index 006d3fd85..455e11ffd 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-001.json @@ -407,4 +407,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-002.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-002.json index 40a7aeb59..fd4344d63 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-002.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-002.json @@ -805,4 +805,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-003.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-003.json index acc1b2c6a..faf33339c 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-003.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-003.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-inline-blocks-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-inline-blocks-001.json index 30849ada5..97fbeb0c4 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-inline-blocks-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-items-inline-blocks-001.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-001.json index 6f60e4ad8..965b0316c 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-001.json @@ -379,4 +379,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-002.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-002.json index 6f60e4ad8..965b0316c 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-002.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-002.json @@ -379,4 +379,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-003.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-003.json index 8fa940a7b..86d1a5686 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-003.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-003.json @@ -379,4 +379,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-004.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-004.json index 5bcf00776..aca6820c3 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-004.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-004.json @@ -379,4 +379,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-005.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-005.json index 858ec9371..488fbbf50 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-005.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-auto-placement-005.json @@ -379,4 +379,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-001.json index 30b5d026c..d4a3194db 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-001.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-002.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-002.json index 30b5d026c..d4a3194db 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-002.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-002.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-003.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-003.json index 30b5d026c..d4a3194db 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-003.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-003.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-004.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-004.json index 30b5d026c..d4a3194db 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-004.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-004.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-005.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-005.json index 30b5d026c..d4a3194db 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-005.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-order-property-painting-005.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-001.json index 30b5d026c..d4a3194db 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-001.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-002.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-002.json index 30b5d026c..d4a3194db 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-002.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-002.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-003.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-003.json index 30b5d026c..d4a3194db 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-003.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-003.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-004.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-004.json index 30b5d026c..d4a3194db 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-004.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-004.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-005.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-005.json index 30b5d026c..d4a3194db 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-005.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-005.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-001.json index 9e42901f0..f10d71534 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-001.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-002.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-002.json index 9e42901f0..f10d71534 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-002.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-002.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-003.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-003.json index 9e42901f0..f10d71534 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-003.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-003.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-004.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-004.json index 9e42901f0..f10d71534 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-004.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-004.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-005.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-005.json index 9e42901f0..f10d71534 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-005.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-005.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-006.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-006.json index 9e42901f0..f10d71534 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-006.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-inline-z-axis-ordering-overlapped-items-006.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-001.json index f5d7294d0..65662a2a5 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-001.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-002.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-002.json index f5d7294d0..65662a2a5 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-002.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-002.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-003.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-003.json index f5d7294d0..65662a2a5 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-003.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-003.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-004.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-004.json index 84218d086..56cedf904 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-004.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-item-containing-block-004.json @@ -188,4 +188,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-items-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-items-001.json index a2b015379..5a0524cc7 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-items-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-items-001.json @@ -407,4 +407,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-items-002.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-items-002.json index 66a0be3de..55f2f674e 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-items-002.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-items-002.json @@ -599,4 +599,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-items-003.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-items-003.json index 05b0f0c97..b718ff652 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-items-003.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-items-003.json @@ -235,4 +235,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-items-inline-blocks-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-items-inline-blocks-001.json index 0f9c26a86..da3baa482 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-items-inline-blocks-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-items-inline-blocks-001.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-items-sizing-alignment-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-items-sizing-alignment-001.json index 5c8f4184b..614fa660a 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-items-sizing-alignment-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-items-sizing-alignment-001.json @@ -375,4 +375,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-layout-grid-in-grid.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-layout-grid-in-grid.json index 993a6c336..68769a4d8 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-layout-grid-in-grid.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-layout-grid-in-grid.json @@ -521,4 +521,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-layout-z-order-a.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-layout-z-order-a.json index da053e4a4..8607bafc8 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-layout-z-order-a.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-layout-z-order-a.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-layout-z-order-b.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-layout-z-order-b.json index da053e4a4..8607bafc8 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-layout-z-order-b.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-layout-z-order-b.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-001.json index 581cd2488..4ce75fc1a 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-001.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-002.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-002.json index 33865e8ee..37f79c269 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-002.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-002.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-003.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-003.json index b7c97bf0d..93deb31c7 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-003.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-003.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-004.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-004.json index 0e90ea46f..0b4a218c6 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-004.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-004.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-005.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-005.json index 028242be8..fbd7468f1 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-005.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-005.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-006.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-006.json index 199a50f6d..a82ee9e79 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-006.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-006.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-007.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-007.json index d730c1f87..1a99bfaf1 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-007.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-007.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-008.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-008.json index 199a50f6d..a82ee9e79 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-008.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-008.json @@ -185,4 +185,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-009.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-009.json index 700f9aa2c..45d97e67c 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-009.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-009.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-010.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-010.json index 34d455d8c..0aaa9c969 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-010.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-010.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-011.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-011.json index f189937f2..c9857f4d8 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-011.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-011.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-012.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-012.json index f189937f2..c9857f4d8 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-012.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-012.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-013.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-013.json index 232619f46..486a2fcc2 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-013.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-013.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-014.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-014.json index bb3f25105..cd83a5008 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-014.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-014.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-015.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-015.json index 4dcdc3886..22bd676db 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-015.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-015.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-016.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-016.json index 34d455d8c..0aaa9c969 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-016.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-016.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-017.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-017.json index 33865e8ee..37f79c269 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-017.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-017.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-018.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-018.json index 33865e8ee..37f79c269 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-018.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-018.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-019.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-019.json index 78aee6dec..51e82f4d4 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-019.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-019.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-020.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-020.json index f303616e3..0834dbfbd 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-020.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-020.json @@ -233,4 +233,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-021.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-021.json index bbdc5d848..e8273450a 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-021.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-minimum-size-grid-items-021.json @@ -2951,4 +2951,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-001.json index bc96eca2b..f127dbbfe 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-001.json @@ -379,4 +379,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-002.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-002.json index bc96eca2b..f127dbbfe 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-002.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-002.json @@ -379,4 +379,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-003.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-003.json index d4efe12d1..2262c398c 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-003.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-003.json @@ -379,4 +379,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-004.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-004.json index db1bb3301..051d50dc6 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-004.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-004.json @@ -379,4 +379,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-005.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-005.json index 0c03c908c..c7e4531de 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-005.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-auto-placement-005.json @@ -379,4 +379,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-001.json index a9da58dc6..843f8c750 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-001.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-002.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-002.json index a9da58dc6..843f8c750 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-002.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-002.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-003.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-003.json index a9da58dc6..843f8c750 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-003.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-003.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-004.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-004.json index a9da58dc6..843f8c750 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-004.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-004.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-005.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-005.json index a9da58dc6..843f8c750 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-005.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-order-property-painting-005.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-001.json index a9da58dc6..843f8c750 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-001.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-002.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-002.json index a9da58dc6..843f8c750 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-002.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-002.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-003.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-003.json index a9da58dc6..843f8c750 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-003.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-003.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-004.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-004.json index a9da58dc6..843f8c750 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-004.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-004.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-005.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-005.json index a9da58dc6..843f8c750 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-005.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-005.json @@ -189,4 +189,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-001.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-001.json index 1ecdf18c8..805589d12 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-001.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-001.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-002.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-002.json index 1ecdf18c8..805589d12 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-002.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-002.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-003.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-003.json index 1ecdf18c8..805589d12 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-003.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-003.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-004.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-004.json index 1ecdf18c8..805589d12 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-004.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-004.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-005.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-005.json index 1ecdf18c8..805589d12 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-005.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-005.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-006.json b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-006.json index 1ecdf18c8..805589d12 100644 --- a/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-006.json +++ b/tests/web_platform/css_grid_1/grid_items/ref/grid-z-axis-ordering-overlapped-items-006.json @@ -237,4 +237,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_inline_items.py b/tests/web_platform/css_grid_1/grid_items/test_grid_inline_items.py index b898877d8..a5049a789 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_inline_items.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_inline_items.py @@ -2,4 +2,4 @@ class TestGridInlineItems(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-items-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-inline-items-")) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_inline_items_inline_blocks.py b/tests/web_platform/css_grid_1/grid_items/test_grid_inline_items_inline_blocks.py index aab426859..830295157 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_inline_items_inline_blocks.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_inline_items_inline_blocks.py @@ -2,4 +2,4 @@ class TestGridInlineItemsInlineBlocks(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-items-inline-blocks-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-inline-items-inline-blocks-")) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_inline_order_property_auto_placement.py b/tests/web_platform/css_grid_1/grid_items/test_grid_inline_order_property_auto_placement.py index 0a77e3a98..f500890d5 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_inline_order_property_auto_placement.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_inline_order_property_auto_placement.py @@ -2,4 +2,6 @@ class TestGridInlineOrderPropertyAutoPlacement(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-order-property-auto-placement-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-inline-order-property-auto-placement-") + ) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_inline_order_property_painting.py b/tests/web_platform/css_grid_1/grid_items/test_grid_inline_order_property_painting.py index 6d927b282..a110025b3 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_inline_order_property_painting.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_inline_order_property_painting.py @@ -2,4 +2,6 @@ class TestGridInlineOrderPropertyPainting(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-order-property-painting-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-inline-order-property-painting-") + ) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_inline_z_axis_ordering.py b/tests/web_platform/css_grid_1/grid_items/test_grid_inline_z_axis_ordering.py index 2bda2a0fc..a4e6c39e3 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_inline_z_axis_ordering.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_inline_z_axis_ordering.py @@ -2,4 +2,4 @@ class TestGridInlineZAxisOrdering(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-z-axis-ordering-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-inline-z-axis-ordering-")) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_inline_z_axis_ordering_overlapped_items.py b/tests/web_platform/css_grid_1/grid_items/test_grid_inline_z_axis_ordering_overlapped_items.py index 51d9e6f85..cb6480a1a 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_inline_z_axis_ordering_overlapped_items.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_inline_z_axis_ordering_overlapped_items.py @@ -2,4 +2,8 @@ class TestGridInlineZAxisOrderingOverlappedItems(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-z-axis-ordering-overlapped-items-')) + vars().update( + W3CTestCase.find_tests( + __file__, "grid-inline-z-axis-ordering-overlapped-items-" + ) + ) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_item_containing_block.py b/tests/web_platform/css_grid_1/grid_items/test_grid_item_containing_block.py index 879ef8884..e250fe4d3 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_item_containing_block.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_item_containing_block.py @@ -2,4 +2,4 @@ class TestGridItemContainingBlock(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-item-containing-block-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-item-containing-block-")) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_items.py b/tests/web_platform/css_grid_1/grid_items/test_grid_items.py index e18c6610d..61e84e2b5 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_items.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_items.py @@ -2,4 +2,4 @@ class TestGridItems(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-items-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-items-")) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_items_inline_blocks.py b/tests/web_platform/css_grid_1/grid_items/test_grid_items_inline_blocks.py index 774642bd7..e544574b8 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_items_inline_blocks.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_items_inline_blocks.py @@ -2,4 +2,4 @@ class TestGridItemsInlineBlocks(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-items-inline-blocks-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-items-inline-blocks-")) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_items_sizing_alignment.py b/tests/web_platform/css_grid_1/grid_items/test_grid_items_sizing_alignment.py index fa7fb888d..89ba7a31d 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_items_sizing_alignment.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_items_sizing_alignment.py @@ -2,4 +2,4 @@ class TestGridItemsSizingAlignment(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-items-sizing-alignment-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-items-sizing-alignment-")) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_layout_grid_in_grid.py b/tests/web_platform/css_grid_1/grid_items/test_grid_layout_grid_in_grid.py index c2a77c77b..2d78eb2db 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_layout_grid_in_grid.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_layout_grid_in_grid.py @@ -2,4 +2,4 @@ class TestGridLayoutGridInGrid(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-layout-grid-in-grid')) + vars().update(W3CTestCase.find_tests(__file__, "grid-layout-grid-in-grid")) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_layout_z_order_a.py b/tests/web_platform/css_grid_1/grid_items/test_grid_layout_z_order_a.py index 37a7c2e6d..443d6293f 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_layout_z_order_a.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_layout_z_order_a.py @@ -2,4 +2,4 @@ class TestGridLayoutZOrderA(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-layout-z-order-a')) + vars().update(W3CTestCase.find_tests(__file__, "grid-layout-z-order-a")) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_layout_z_order_b.py b/tests/web_platform/css_grid_1/grid_items/test_grid_layout_z_order_b.py index 4be54679e..17c79a7fd 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_layout_z_order_b.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_layout_z_order_b.py @@ -2,4 +2,4 @@ class TestGridLayoutZOrderB(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-layout-z-order-b')) + vars().update(W3CTestCase.find_tests(__file__, "grid-layout-z-order-b")) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_minimum_size_grid_items.py b/tests/web_platform/css_grid_1/grid_items/test_grid_minimum_size_grid_items.py index 073ca2c9a..8b3c7581a 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_minimum_size_grid_items.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_minimum_size_grid_items.py @@ -2,4 +2,4 @@ class TestGridMinimumSizeGridItems(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-minimum-size-grid-items-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-minimum-size-grid-items-")) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_order_property_auto_placement.py b/tests/web_platform/css_grid_1/grid_items/test_grid_order_property_auto_placement.py index 5276cbfb8..a5d418fdd 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_order_property_auto_placement.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_order_property_auto_placement.py @@ -2,4 +2,6 @@ class TestGridOrderPropertyAutoPlacement(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-order-property-auto-placement-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-order-property-auto-placement-") + ) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_order_property_painting.py b/tests/web_platform/css_grid_1/grid_items/test_grid_order_property_painting.py index 8ddd81209..23509c67f 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_order_property_painting.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_order_property_painting.py @@ -2,4 +2,4 @@ class TestGridOrderPropertyPainting(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-order-property-painting-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-order-property-painting-")) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_z_axis_ordering.py b/tests/web_platform/css_grid_1/grid_items/test_grid_z_axis_ordering.py index 3741d843e..3dd3cbbf8 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_z_axis_ordering.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_z_axis_ordering.py @@ -2,4 +2,4 @@ class TestGridZAxisOrdering(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-z-axis-ordering-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-z-axis-ordering-")) diff --git a/tests/web_platform/css_grid_1/grid_items/test_grid_z_axis_ordering_overlapped_items.py b/tests/web_platform/css_grid_1/grid_items/test_grid_z_axis_ordering_overlapped_items.py index f674a3344..a3b1b3e32 100644 --- a/tests/web_platform/css_grid_1/grid_items/test_grid_z_axis_ordering_overlapped_items.py +++ b/tests/web_platform/css_grid_1/grid_items/test_grid_z_axis_ordering_overlapped_items.py @@ -2,4 +2,6 @@ class TestGridZAxisOrderingOverlappedItems(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-z-axis-ordering-overlapped-items-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-z-axis-ordering-overlapped-items-") + ) diff --git a/tests/web_platform/css_grid_1/grid_model/data/display-grid.json b/tests/web_platform/css_grid_1/grid_model/data/display-grid.json index 42455cab7..f297cb2c2 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/display-grid.json +++ b/tests/web_platform/css_grid_1/grid_model/data/display-grid.json @@ -246,4 +246,4 @@ "help": [ "http://www.w3.org/TR/css-grid-1/#grid-containers" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/display-inline-grid.json b/tests/web_platform/css_grid_1/grid_model/data/display-inline-grid.json index 2224b323a..fb8a47f44 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/display-inline-grid.json +++ b/tests/web_platform/css_grid_1/grid_model/data/display-inline-grid.json @@ -257,4 +257,4 @@ "help": [ "http://www.w3.org/TR/css-grid-1/#grid-containers" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-display-grid-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-display-grid-001.json index be5187194..03f2d49cb 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-display-grid-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-display-grid-001.json @@ -101,4 +101,4 @@ "help": [ "http://www.w3.org/TR/css-grid-1/#grid-containers" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-display-inline-grid-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-display-inline-grid-001.json index 38f7bc692..4996f5f6d 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-display-inline-grid-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-display-inline-grid-001.json @@ -49,4 +49,4 @@ "help": [ "http://www.w3.org/TR/css-grid-1/#grid-containers" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-first-letter-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-first-letter-001.json index 9ecff9496..955d4cc8d 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-first-letter-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-first-letter-001.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-selectors/#first-letter" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-first-letter-002.json b/tests/web_platform/css_grid_1/grid_model/data/grid-first-letter-002.json index 548c8ed13..cbd4e534d 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-first-letter-002.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-first-letter-002.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-selectors/#first-letter" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-first-letter-003.json b/tests/web_platform/css_grid_1/grid_model/data/grid-first-letter-003.json index fa56be6d7..951141cf4 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-first-letter-003.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-first-letter-003.json @@ -101,4 +101,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-selectors/#first-letter" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-first-line-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-first-line-001.json index 5cb19ffed..63d3f741f 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-first-line-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-first-line-001.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-selectors/#first-formatted-line" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-first-line-002.json b/tests/web_platform/css_grid_1/grid_model/data/grid-first-line-002.json index 8a288dc4d..fae9bac60 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-first-line-002.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-first-line-002.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-selectors/#first-formatted-line" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-first-line-003.json b/tests/web_platform/css_grid_1/grid_model/data/grid-first-line-003.json index cd21e62d9..7f701c603 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-first-line-003.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-first-line-003.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-selectors/#first-formatted-line" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-float-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-float-001.json index cb3e722a6..566b44d19 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-float-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-float-001.json @@ -60,4 +60,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/CSS21/visuren.html#float-position" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-floats-no-intrude-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-floats-no-intrude-001.json index 7478cb658..547388303 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-floats-no-intrude-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-floats-no-intrude-001.json @@ -50,4 +50,4 @@ "help": [ "http://www.w3.org/TR/css-grid-1/#grid-containers" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-letter-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-letter-001.json index ae1573479..320562754 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-letter-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-letter-001.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-selectors/#first-letter" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-letter-002.json b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-letter-002.json index 787ca4bdf..87bca1e81 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-letter-002.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-letter-002.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-selectors/#first-letter" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-letter-003.json b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-letter-003.json index 5d8046f14..88390bed6 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-letter-003.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-letter-003.json @@ -101,4 +101,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-selectors/#first-letter" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-line-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-line-001.json index 31f96c9ac..a59ee8e69 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-line-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-line-001.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-selectors/#first-formatted-line" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-line-002.json b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-line-002.json index 61e33a7d0..fdf617531 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-line-002.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-line-002.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-selectors/#first-formatted-line" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-line-003.json b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-line-003.json index 1268e3083..0f50cd938 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-line-003.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-first-line-003.json @@ -86,4 +86,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-selectors/#first-formatted-line" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-float-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-float-001.json index b02bbb8f5..808fafbb6 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-float-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-float-001.json @@ -60,4 +60,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/CSS21/visuren.html#float-position" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-floats-no-intrude-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-floats-no-intrude-001.json index e83d36b8d..533ad50de 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-floats-no-intrude-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-floats-no-intrude-001.json @@ -50,4 +50,4 @@ "help": [ "http://www.w3.org/TR/css-grid-1/#grid-containers" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-margins-no-collapse-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-margins-no-collapse-001.json index d44f6f062..1db42a0c8 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-margins-no-collapse-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-margins-no-collapse-001.json @@ -67,4 +67,4 @@ "help": [ "http://www.w3.org/TR/css-grid-1/#grid-containers" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-multicol-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-multicol-001.json index b71f3c22b..7d6767806 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-multicol-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-multicol-001.json @@ -60,4 +60,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-multicol/#the-number-and-width-of-columns" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-vertical-align-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-vertical-align-001.json index bfdec0ab1..75457f4b1 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-inline-vertical-align-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-inline-vertical-align-001.json @@ -68,4 +68,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-margins-no-collapse-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-margins-no-collapse-001.json index a0f617690..993a94f95 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-margins-no-collapse-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-margins-no-collapse-001.json @@ -67,4 +67,4 @@ "help": [ "http://www.w3.org/TR/css-grid-1/#grid-containers" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-multicol-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-multicol-001.json index 5fbf7a048..ca2ba8a5a 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-multicol-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-multicol-001.json @@ -60,4 +60,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/css3-multicol/#the-number-and-width-of-columns" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-support-display-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-support-display-001.json index 515e3a9ce..6d3d460ee 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-support-display-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-support-display-001.json @@ -78,4 +78,4 @@ "help": [ "http://www.w3.org/TR/css-grid-1/#grid-containers" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/data/grid-vertical-align-001.json b/tests/web_platform/css_grid_1/grid_model/data/grid-vertical-align-001.json index e86567987..9f5c55ece 100644 --- a/tests/web_platform/css_grid_1/grid_model/data/grid-vertical-align-001.json +++ b/tests/web_platform/css_grid_1/grid_model/data/grid-vertical-align-001.json @@ -68,4 +68,4 @@ "http://www.w3.org/TR/css-grid-1/#grid-containers", "http://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align" ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/display-grid.json b/tests/web_platform/css_grid_1/grid_model/ref/display-grid.json index 9adf47876..4ddb6b543 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/display-grid.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/display-grid.json @@ -765,4 +765,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/display-inline-grid.json b/tests/web_platform/css_grid_1/grid_model/ref/display-inline-grid.json index 1c3f5a66d..16339ecd9 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/display-inline-grid.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/display-inline-grid.json @@ -813,4 +813,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-display-grid-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-display-grid-001.json index e14fa7b61..58fdd17c4 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-display-grid-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-display-grid-001.json @@ -379,4 +379,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-display-inline-grid-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-display-inline-grid-001.json index 0318ed45d..9d0a368c4 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-display-inline-grid-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-display-inline-grid-001.json @@ -183,4 +183,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-first-letter-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-first-letter-001.json index d07866ee7..f150a7073 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-first-letter-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-first-letter-001.json @@ -306,4 +306,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-first-letter-002.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-first-letter-002.json index d07866ee7..f150a7073 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-first-letter-002.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-first-letter-002.json @@ -306,4 +306,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-first-letter-003.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-first-letter-003.json index e19e8b465..5451164f6 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-first-letter-003.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-first-letter-003.json @@ -361,4 +361,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-first-line-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-first-line-001.json index d07866ee7..f150a7073 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-first-line-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-first-line-001.json @@ -306,4 +306,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-first-line-002.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-first-line-002.json index d07866ee7..f150a7073 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-first-line-002.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-first-line-002.json @@ -306,4 +306,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-first-line-003.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-first-line-003.json index d07866ee7..f150a7073 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-first-line-003.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-first-line-003.json @@ -306,4 +306,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-float-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-float-001.json index 57f772051..9aeea0536 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-float-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-float-001.json @@ -231,4 +231,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-floats-no-intrude-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-floats-no-intrude-001.json index f511e096a..912e41265 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-floats-no-intrude-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-floats-no-intrude-001.json @@ -183,4 +183,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-letter-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-letter-001.json index 3002fb2f2..32f10dbed 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-letter-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-letter-001.json @@ -306,4 +306,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-letter-002.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-letter-002.json index 3002fb2f2..32f10dbed 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-letter-002.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-letter-002.json @@ -306,4 +306,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-letter-003.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-letter-003.json index 2a36c0022..40749bd24 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-letter-003.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-letter-003.json @@ -361,4 +361,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-line-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-line-001.json index 3002fb2f2..32f10dbed 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-line-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-line-001.json @@ -306,4 +306,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-line-002.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-line-002.json index 3002fb2f2..32f10dbed 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-line-002.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-line-002.json @@ -306,4 +306,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-line-003.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-line-003.json index 3002fb2f2..32f10dbed 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-line-003.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-first-line-003.json @@ -306,4 +306,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-float-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-float-001.json index 1a970805a..f3d6f01fd 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-float-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-float-001.json @@ -231,4 +231,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-floats-no-intrude-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-floats-no-intrude-001.json index 0318ed45d..9d0a368c4 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-floats-no-intrude-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-floats-no-intrude-001.json @@ -183,4 +183,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-margins-no-collapse-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-margins-no-collapse-001.json index 215b2b94c..e7e8908bc 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-margins-no-collapse-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-margins-no-collapse-001.json @@ -210,4 +210,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-multicol-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-multicol-001.json index 1a970805a..f3d6f01fd 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-multicol-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-multicol-001.json @@ -231,4 +231,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-vertical-align-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-vertical-align-001.json index 2a806d4b4..5b30b1e8b 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-vertical-align-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-inline-vertical-align-001.json @@ -235,4 +235,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-margins-no-collapse-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-margins-no-collapse-001.json index f85f09e29..fc07a316b 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-margins-no-collapse-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-margins-no-collapse-001.json @@ -210,4 +210,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-multicol-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-multicol-001.json index 57f772051..9aeea0536 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-multicol-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-multicol-001.json @@ -231,4 +231,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-support-display-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-support-display-001.json index e938f6535..e187d9641 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-support-display-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-support-display-001.json @@ -367,4 +367,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/ref/grid-vertical-align-001.json b/tests/web_platform/css_grid_1/grid_model/ref/grid-vertical-align-001.json index a39382f9a..6348777db 100644 --- a/tests/web_platform/css_grid_1/grid_model/ref/grid-vertical-align-001.json +++ b/tests/web_platform/css_grid_1/grid_model/ref/grid-vertical-align-001.json @@ -235,4 +235,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/grid_model/test_display_grid.py b/tests/web_platform/css_grid_1/grid_model/test_display_grid.py index b5f31cb38..dd87507c3 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_display_grid.py +++ b/tests/web_platform/css_grid_1/grid_model/test_display_grid.py @@ -2,4 +2,4 @@ class TestDisplayGrid(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'display-grid')) + vars().update(W3CTestCase.find_tests(__file__, "display-grid")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_display_inline_grid.py b/tests/web_platform/css_grid_1/grid_model/test_display_inline_grid.py index 01b32e77e..fdadaf645 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_display_inline_grid.py +++ b/tests/web_platform/css_grid_1/grid_model/test_display_inline_grid.py @@ -2,4 +2,4 @@ class TestDisplayInlineGrid(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'display-inline-grid')) + vars().update(W3CTestCase.find_tests(__file__, "display-inline-grid")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_display_grid.py b/tests/web_platform/css_grid_1/grid_model/test_grid_display_grid.py index f32200748..2079e1587 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_display_grid.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_display_grid.py @@ -2,4 +2,4 @@ class TestGridDisplayGrid(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-display-grid-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-display-grid-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_display_inline_grid.py b/tests/web_platform/css_grid_1/grid_model/test_grid_display_inline_grid.py index dec435719..164789d36 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_display_inline_grid.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_display_inline_grid.py @@ -2,4 +2,4 @@ class TestGridDisplayInlineGrid(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-display-inline-grid-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-display-inline-grid-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_first_letter.py b/tests/web_platform/css_grid_1/grid_model/test_grid_first_letter.py index 5f5de4a1f..9d1cfdfa6 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_first_letter.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_first_letter.py @@ -2,4 +2,4 @@ class TestGridFirstLetter(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-first-letter-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-first-letter-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_first_line.py b/tests/web_platform/css_grid_1/grid_model/test_grid_first_line.py index 69cb6ce54..830e1ed9b 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_first_line.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_first_line.py @@ -2,4 +2,4 @@ class TestGridFirstLine(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-first-line-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-first-line-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_float.py b/tests/web_platform/css_grid_1/grid_model/test_grid_float.py index 808ccc445..a47457be0 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_float.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_float.py @@ -2,4 +2,4 @@ class TestGridFloat(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-float-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-float-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_floats_no_intrude.py b/tests/web_platform/css_grid_1/grid_model/test_grid_floats_no_intrude.py index 21e1a6dd8..2abf4b5cf 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_floats_no_intrude.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_floats_no_intrude.py @@ -2,4 +2,4 @@ class TestGridFloatsNoIntrude(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-floats-no-intrude-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-floats-no-intrude-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_first_letter.py b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_first_letter.py index 88675db78..a1c81251d 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_first_letter.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_first_letter.py @@ -2,4 +2,4 @@ class TestGridInlineFirstLetter(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-first-letter-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-inline-first-letter-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_first_line.py b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_first_line.py index 67157ca3f..da4423ffc 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_first_line.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_first_line.py @@ -2,4 +2,4 @@ class TestGridInlineFirstLine(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-first-line-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-inline-first-line-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_float.py b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_float.py index ec59cc9a7..27200c864 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_float.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_float.py @@ -2,4 +2,4 @@ class TestGridInlineFloat(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-float-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-inline-float-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_floats_no_intrude.py b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_floats_no_intrude.py index ba63006ba..81e978adc 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_floats_no_intrude.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_floats_no_intrude.py @@ -2,4 +2,4 @@ class TestGridInlineFloatsNoIntrude(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-floats-no-intrude-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-inline-floats-no-intrude-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_margins_no_collapse.py b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_margins_no_collapse.py index 4ab4700d3..6db94b185 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_margins_no_collapse.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_margins_no_collapse.py @@ -2,4 +2,4 @@ class TestGridInlineMarginsNoCollapse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-margins-no-collapse-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-inline-margins-no-collapse-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_multicol.py b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_multicol.py index 19b66127c..c95aaf1e5 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_multicol.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_multicol.py @@ -2,4 +2,4 @@ class TestGridInlineMulticol(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-multicol-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-inline-multicol-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_vertical_align.py b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_vertical_align.py index 4c707d37f..24480cd25 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_inline_vertical_align.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_inline_vertical_align.py @@ -2,4 +2,4 @@ class TestGridInlineVerticalAlign(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-inline-vertical-align-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-inline-vertical-align-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_margins_no_collapse.py b/tests/web_platform/css_grid_1/grid_model/test_grid_margins_no_collapse.py index c82648ea2..30159c2fb 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_margins_no_collapse.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_margins_no_collapse.py @@ -2,4 +2,4 @@ class TestGridMarginsNoCollapse(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-margins-no-collapse-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-margins-no-collapse-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_multicol.py b/tests/web_platform/css_grid_1/grid_model/test_grid_multicol.py index 37765eb97..4eab3f480 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_multicol.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_multicol.py @@ -2,4 +2,4 @@ class TestGridMulticol(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-multicol-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-multicol-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_support_display.py b/tests/web_platform/css_grid_1/grid_model/test_grid_support_display.py index 23e8a3802..fa4059ef8 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_support_display.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_support_display.py @@ -2,4 +2,4 @@ class TestGridSupportDisplay(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-support-display-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-support-display-")) diff --git a/tests/web_platform/css_grid_1/grid_model/test_grid_vertical_align.py b/tests/web_platform/css_grid_1/grid_model/test_grid_vertical_align.py index 7fe5d3929..d162d3afe 100644 --- a/tests/web_platform/css_grid_1/grid_model/test_grid_vertical_align.py +++ b/tests/web_platform/css_grid_1/grid_model/test_grid_vertical_align.py @@ -2,4 +2,4 @@ class TestGridVerticalAlign(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-vertical-align-')) + vars().update(W3CTestCase.find_tests(__file__, "grid-vertical-align-")) diff --git a/tests/web_platform/css_grid_1/implicit_grids/data/grid-support-grid-auto-columns-rows-001.json b/tests/web_platform/css_grid_1/implicit_grids/data/grid-support-grid-auto-columns-rows-001.json index f561ebdee..fc87f2363 100644 --- a/tests/web_platform/css_grid_1/implicit_grids/data/grid-support-grid-auto-columns-rows-001.json +++ b/tests/web_platform/css_grid_1/implicit_grids/data/grid-support-grid-auto-columns-rows-001.json @@ -64,4 +64,4 @@ ], "assert": null, "matches": "../reference/grid-support-grid-auto-columns-rows-001-ref.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/implicit_grids/data/grid-support-grid-auto-columns-rows-002.json b/tests/web_platform/css_grid_1/implicit_grids/data/grid-support-grid-auto-columns-rows-002.json index f1a83a2b3..ade4490d1 100644 --- a/tests/web_platform/css_grid_1/implicit_grids/data/grid-support-grid-auto-columns-rows-002.json +++ b/tests/web_platform/css_grid_1/implicit_grids/data/grid-support-grid-auto-columns-rows-002.json @@ -100,4 +100,4 @@ ], "assert": null, "matches": "../reference/grid-support-grid-auto-columns-rows-002-ref.html" -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/implicit_grids/ref/grid-support-grid-auto-columns-rows-001.json b/tests/web_platform/css_grid_1/implicit_grids/ref/grid-support-grid-auto-columns-rows-001.json index ef31fdb9c..133d7bea9 100644 --- a/tests/web_platform/css_grid_1/implicit_grids/ref/grid-support-grid-auto-columns-rows-001.json +++ b/tests/web_platform/css_grid_1/implicit_grids/ref/grid-support-grid-auto-columns-rows-001.json @@ -231,4 +231,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/implicit_grids/ref/grid-support-grid-auto-columns-rows-002.json b/tests/web_platform/css_grid_1/implicit_grids/ref/grid-support-grid-auto-columns-rows-002.json index d1795fd04..f33853b0a 100644 --- a/tests/web_platform/css_grid_1/implicit_grids/ref/grid-support-grid-auto-columns-rows-002.json +++ b/tests/web_platform/css_grid_1/implicit_grids/ref/grid-support-grid-auto-columns-rows-002.json @@ -369,4 +369,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/implicit_grids/test_grid_support_grid_auto_columns_rows.py b/tests/web_platform/css_grid_1/implicit_grids/test_grid_support_grid_auto_columns_rows.py index 9d666a3e1..363c0a0b8 100644 --- a/tests/web_platform/css_grid_1/implicit_grids/test_grid_support_grid_auto_columns_rows.py +++ b/tests/web_platform/css_grid_1/implicit_grids/test_grid_support_grid_auto_columns_rows.py @@ -2,4 +2,6 @@ class TestGridSupportGridAutoColumnsRows(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-support-grid-auto-columns-rows-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-support-grid-auto-columns-rows-") + ) diff --git a/tests/web_platform/css_grid_1/layout_algorithm/data/grid-layout-free-space-unit.json b/tests/web_platform/css_grid_1/layout_algorithm/data/grid-layout-free-space-unit.json index b7d3c8452..15e41accc 100644 --- a/tests/web_platform/css_grid_1/layout_algorithm/data/grid-layout-free-space-unit.json +++ b/tests/web_platform/css_grid_1/layout_algorithm/data/grid-layout-free-space-unit.json @@ -86,4 +86,4 @@ } }, "assert": "the layout should behave the same as reference." -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/layout_algorithm/ref/grid-layout-free-space-unit.json b/tests/web_platform/css_grid_1/layout_algorithm/ref/grid-layout-free-space-unit.json index d5fc1ebe2..0f568a71b 100644 --- a/tests/web_platform/css_grid_1/layout_algorithm/ref/grid-layout-free-space-unit.json +++ b/tests/web_platform/css_grid_1/layout_algorithm/ref/grid-layout-free-space-unit.json @@ -187,4 +187,4 @@ 0, 0 ] -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/layout_algorithm/test_grid_layout_free_space_unit.py b/tests/web_platform/css_grid_1/layout_algorithm/test_grid_layout_free_space_unit.py index 166be0432..db304c52d 100644 --- a/tests/web_platform/css_grid_1/layout_algorithm/test_grid_layout_free_space_unit.py +++ b/tests/web_platform/css_grid_1/layout_algorithm/test_grid_layout_free_space_unit.py @@ -2,4 +2,4 @@ class TestGridLayoutFreeSpaceUnit(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-layout-free-space-unit')) + vars().update(W3CTestCase.find_tests(__file__, "grid-layout-free-space-unit")) diff --git a/tests/web_platform/css_grid_1/placement/data/grid-layout-grid-span.json b/tests/web_platform/css_grid_1/placement/data/grid-layout-grid-span.json index 11e2dedb1..d6e9af44b 100644 --- a/tests/web_platform/css_grid_1/placement/data/grid-layout-grid-span.json +++ b/tests/web_platform/css_grid_1/placement/data/grid-layout-grid-span.json @@ -86,4 +86,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/placement/data/grid-layout-lines-shorthands.json b/tests/web_platform/css_grid_1/placement/data/grid-layout-lines-shorthands.json index 181acc1d6..e1768151e 100644 --- a/tests/web_platform/css_grid_1/placement/data/grid-layout-lines-shorthands.json +++ b/tests/web_platform/css_grid_1/placement/data/grid-layout-lines-shorthands.json @@ -82,4 +82,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/placement/data/grid-layout-lines.json b/tests/web_platform/css_grid_1/placement/data/grid-layout-lines.json index 181acc1d6..e1768151e 100644 --- a/tests/web_platform/css_grid_1/placement/data/grid-layout-lines.json +++ b/tests/web_platform/css_grid_1/placement/data/grid-layout-lines.json @@ -82,4 +82,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/placement/data/grid-layout-placement-shorthands.json b/tests/web_platform/css_grid_1/placement/data/grid-layout-placement-shorthands.json index 6d3f19e0b..376f89338 100644 --- a/tests/web_platform/css_grid_1/placement/data/grid-layout-placement-shorthands.json +++ b/tests/web_platform/css_grid_1/placement/data/grid-layout-placement-shorthands.json @@ -86,4 +86,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/placement/data/grid-placement-using-named-grid-lines-001.json b/tests/web_platform/css_grid_1/placement/data/grid-placement-using-named-grid-lines-001.json index aee45b089..5715860d7 100644 --- a/tests/web_platform/css_grid_1/placement/data/grid-placement-using-named-grid-lines-001.json +++ b/tests/web_platform/css_grid_1/placement/data/grid-placement-using-named-grid-lines-001.json @@ -146,4 +146,4 @@ } ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/placement/ref/grid-layout-grid-span.json b/tests/web_platform/css_grid_1/placement/ref/grid-layout-grid-span.json index c408c1eed..d4b7494e0 100644 --- a/tests/web_platform/css_grid_1/placement/ref/grid-layout-grid-span.json +++ b/tests/web_platform/css_grid_1/placement/ref/grid-layout-grid-span.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/placement/ref/grid-layout-lines-shorthands.json b/tests/web_platform/css_grid_1/placement/ref/grid-layout-lines-shorthands.json index c408c1eed..d4b7494e0 100644 --- a/tests/web_platform/css_grid_1/placement/ref/grid-layout-lines-shorthands.json +++ b/tests/web_platform/css_grid_1/placement/ref/grid-layout-lines-shorthands.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/placement/ref/grid-layout-lines.json b/tests/web_platform/css_grid_1/placement/ref/grid-layout-lines.json index c408c1eed..d4b7494e0 100644 --- a/tests/web_platform/css_grid_1/placement/ref/grid-layout-lines.json +++ b/tests/web_platform/css_grid_1/placement/ref/grid-layout-lines.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/placement/ref/grid-layout-placement-shorthands.json b/tests/web_platform/css_grid_1/placement/ref/grid-layout-placement-shorthands.json index c408c1eed..d4b7494e0 100644 --- a/tests/web_platform/css_grid_1/placement/ref/grid-layout-placement-shorthands.json +++ b/tests/web_platform/css_grid_1/placement/ref/grid-layout-placement-shorthands.json @@ -187,4 +187,4 @@ 0 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/placement/ref/grid-placement-using-named-grid-lines-001.json b/tests/web_platform/css_grid_1/placement/ref/grid-placement-using-named-grid-lines-001.json index 0fcb092cc..01015a2ff 100644 --- a/tests/web_platform/css_grid_1/placement/ref/grid-placement-using-named-grid-lines-001.json +++ b/tests/web_platform/css_grid_1/placement/ref/grid-placement-using-named-grid-lines-001.json @@ -323,4 +323,4 @@ 8 ] } -} \ No newline at end of file +} diff --git a/tests/web_platform/css_grid_1/placement/test_grid_layout_grid_span.py b/tests/web_platform/css_grid_1/placement/test_grid_layout_grid_span.py index 40ac5e0d2..9d5756b9a 100644 --- a/tests/web_platform/css_grid_1/placement/test_grid_layout_grid_span.py +++ b/tests/web_platform/css_grid_1/placement/test_grid_layout_grid_span.py @@ -2,4 +2,4 @@ class TestGridLayoutGridSpan(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-layout-grid-span')) + vars().update(W3CTestCase.find_tests(__file__, "grid-layout-grid-span")) diff --git a/tests/web_platform/css_grid_1/placement/test_grid_layout_lines.py b/tests/web_platform/css_grid_1/placement/test_grid_layout_lines.py index 4fd789c1f..3825c8937 100644 --- a/tests/web_platform/css_grid_1/placement/test_grid_layout_lines.py +++ b/tests/web_platform/css_grid_1/placement/test_grid_layout_lines.py @@ -2,4 +2,4 @@ class TestGridLayoutLines(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-layout-lines')) + vars().update(W3CTestCase.find_tests(__file__, "grid-layout-lines")) diff --git a/tests/web_platform/css_grid_1/placement/test_grid_layout_lines_shorthands.py b/tests/web_platform/css_grid_1/placement/test_grid_layout_lines_shorthands.py index 942e68cac..72e451c7b 100644 --- a/tests/web_platform/css_grid_1/placement/test_grid_layout_lines_shorthands.py +++ b/tests/web_platform/css_grid_1/placement/test_grid_layout_lines_shorthands.py @@ -2,4 +2,4 @@ class TestGridLayoutLinesShorthands(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-layout-lines-shorthands')) + vars().update(W3CTestCase.find_tests(__file__, "grid-layout-lines-shorthands")) diff --git a/tests/web_platform/css_grid_1/placement/test_grid_layout_placement_shorthands.py b/tests/web_platform/css_grid_1/placement/test_grid_layout_placement_shorthands.py index c970285fe..4e2ca1f9b 100644 --- a/tests/web_platform/css_grid_1/placement/test_grid_layout_placement_shorthands.py +++ b/tests/web_platform/css_grid_1/placement/test_grid_layout_placement_shorthands.py @@ -2,4 +2,4 @@ class TestGridLayoutPlacementShorthands(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-layout-placement-shorthands')) + vars().update(W3CTestCase.find_tests(__file__, "grid-layout-placement-shorthands")) diff --git a/tests/web_platform/css_grid_1/placement/test_grid_placement_using_named_grid_lines.py b/tests/web_platform/css_grid_1/placement/test_grid_placement_using_named_grid_lines.py index bf2ad8cc2..b93a2938c 100644 --- a/tests/web_platform/css_grid_1/placement/test_grid_placement_using_named_grid_lines.py +++ b/tests/web_platform/css_grid_1/placement/test_grid_placement_using_named_grid_lines.py @@ -2,4 +2,6 @@ class TestGridPlacementUsingNamedGridLines(W3CTestCase): - vars().update(W3CTestCase.find_tests(__file__, 'grid-placement-using-named-grid-lines-')) + vars().update( + W3CTestCase.find_tests(__file__, "grid-placement-using-named-grid-lines-") + ) diff --git a/tox.ini b/tox.ini index 3e26b931d..8963996cb 100644 --- a/tox.ini +++ b/tox.ini @@ -1,35 +1,45 @@ -# Tox (http://tox.testrun.org/) is a tool for running tests -# in multiple virtualenvs. This configuration file will run the -# test suite on all supported python versions. To use it, "pip install tox" -# and then run "tox" from this directory. +# Flake8 doesn't believe in pyproject.toml, so we put the configuration here. +[flake8] +exclude= + local/*,\ + docs/*,\ + build/*,\ + dist/*,\ + .tox/*, \ + venv* +max-complexity = 25 +max-line-length = 119 +ignore = + # line break occurred before a binary operator + W503, [tox] -envlist = flake8,towncrier-check,package,py{37,38,39,310,311,312} +envlist = towncrier-check,pre-commit,py{39,310,311,312,313,314} skip_missing_interpreters = true -[testenv] -deps = - pytest +[testenv:pre-commit] +package = wheel +wheel_build_env = .pkg +extras = dev +commands = pre-commit run --all-files --show-diff-on-failure --color=always + +[testenv:py{,39,310,311,312,313,314}] +package = wheel +wheel_build_env = .pkg +depends = + towncrier-check + pre-commit +extras = dev commands = pytest -vv -[testenv:flake8] +[testenv:towncrier{,-check}] skip_install = True deps = - flake8 -commands = flake8 {posargs} - -[testenv:towncrier-check] -deps = - {[testenv:towncrier]deps} + towncrier==24.8.0 commands = - python -m towncrier.check --compare-with origin/main - -[testenv:towncrier] -deps = - towncrier ~= 22.8 -commands = - towncrier {posargs} + check : python -m towncrier.check --compare-with origin/main + !check : python -m towncrier {posargs} [testenv:docs] change_dir = docs @@ -37,24 +47,3 @@ deps = -r{toxinidir}/docs/requirements_docs.txt commands = python -m sphinx -W -b html . _build/html - -[testenv:package] -deps = - check_manifest - twine - build -commands = - check-manifest -v - python -m build --outdir dist/ . - python -m twine check dist/* - -[testenv:publish] -skip_install = True -deps = - wheel - twine -passenv = - TWINE_USERNAME - TWINE_PASSWORD -commands = - python -m twine upload dist/* diff --git a/utils/test_class.tpy b/utils/test_class.tpy index e9c6fe503..e260ebdd0 100644 --- a/utils/test_class.tpy +++ b/utils/test_class.tpy @@ -2,4 +2,3 @@ from tests.utils import W3CTestCase class {classname}(W3CTestCase): vars().update(W3CTestCase.find_tests(__file__, '{group}')) - diff --git a/utils/w3c.py b/utils/w3c.py index d217ef9d3..78738b7b0 100644 --- a/utils/w3c.py +++ b/utils/w3c.py @@ -4,21 +4,18 @@ import sys import toga + # For the moment, this is Cocoa specific. from toga_cocoa.libs import SEL, NSObject, NSTimer, objc_method -CLEANSE = open( - os.path.join(os.path.dirname(__file__), 'cleanse.js') -).read() +CLEANSE = open(os.path.join(os.path.dirname(__file__), "cleanse.js")).read() -INSPECT = open( - os.path.join(os.path.dirname(__file__), 'inspect.js') -).read() +INSPECT = open(os.path.join(os.path.dirname(__file__), "inspect.js")).read() TEST_CLASS_TEMPLATE = open( - os.path.join(os.path.dirname(__file__), 'test_class.tpy') + os.path.join(os.path.dirname(__file__), "test_class.tpy") ).read() @@ -28,8 +25,8 @@ def run_(self, info) -> None: try: filename = os.path.abspath(next(self.filenames)) - self.webview.url = 'file://' + filename - print("Inspecting {}...".format(filename)) + self.webview.url = "file://" + filename + print(f"Inspecting {filename}...") cleaner = Cleaner.alloc().init() cleaner.loader = self @@ -39,11 +36,7 @@ def run_(self, info) -> None: cleaner.path = self.path NSTimer.scheduledTimerWithTimeInterval( - 0.1, - target=cleaner, - selector=SEL('run:'), - userInfo=None, - repeats=False + 0.1, target=cleaner, selector=SEL("run:"), userInfo=None, repeats=False ) except StopIteration: sys.exit(1) @@ -53,7 +46,7 @@ class Cleaner(NSObject): @objc_method def run_(self, info) -> None: try: - print("Cleaning {}...".format(self.filename)) + print(f"Cleaning {self.filename}...") self.webview.evaluate(CLEANSE) evaluator = Evaluator.alloc().init() @@ -66,9 +59,9 @@ def run_(self, info) -> None: NSTimer.scheduledTimerWithTimeInterval( 0.1, target=evaluator, - selector=SEL('run:'), + selector=SEL("run:"), userInfo=None, - repeats=False + repeats=False, ) except StopIteration: sys.exit(1) @@ -78,20 +71,20 @@ class Evaluator(NSObject): @objc_method def run_(self, info) -> None: try: - print("Inspecting {}...".format(self.filename)) + print(f"Inspecting {self.filename}...") result = self.webview.evaluate(INSPECT) # print(result) result = json.loads(result) example = os.path.splitext(os.path.basename(self.filename))[0] - test_dir = os.path.join(self.output, self.path.replace('-', '_')) + test_dir = os.path.join(self.output, self.path.replace("-", "_")) # If a document has "matches" or "assert" metadata, # it's a test document; otherwise, it's a reference. # We can ignore reference files. They often don't have # the same document structure as the base document, # so they're not helpful for a DOM comparison. - if 'matches' in result or 'assert' in result: + if "matches" in result or "assert" in result: newdirs = [] dirname = test_dir while not os.path.exists(dirname): @@ -100,61 +93,68 @@ def run_(self, info) -> None: newdirs.reverse() for newdir in newdirs: - print("Creating directory {}...".format(newdir)) + print(f"Creating directory {newdir}...") os.mkdir(newdir) - with open(os.path.join(newdir, '__init__.py'), 'w'): + with open(os.path.join(newdir, "__init__.py"), "w"): pass # Output the test case data # If the last part of the filename is of the pattern # -001 or -001a, then the group name drops that part. - parts = example.rsplit('-') + parts = example.rsplit("-") if parts[-1].isdigit() or parts[-1][:-1].isdigit(): parts.pop() - suffix = '-' + suffix = "-" else: - suffix = '' + suffix = "" - group = '-'.join(parts) - group_class = 'Test' + ''.join(p.title() for p in parts) - group_file = 'test_' + '_'.join(parts) + '.py' + group = "-".join(parts) + group_class = "Test" + "".join(p.title() for p in parts) + group_file = "test_" + "_".join(parts) + ".py" test_filename = os.path.join(test_dir, group_file) - print("Writing unittest file {}".format(test_filename)) - with open(os.path.join(test_filename), 'w') as f: - f.write(TEST_CLASS_TEMPLATE.format( - group=group + suffix, - classname=group_class, - )) - - test_datadir = os.path.join(test_dir, 'data') + print(f"Writing unittest file {test_filename}") + with open(os.path.join(test_filename), "w") as f: + f.write( + TEST_CLASS_TEMPLATE.format( + group=group + suffix, + classname=group_class, + ) + ) + + test_datadir = os.path.join(test_dir, "data") # Create data/ref directory try: os.mkdir(test_datadir) except FileExistsError: pass - test_datafile = os.path.join(test_datadir, example + '.json') + test_datafile = os.path.join(test_datadir, example + ".json") # If this is a new test, automatically add it to the not_implemented file. if not os.path.exists(test_datafile): - print('New test - adding to not_implemented list...') - with open(os.path.join(test_dir, 'not_implemented'), 'a') as nif: - nif.write('{}\n'.format(example.replace('-', '_'))) + print("New test - adding to not_implemented list...") + with open(os.path.join(test_dir, "not_implemented"), "a") as nif: + nif.write("{}\n".format(example.replace("-", "_"))) # Output JSON content - with open(test_datafile, 'w') as f: - print("Writing data file {}".format(test_datafile)) - f.write(json.dumps({ - 'test_case': result['test_case'], - 'assert': result.get('assert', None), - 'help': result['help'], - 'matches': result.get('matches', None), - }, indent=4)) + with open(test_datafile, "w") as f: + print(f"Writing data file {test_datafile}") + f.write( + json.dumps( + { + "test_case": result["test_case"], + "assert": result.get("assert", None), + "help": result["help"], + "matches": result.get("matches", None), + }, + indent=4, + ) + ) # Output reference rendering data - test_refdir = os.path.join(test_dir, 'ref') + test_refdir = os.path.join(test_dir, "ref") # Create data/ref directory try: os.mkdir(test_refdir) @@ -162,17 +162,17 @@ def run_(self, info) -> None: pass # Output JSON content - test_reffile = os.path.join(test_refdir, example + '.json') - with open(test_reffile, 'w') as f: - print("Writing reference file {}".format(test_reffile)) - f.write(json.dumps(result['reference'], indent=4)) + test_reffile = os.path.join(test_refdir, example + ".json") + with open(test_reffile, "w") as f: + print(f"Writing reference file {test_reffile}") + f.write(json.dumps(result["reference"], indent=4)) NSTimer.scheduledTimerWithTimeInterval( 0.05, target=self.loader, - selector=SEL('run:'), + selector=SEL("run:"), userInfo=None, - repeats=False + repeats=False, ) except StopIteration: sys.exit(1) @@ -182,7 +182,7 @@ class W3CTestExtractor(toga.App): def startup(self): # We want the web canvas to be 1024x768; # 22 pixels is the window header size. - self.main_window = toga.MainWindow(self.name, size=(1024, 768+22)) + self.main_window = toga.MainWindow(self.name, size=(1024, 768 + 22)) self.main_window.app = self webview = toga.WebView() @@ -190,9 +190,9 @@ def startup(self): self.main_window.content = webview filenames = [ - os.path.join(self.root, 'css', self.path, f) - for f in os.listdir(os.path.join(self.root, 'css', self.path)) - if f.endswith('.xht') or f.endswith('.htm') or f.endswith('.html') + os.path.join(self.root, "css", self.path, f) + for f in os.listdir(os.path.join(self.root, "css", self.path)) + if f.endswith(".xht") or f.endswith(".htm") or f.endswith(".html") ] loader = Loader.alloc().init() @@ -202,31 +202,31 @@ def startup(self): loader.output = self.output NSTimer.scheduledTimerWithTimeInterval( - 0.5, - target=loader, - selector=SEL('run:'), - userInfo=None, - repeats=False + 0.5, target=loader, selector=SEL("run:"), userInfo=None, repeats=False ) # Show the main window self.main_window.show() -if __name__ == '__main__': +if __name__ == "__main__": if len(sys.argv) != 4: print("Usage: w3c.py ") print() print("where: ") print(" : root of the web-platform-tests checkout") - print(" : subdirectory of the web-platform-tests css test set to convert") - print(" : base output directory. Use 'debug' to dump the tests discovered") + print( + " : subdirectory of the web-platform-tests css test set to convert" + ) + print( + " : base output directory. Use 'debug' to dump the tests discovered" + ) print() print(" e.g.: w3c.py ~/path/to/web-platform-tests CSS2/abspos ../tests") print() sys.exit(1) - app = W3CTestExtractor('W3CTestExtractor', 'org.pybee.w3c') + app = W3CTestExtractor("W3CTestExtractor", "org.pybee.w3c") app.root = sys.argv[1] app.path = sys.argv[2] app.output = sys.argv[3]