[
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\nindent_style = tab\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n\n[*.md]\ntrim_trailing_whitespace = false\n\n[*.{json,md,yml}]\nindent_size = 2\nindent_style = space\n"
  },
  {
    "path": ".gitattributes",
    "content": "* text=auto eol=lf\n"
  },
  {
    "path": ".github/workflows/test.yml",
    "content": "name: test\non:\n  push:\n\nconcurrency:\n  group: branch-node-${{ github.ref }}\n  cancel-in-progress: true\n\npermissions:\n  contents:\n    read\n\njobs:\n  test:\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        node: [18, 20, 'lts/*']\n        os: [ubuntu-latest]\n        include:\n        - os: macos-latest\n          node: 'lts/*'\n        - os: windows-latest\n          node: 'lts/*'\n    steps:\n      - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2\n      - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0\n        with:\n          node-version: ${{ matrix.node }}\n\n      - run: npm ci\n      - run: npm run build\n      - run: npm run test\n"
  },
  {
    "path": ".gitignore",
    "content": "node_modules\n*.log*\n*.result.css\n\n"
  },
  {
    "path": ".rollup.mjs",
    "content": "export default {\n\tinput: 'src/index.js',\n\toutput: [\n\t\t{ file: 'index.cjs', format: 'cjs', exports: 'default', sourcemap: false, strict: false },\n\t\t{ file: 'index.mjs', format: 'esm', sourcemap: false, strict: false }\n\t]\n}\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "# Changes to PostCSS Normalize\n\n### 13.0.1\n\n- Maintenance release after updating dependencies\n\n### 13.0.0\n\n- Pin versions of `@csstools/normalize.css` and `sanitize.css`\n\n### 12.0.0\n\n- Remove TypeScript types. This package is a dual published cjs and esm and it isn't worth it, all info is in `README.md`.\n- Set minimum node version to 18\n- Fix resolution of `@csstools/normalize.css` path when using ESM\n\n### 11.0.0\n\n- Cleanup build dependencies\n\n### 10.0.1 (September 15, 2021)\n\n- Added: `sanitize.css` to support 13+ (major).\n\nThis version removes support for `pages.css` yet is released as a patch version\nto resolve issues in **Create React App**. This is a betrayal of semantic\nversioning.\n\n### 10.0.0 (April 28, 2021)\n\n- Updated: PostCSS support to ^8 (major).\n- Updated: Node support to 12+ (major).\n\n### 9.0.0 (April 12, 2020)\n\n- Updated: `normalize.css` to support any version (major).\n- Updated: `sanitize.css` to support any version (major).\n- Updated: Node support to 10.0.0 (major).\n- Removed: Unused `browserslist` dependency.\n\n### 8.0.1 (June 10, 2019)\n\n- Fixed: Issue with Windows failing to resolve normalize.\n- Updated: `browserslist` to 4.6.2 (patch).\n- Updated: `postcss` to 7.0.17 (patch).\n\n### 8.0.0 (June 3, 2019)\n\n- Added: `sanitize.css` 10.0.0 (major).\n- Updated: `@csstools/normalize.css` to 10.1.0 (major).\n- Updated: `browserslist` to 4.5.6 (minor).\n- Updated: `postcss` to 7.0.16 (patch).\n- Updated: Node 8+ compatibility (major).\n\n### 7.0.1 (August 24, 2018)\n\n- Use postcss-browser-comments 2.0.0 (major, but a patch for this project).\n\nPostCSS Browser Comments was using an older version of PostCSS, requiring 2\nversions of PostCSS to use PostCSS Normalize. This update resolves that.\n\n### 7.0.0 (August 24, 2018)\n\n- Use normalize.css 9.0.1 (major).\n\n### 6.0.0 (June 16, 2018)\n\n- Use normalize.css 8 (major).\n- Include normalize.css comments.\n- Include normalize.css sourcemap.\n\n### 5.0.0 (June 7, 2018)\n\n- Update `browserslist` to 3.2.8 (major).\n- Update: `postcss` to 6.0.22 (patch).\n- Update: Node support from 4 to 6 (major).\n\n### 4.0.0 (June 21, 2017)\n\n- Require insertion point. Make old behavior an option.\n- Allow multiple insertion points.\n\n### 3.0.0 (May 26, 2017)\n\n- Use csstools/normalize.css 7.\n- Change the insertion point to `@import-normalize` to avoid confusion or\n  collision with standard import behavior.\n\n### 2.1.0 (May 26, 2017)\n\n- Support an insertion point via `@import postcss-normalize`.\n- Update tree creation to avoid AST issues with source.\n\n### 2.0.1 (May 21, 2017)\n\n- Update tree creation to avoid AST issues with other PostCSS plugins.\n\n### 2.0.0 (May 17, 2017)\n\n- Support PostCSS 6.\n- Support Node 4.\n\n### 1.0.0 (May 2, 2017)\n\n- Initial version.\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing to PostCSS Normalize\n\nYou want to help? You rock! Now, take a moment to be sure your contributions\nmake sense to everyone else.\n\n## Reporting Issues\n\nFound a problem? Want a new feature?\n\n- See if your issue or idea has [already been reported].\n- Provide a [reduced test case] or a [live example].\n\nRemember, a bug is a _demonstrable problem_ caused by _our_ code.\n\n## Submitting Pull Requests\n\nPull requests are the greatest contributions, so be sure they are focused in\nscope and avoid unrelated commits.\n\n1. To begin; [fork this project], clone your fork, and add our upstream.\n   ```bash\n   # Clone your fork of the repo into the current directory\n   git clone git@github.com:YOUR_USER/postcss-normalize.git\n\n   # Navigate to the newly cloned directory\n   cd postcss-normalize\n\n   # Assign the original repo to a remote called \"upstream\"\n   git remote add upstream git@github.com:csstools/postcss-normalize.git\n\n   # Install the tools necessary for testing\n   npm install\n   ```\n\n2. Create a branch for your feature or fix:\n   ```bash\n   # Move into a new branch for your feature\n   git checkout -b feature/thing\n   ```\n   ```bash\n   # Move into a new branch for your fix\n   git checkout -b fix/something\n   ```\n\n3. If your code follows our practices, then push your feature branch:\n   ```bash\n   # Test current code\n   npm test\n   ```\n   ```bash\n   # Push the branch for your new feature\n   git push origin feature/thing\n   ```\n   ```bash\n   # Or, push the branch for your update\n   git push origin update/something\n   ```\n\nThat’s it! Now [open a pull request] with a clear title and description.\n\n[already been reported]: issues\n[fork this project]:     fork\n[live example]:          https://codepen.io/pen\n[open a pull request]:   https://help.github.com/articles/using-pull-requests/\n[reduced test case]:     https://css-tricks.com/reduced-test-cases/\n"
  },
  {
    "path": "INSTALL.md",
    "content": "# Installing PostCSS Normalize\n\n[PostCSS Normalize] runs in all Node environments, with special instructions\nfor:\n\n| [Node](#node) | [PostCSS CLI](#postcss-cli) | [Webpack](#webpack) | [Create React App](#create-react-app) | [Gulp](#gulp) | [Grunt](#grunt) |\n| --- | --- | --- | --- | --- | --- |\n\n## Node\n\nAdd [PostCSS Normalize] to your project:\n\n```bash\nnpm install postcss-normalize --save-dev\n```\n\nUse [PostCSS Normalize] to process your CSS:\n\n```js\nconst postcssNormalize = require('postcss-normalize');\n\npostcssNormalize.process(YOUR_CSS /*, processOptions, pluginOptions */);\n```\n\nOr use it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss');\nconst postcssNormalize = require('postcss-normalize');\n\npostcss([\n  postcssNormalize(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */);\n```\n\n## PostCSS CLI\n\nAdd [PostCSS CLI] to your project:\n\n```bash\nnpm install postcss-cli --save-dev\n```\n\nUse [PostCSS Normalize] in your `postcss.config.js` configuration file:\n\n```js\nconst postcssNormalize = require('postcss-normalize');\n\nmodule.exports = {\n  plugins: [\n    postcssNormalize(/* pluginOptions */)\n  ]\n}\n```\n\n## Webpack\n\nAdd [PostCSS Loader] to your project:\n\n```bash\nnpm install postcss-loader --save-dev\n```\n\nUse [PostCSS Normalize] in your Webpack configuration:\n\n```js\nconst postcssNormalize = require('postcss-normalize');\n\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/,\n        use: [\n          'style-loader',\n          { loader: 'css-loader', options: { importLoaders: 1 } },\n          { loader: 'postcss-loader', options: {\n            ident: 'postcss',\n            plugins: () => [\n              postcssNormalize(/* pluginOptions */)\n            ]\n          } }\n        ]\n      }\n    ]\n  }\n}\n```\n\n## Create React App\n\nStarting from **v3.0.0**,\n[Create React App already includes postcss-normalize](https://facebook.github.io/create-react-app/docs/adding-css-reset).\nTo start using it, use the `@import-normalize` rule:\n\n```pcss\n// index.css\n\n@import-normalize;\n```\n\n---\n\nIf you're using an ***older version*** of Create React App, add\n[React App Rewired] and [React App Rewire PostCSS] to your project:\n\n```bash\nnpm install react-app-rewired react-app-rewire-postcss --save-dev\n```\n\nUse [React App Rewire PostCSS] and [PostCSS Normalize] in your\n`config-overrides.js` file:\n\n```js\nconst reactAppRewirePostcss = require('react-app-rewire-postcss');\nconst postcssNormalize = require('postcss-normalize');\n\nexport default config => reactAppRewirePostcss(config, {\n  plugins: () => [\n    postcssNormalize(/* pluginOptions */)\n  ]\n});\n```\n\n## Gulp\n\nAdd [Gulp PostCSS] to your project:\n\n```bash\nnpm install gulp-postcss --save-dev\n```\n\nUse [PostCSS Normalize] in your Gulpfile:\n\n```js\nconst postcss = require('gulp-postcss');\nconst postcssNormalize = require('postcss-normalize');\n\ngulp.task('css', () => gulp.src('./src/*.css').pipe(\n  postcss([\n    postcssNormalize(/* pluginOptions */)\n  ])\n).pipe(\n  gulp.dest('.')\n));\n```\n\n## Grunt\n\nAdd [Grunt PostCSS] to your project:\n\n```bash\nnpm install grunt-postcss --save-dev\n```\n\nUse [PostCSS Normalize] in your Gruntfile:\n\n```js\nconst postcssNormalize = require('postcss-normalize');\n\ngrunt.loadNpmTasks('grunt-postcss');\n\ngrunt.initConfig({\n  postcss: {\n    options: {\n      use: [\n       postcssNormalize(/* pluginOptions */)\n      ]\n    },\n    dist: {\n      src: '*.css'\n    }\n  }\n});\n```\n\n[Gulp PostCSS]: https://github.com/postcss/gulp-postcss\n[Grunt PostCSS]: https://github.com/nDmitry/grunt-postcss\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS CLI]: https://github.com/postcss/postcss-cli\n[PostCSS Loader]: https://github.com/postcss/postcss-loader\n[PostCSS Normalize]: https://github.com/csstools/postcss-normalize\n[React App Rewire PostCSS]: https://github.com/csstools/react-app-rewire-postcss\n[React App Rewired]: https://github.com/timarney/react-app-rewired\n"
  },
  {
    "path": "LICENSE.md",
    "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n   protected by copyright and related or neighboring rights (“Copyright and\n   Related Rights”). Copyright and Related Rights include, but are not limited\n   to, the following:\n   1. the right to reproduce, adapt, distribute, perform, display, communicate,\n      and translate a Work;\n   2. moral rights retained by the original author(s) and/or performer(s);\n   3. publicity and privacy rights pertaining to a person’s image or likeness\n      depicted in a Work;\n   4. rights protecting against unfair competition in regards to a Work,\n      subject to the limitations in paragraph 4(i), below;\n   5. rights protecting the extraction, dissemination, use and reuse of data in\n      a Work;\n   6. database rights (such as those arising under Directive 96/9/EC of the\n      European Parliament and of the Council of 11 March 1996 on the legal\n      protection of databases, and under any national implementation thereof,\n      including any amended or successor version of such directive); and\n   7. other similar, equivalent or corresponding rights throughout the world\n      based on applicable law or treaty, and any national implementations\n      thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n   applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n   unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n   and Related Rights and associated claims and causes of action, whether now\n   known or unknown (including existing as well as future claims and causes of\n   action), in the Work (i) in all territories worldwide, (ii) for the maximum\n   duration provided by applicable law or treaty (including future time\n   extensions), (iii) in any current or future medium and for any number of\n   copies, and (iv) for any purpose whatsoever, including without limitation\n   commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n   makes the Waiver for the benefit of each member of the public at large and\n   to the detriment of Affirmer’s heirs and successors, fully intending that\n   such Waiver shall not be subject to revocation, rescission, cancellation,\n   termination, or any other legal or equitable action to disrupt the quiet\n   enjoyment of the Work by the public as contemplated by Affirmer’s express\n   Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n   judged legally invalid or ineffective under applicable law, then the Waiver\n   shall be preserved to the maximum extent permitted taking into account\n   Affirmer’s express Statement of Purpose. In addition, to the extent the\n   Waiver is so judged Affirmer hereby grants to each affected person a\n   royalty-free, non transferable, non sublicensable, non exclusive,\n   irrevocable and unconditional license to exercise Affirmer’s Copyright and\n   Related Rights in the Work (i) in all territories worldwide, (ii) for the\n   maximum duration provided by applicable law or treaty (including future time\n   extensions), (iii) in any current or future medium and for any number of\n   copies, and (iv) for any purpose whatsoever, including without limitation\n   commercial, advertising or promotional purposes (the “License”). The License\n   shall be deemed effective as of the date CC0 was applied by Affirmer to the\n   Work. Should any part of the License for any reason be judged legally\n   invalid or ineffective under applicable law, such partial invalidity or\n   ineffectiveness shall not invalidate the remainder of the License, and in\n   such case Affirmer hereby affirms that he or she will not (i) exercise any\n   of his or her remaining Copyright and Related Rights in the Work or (ii)\n   assert any associated claims and causes of action with respect to the Work,\n   in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n   1. No trademark or patent rights held by Affirmer are waived, abandoned,\n      surrendered, licensed or otherwise affected by this document.\n   2. Affirmer offers the Work as-is and makes no representations or warranties\n      of any kind concerning the Work, express, implied, statutory or\n      otherwise, including without limitation warranties of title,\n      merchantability, fitness for a particular purpose, non infringement, or\n      the absence of latent or other defects, accuracy, or the present or\n      absence of errors, whether or not discoverable, all to the greatest\n      extent permissible under applicable law.\n   3. Affirmer disclaims responsibility for clearing rights of other persons\n      that may apply to the Work or any use thereof, including without\n      limitation any person’s Copyright and Related Rights in the Work.\n      Further, Affirmer disclaims responsibility for obtaining any necessary\n      consents, permissions or other rights required for any use of the Work.\n   4. Affirmer understands and acknowledges that Creative Commons is not a\n      party to this document and has no duty or obligation with respect to this\n      CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n"
  },
  {
    "path": "README.md",
    "content": "# PostCSS Normalize [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS\" width=\"90\" height=\"90\" align=\"right\">][postcss]\n\n[<img alt=\"npm version\" src=\"https://img.shields.io/npm/v/postcss-normalize.svg\" height=\"20\">][npm-url]\n[<img alt=\"build status\" src=\"https://img.shields.io/travis/csstools/postcss-normalize/main.svg\" height=\"20\">][cli-url]\n[<img alt=\"support chat\" src=\"https://img.shields.io/badge/support-chat-blue.svg\" height=\"20\">][git-url]\n\n[PostCSS Normalize] lets you use the parts of [normalize.css] or [sanitize.css]\nthat you need from your [browserslist].\n\n```css\n@import \"normalize.css\";\n```\n\n```css\n@import \"sanitize.css\";\n```\n\n**PostCSS Normalize** uses a non-opinionated version of [normalize.css], but\nan opinionated version may also be used.\n\n```css\n@import \"normalize.css/opinionated.css\";\n```\n\n### Examples\n\nHere is a sample of what **normalize.css** looks like when the **browserslist**\nis `ie >= 9`:\n\n```css\n/**\n * Add the correct display in IE 9-.\n */\n\naudio,\nvideo {\n  display: inline-block;\n}\n\n/**\n * Remove the border on images inside links in IE 10-.\n */\n\nimg {\n  border-style: none;\n}\n```\n\nAnd here is the same sample when the **browserslist** is `ie >= 10`:\n\n```css\n/**\n * Remove the border on images inside links in IE 10-.\n */\n\nimg {\n  border-style: none;\n}\n```\n\n## Usage\n\nAdd [PostCSS Normalize] to your project:\n\n```bash\nnpm install postcss-normalize --save-dev\n```\n\nAdd a [browserslist] entry in `package.json`:\n\n```json\n{\n  \"browserslist\": \"last 2 versions\"\n}\n```\n\nUse **PostCSS Normalize** to process your CSS:\n\n```js\nconst postcssNormalize = require('postcss-normalize')\n\npostcssNormalize.process(YOUR_CSS /*, processOptions, pluginOptions */)\n```\n\nOr use it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss')\nconst postcssNormalize = require('postcss-normalize')\n\npostcss([\n  postcssNormalize(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */)\n```\n\n**PostCSS Normalize** runs in all Node environments, with special instructions\nfor:\n\n| [Node](INSTALL.md#node) | [PostCSS CLI](INSTALL.md#postcss-cli) | [Webpack](INSTALL.md#webpack) | [Create React App](INSTALL.md#create-react-app) | [Gulp](INSTALL.md#gulp) | [Grunt](INSTALL.md#grunt) |\n| --- | --- | --- | --- | --- | --- |\n\n## PostCSS Import Usage\n\n**PostCSS Normalize** includes a `postcssImport` function to configure\n[PostCSS Import] and allow you to continue using the `@import` syntax.\n\n```js\nconst postcss = require('postcss')\nconst postcssImport = require('postcss-import')\nconst postcssNormalize = require('postcss-normalize')\n\npostcss([\n  postcssImport(\n    postcssNormalize(\n      /* pluginOptions (for PostCSS Normalize) */\n    ).postcssImport(\n      /* pluginOptions (for PostCSS Import) */\n    )\n  )\n]) // now you can use @import \"normalize.css\", etc. again\n```\n\nAlternatively, use `@import-normalize` or `@import-sanitize` to avoid conflicts\nwith `@import` transforms.\n\n```pcss\n@import-normalize;\n```\n\n```pcss\n@import-normalize \"normalize/opinionated.css\";\n```\n\n```pcss\n@import-sanitize;\n```\n\n## Options\n\n### allowDuplicates\n\nThe `allowDuplicates` option determines whether multiple, duplicate insertions\nof CSS libraries are allowed. By default, duplicate libraries are omitted.\n\n```js\npostcssNormalize({ allowDuplicates: true })\n```\n\n### forceImport\n\nThe `forceImport` option defines CSS libraries that will be inserted at the\nbeginning of the CSS file. Unless overriden by `allowDuplicates`, duplicate\nCSS libraries would still be omitted.\n\n```js\npostcssNormalize({ forceImport: true })\n```\n\nSpecific CSS libraries may be defined.\n\n```js\npostcssNormalize({\n  forceImport: 'sanitize.css'\n})\n```\n\n### browsers\n\nThe `browsers` option defines an override of the project’s **browserslist** for\n**PostCSS Normalize**. This option should be avoided in leui of a browserslist\nfile.\n\n```js\npostcssNormalize({ browsers: 'last 2 versions' })\n```\n\n## CSS Libraries\n\n**PostCSS Normalize** can include [normalize.css] or [sanitize.css] and\nconfigure either with the following combinations:\n\n```css\n@import \"normalize\"; /* also, @import \"normalize.css\" */\n@import \"normalize/opinionated\"; /* also, @import \"normalize.css/opinionated.css\", @import \"normalize.css/*\" */\n@import \"sanitize\"; /* also, @import \"sanitize.css\" */\n@import \"sanitize/assets\"; /* also, @import \"sanitize.css/assets.css\" */\n@import \"sanitize/forms\"; /* also, @import \"sanitize.css/forms.css\" */\n@import \"sanitize/reduce-motion\"; /* also, @import \"sanitize.css/reduce-motion.css\" */\n@import \"sanitize/system-ui\"; /* also, @import \"sanitize.css/system-ui.css\" */\n@import \"sanitize/typography\"; /* also, @import \"sanitize.css/typography.css\" */\n@import \"sanitize/ui-monospace\"; /* also, @import \"sanitize.css/ui-monospace.css\" */\n@import \"sanitize/*\"; /* also, @import \"sanitize.css/*\" (sanitize + all additions) */\n```\n\n[cli-img]: https://img.shields.io/travis/csstools/postcss-normalize/main.svg\n[cli-url]: https://travis-ci.org/csstools/postcss-normalize\n[git-img]: https://img.shields.io/badge/support-chat-blue.svg\n[git-url]: https://gitter.im/postcss/postcss\n[npm-img]: https://img.shields.io/npm/v/postcss-normalize.svg\n[npm-url]: https://www.npmjs.com/package/postcss-normalize\n\n[browserslist]: http://browserl.ist/\n[CSS Libraries]: #css-libraries\n[normalize.css]: https://github.com/csstools/normalize.css\n[Options]: #options\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS Import]: https://github.com/postcss/postcss-import\n[PostCSS Import Usage]: #postcss-import-usage\n[PostCSS Normalize]: https://github.com/csstools/postcss-normalize\n[sanitize.css]: https://github.com/csstools/sanitize.css\n"
  },
  {
    "path": "SECURITY.md",
    "content": "# Security Policy\n\n## Supported Versions\n\nOnly the latest version of plugins and packages will receive security patches.  \nPlease reach out if you need extended support for an older version.\n\n| Version | Supported          |\n| ------- | ------------------ |\n| 5.1.x   | :white_check_mark: |\n| 5.0.x   | :x:                |\n| 4.0.x   | :x:                |\n| < 4.0   | :x:                |\n\n## Security contact information\n\nTo report a security vulnerability, please use the\n[Tidelift security contact](https://tidelift.com/security).\nTidelift will coordinate the fix and disclosure.\n"
  },
  {
    "path": "index.cjs",
    "content": "var postcssBrowserComments = require('postcss-browser-comments');\nvar path = require('node:path');\nvar node_module = require('node:module');\nvar path$1 = require('path');\nvar fs = require('fs');\nvar postcss = require('postcss');\n\nvar _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;\nconst assign = (...objects) => Object.assign(...objects);\nconst create = (...objects) => assign(Object.create(null), ...objects);\n\nconst require$1 = node_module.createRequire((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.cjs', document.baseURI).href)));\n\n// get resolved filenames for normalize.css\nconst normalizeCSS = require$1.resolve('@csstools/normalize.css');\nconst normalizeDir = path.dirname(normalizeCSS);\nconst normalizeOpinionatedCSS = path.join(normalizeDir, 'opinionated.css');\n\n// get resolved filenames for sanitize.css\nconst sanitizeCSS = require$1.resolve('sanitize.css');\nconst sanitizeDir = path.dirname(sanitizeCSS);\nconst sanitizeAssetsCSS = path.join(sanitizeDir, 'assets.css');\nconst sanitizeFormsCSS = path.join(sanitizeDir, 'forms.css');\nconst sanitizeReduceMotionCSS = path.join(sanitizeDir, 'reduce-motion.css');\nconst sanitizeTypographyCSS = path.join(sanitizeDir, 'typography.css');\nconst sanitizeSystemUiCSS = path.join(sanitizeDir, 'system-ui.css');\nconst sanitizeUiMonospace = path.join(sanitizeDir, 'ui-monospace.css');\n\n// export a hashmap of css library filenames\nconst parsableFilenames = create({\n\t[normalizeCSS]: true,\n\t[normalizeOpinionatedCSS]: true,\n\t[sanitizeCSS]: true,\n\t[sanitizeAssetsCSS]: true,\n\t[sanitizeFormsCSS]: true,\n\t[sanitizeReduceMotionCSS]: true,\n\t[sanitizeTypographyCSS]: true,\n\t[sanitizeSystemUiCSS]: true,\n\t[sanitizeUiMonospace]: true,\n});\n\n// export a hashmap of css library filenames by id\nconst resolvedFilenamesById = create({\n\t'normalize': [normalizeCSS],\n\t'normalize/opinionated': [normalizeOpinionatedCSS],\n\t'normalize/*': [normalizeOpinionatedCSS],\n\t'sanitize': [sanitizeCSS],\n\t'sanitize/assets': [sanitizeAssetsCSS],\n\t'sanitize/forms': [sanitizeCSS, sanitizeFormsCSS],\n\t'sanitize/page': [sanitizeAssetsCSS], // deprecated; remaining for v10.0.0 compatibility\n\t'sanitize/reduce-motion': [sanitizeCSS, sanitizeReduceMotionCSS],\n\t'sanitize/system-ui': [sanitizeCSS, sanitizeSystemUiCSS],\n\t'sanitize/typography': [sanitizeCSS, sanitizeTypographyCSS],\n\t'sanitize/ui-monospace': [sanitizeCSS, sanitizeUiMonospace],\n\t'sanitize/*': [sanitizeCSS, sanitizeFormsCSS],\n});\n\nconst cache$1 = create();\n\nasync function readFile (filename) {\n\tfilename = path$1.resolve(filename);\n\n\tcache$1[filename] = cache$1[filename] || create();\n\n\treturn new Promise(\n\t\t(resolve, reject) => fs.stat(\n\t\t\tfilename,\n\t\t\t(statsError, { mtime }) => statsError\n\t\t\t\t? reject(statsError)\n\t\t\t: mtime === cache$1[filename].mtime\n\t\t\t\t? resolve(cache$1[filename].data)\n\t\t\t: fs.readFile(\n\t\t\t\tfilename,\n\t\t\t\t'utf8',\n\t\t\t\t(readFileError, data) => readFileError\n\t\t\t\t\t? reject(readFileError)\n\t\t\t\t: resolve(\n\t\t\t\t\t(cache$1[filename] = { data, mtime }).data\n\t\t\t\t)\n\t\t\t)\n\t\t)\n\t)\n}\n\nconst cache = create(null);\n\nvar parse = (filename, transformer) => readFile(filename).then(\n\t// cache the parsed css root\n\tcss => (cache[css] = cache[css] || postcss.parse(css, { from: filename }))\n).then(\n\t// clone the cached root\n\troot => root.clone()\n).then(\n\t// transform the cloned root\n\tclone => Promise.resolve(\n\t\ttransformer(clone)\n\t).then(\n\t\t// resolve the cloned root\n\t\t() => clone\n\t)\n);\n\nvar postcssImportNormalize = commentsTransformer => opts => {\n\topts = create(opts);\n\n\t// return an postcss-import configuration\n\treturn create({\n\t\tload (filename, importOptions) {\n\t\t\treturn filename in parsableFilenames\n\t\t\t\t// parse the file (the file and css are conservatively cached)\n\t\t\t\t? parse(filename, commentsTransformer).then(\n\t\t\t\t\troot => root.toResult({ to: filename, map: true }).css\n\t\t\t\t)\n\t\t\t: typeof opts.load === 'function'\n\t\t\t\t// otherwise, use the override loader\n\t\t\t\t? opts.load.call(null, filename, importOptions)\n\t\t\t// otherwise, return the (conservatively cached) contents of the file\n\t\t\t: readFile(filename)\n\t\t},\n\t\tresolve (id, basedir, importOptions) {\n\t\t\t// get the css id by removing css extensions\n\t\t\tconst cssId = id.replace(cssExtRegExp$1, '');\n\n\t\t\treturn cssId in resolvedFilenamesById\n\t\t\t\t// return the known resolved path for the css id\n\t\t\t\t? resolvedFilenamesById[cssId]\n\t\t\t: typeof opts.resolve === 'function'\n\t\t\t\t// otherwise, use the override resolver\n\t\t\t\t? opts.resolve.call(null, id, basedir, importOptions)\n\t\t\t// otherwise, return the id to be resolved by postcss-import\n\t\t\t: id\n\t\t}\n\t})\n};\n\nconst cssExtRegExp$1 = /\\.css\\b/g;\n\nconst postcssPlugin = (commentsTransformer, opts) => root => {\n\tconst promises = [];\n\tconst insertedFilenames = {};\n\n\t// use @import insertion point\n\troot.walkAtRules(\n\t\timportRegExp,\n\t\tatrule => {\n\t\t\t// get name as a fallback value for the library (e.g. @import-normalize is like @import \"normalize.css\")\n\t\t\tconst name = atrule.name.match(importRegExp)[1];\n\n\t\t\t// get url from \"library\", 'library', url(\"library\"), url('library'), or the fallback value\n\t\t\tconst url = (atrule.params.match(paramsRegExp) || []).slice(1).find(part => part) || name;\n\n\t\t\tif (url) {\n\t\t\t\t// get the css id by removing css extensions\n\t\t\t\tconst cssId = url.replace(cssExtRegExp, '');\n\n\t\t\t\tif (cssId in resolvedFilenamesById) {\n\t\t\t\t\t// promise the library import is replaced with its contents\n\t\t\t\t\tpromises.push(\n\t\t\t\t\t\tPromise.all(\n\t\t\t\t\t\t\tresolvedFilenamesById[cssId].filter(\n\t\t\t\t\t\t\t\t// ignore filenames that have already been inserted\n\t\t\t\t\t\t\t\tfilename => insertedFilenames[filename] = opts.allowDuplicates || !(filename in insertedFilenames)\n\t\t\t\t\t\t\t).map(\n\t\t\t\t\t\t\t\t// parse the file (the file and css are conservatively cached)\n\t\t\t\t\t\t\t\tfilename => parse(filename, commentsTransformer)\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t).then(roots => {\n\t\t\t\t\t\t\tif (roots.length) {\n\t\t\t\t\t\t\t\t// combine all the library nodes returned by the parsed files\n\t\t\t\t\t\t\t\tconst nodes = roots.reduce(\n\t\t\t\t\t\t\t\t\t(all, root) => all.concat(root.nodes),\n\t\t\t\t\t\t\t\t\t[]\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t// replace the import with all the library nodes\n\t\t\t\t\t\t\t\tatrule.replaceWith(...nodes);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t})\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t);\n\n\treturn Promise.all([].concat(\n\t\t// promise the library imports are replaced with their contents\n\t\tpromises,\n\t\t// promise certain libraries are prepended\n\t\tPromise.all(\n\t\t\t[].concat(\n\t\t\t\topts.forceImport || []\n\t\t\t).reduce(\n\t\t\t\t// filter the id to be a known id or boolean true\n\t\t\t\t(all, id) => {\n\t\t\t\t\tif (id === true) {\n\t\t\t\t\t\tall.push(...resolvedFilenamesById.normalize);\n\t\t\t\t\t} else if (typeof id === 'string') {\n\t\t\t\t\t\tconst cssId = id.replace(cssExtRegExp, '');\n\n\t\t\t\t\t\tif (cssId in resolvedFilenamesById) {\n\t\t\t\t\t\t\tall.push(...resolvedFilenamesById[cssId]);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn all\n\t\t\t\t},\n\t\t\t\t[]\n\t\t\t).filter(\n\t\t\t\t// ignore filenames that have already been inserted\n\t\t\t\tfilename => insertedFilenames[filename] = opts.allowDuplicates || !(filename in insertedFilenames)\n\t\t\t).map(\n\t\t\t\t// parse the file (the file and css are conservatively cached)\n\t\t\t\tfilename => parse(filename, commentsTransformer)\n\t\t\t)\n\t\t).then(roots => {\n\t\t\tif (roots.length) {\n\t\t\t\t// combine all the library nodes returned by the parsed files\n\t\t\t\tconst nodes = roots.reduce(\n\t\t\t\t\t(all, root) => all.concat(root.nodes),\n\t\t\t\t\t[]\n\t\t\t\t);\n\n\t\t\t\t// prepend the stylesheet with all the library nodes\n\t\t\t\troot.prepend(...nodes);\n\t\t\t}\n\t\t})\n\t))\n};\n\nconst cssExtRegExp = /\\.css\\b/g;\nconst importRegExp = /^import(?:-(normalize|sanitize))?$/;\nconst paramsRegExp = /^\\s*(?:url\\((?:\"(.+)\"|'(.+)')\\)|\"(.+)\"|'(.+)')[\\W\\w]*$/;\n\nconst plugin = opts => {\n\topts = create(opts);\n\n\tconst commentsTransformer = postcssBrowserComments(opts).Once;\n\tconst normalizeTransformer = postcssPlugin(commentsTransformer, opts);\n\tconst postcssImportConfig = postcssImportNormalize(commentsTransformer);\n\n\treturn {\n\t\tpostcssPlugin: 'postcss-normalize',\n\t\tOnce(root) {\n\t\t\treturn normalizeTransformer(root)\n\t\t},\n\t\tpostcssImport: postcssImportConfig\n\t}\n};\n\nplugin.postcss = true;\n\nmodule.exports = plugin;\n"
  },
  {
    "path": "index.mjs",
    "content": "import postcssBrowserComments from 'postcss-browser-comments';\nimport path from 'node:path';\nimport { createRequire } from 'node:module';\nimport path$1 from 'path';\nimport fs from 'fs';\nimport postcss from 'postcss';\n\nconst assign = (...objects) => Object.assign(...objects);\nconst create = (...objects) => assign(Object.create(null), ...objects);\n\nconst require$1 = createRequire(import.meta.url);\n\n// get resolved filenames for normalize.css\nconst normalizeCSS = require$1.resolve('@csstools/normalize.css');\nconst normalizeDir = path.dirname(normalizeCSS);\nconst normalizeOpinionatedCSS = path.join(normalizeDir, 'opinionated.css');\n\n// get resolved filenames for sanitize.css\nconst sanitizeCSS = require$1.resolve('sanitize.css');\nconst sanitizeDir = path.dirname(sanitizeCSS);\nconst sanitizeAssetsCSS = path.join(sanitizeDir, 'assets.css');\nconst sanitizeFormsCSS = path.join(sanitizeDir, 'forms.css');\nconst sanitizeReduceMotionCSS = path.join(sanitizeDir, 'reduce-motion.css');\nconst sanitizeTypographyCSS = path.join(sanitizeDir, 'typography.css');\nconst sanitizeSystemUiCSS = path.join(sanitizeDir, 'system-ui.css');\nconst sanitizeUiMonospace = path.join(sanitizeDir, 'ui-monospace.css');\n\n// export a hashmap of css library filenames\nconst parsableFilenames = create({\n\t[normalizeCSS]: true,\n\t[normalizeOpinionatedCSS]: true,\n\t[sanitizeCSS]: true,\n\t[sanitizeAssetsCSS]: true,\n\t[sanitizeFormsCSS]: true,\n\t[sanitizeReduceMotionCSS]: true,\n\t[sanitizeTypographyCSS]: true,\n\t[sanitizeSystemUiCSS]: true,\n\t[sanitizeUiMonospace]: true,\n});\n\n// export a hashmap of css library filenames by id\nconst resolvedFilenamesById = create({\n\t'normalize': [normalizeCSS],\n\t'normalize/opinionated': [normalizeOpinionatedCSS],\n\t'normalize/*': [normalizeOpinionatedCSS],\n\t'sanitize': [sanitizeCSS],\n\t'sanitize/assets': [sanitizeAssetsCSS],\n\t'sanitize/forms': [sanitizeCSS, sanitizeFormsCSS],\n\t'sanitize/page': [sanitizeAssetsCSS], // deprecated; remaining for v10.0.0 compatibility\n\t'sanitize/reduce-motion': [sanitizeCSS, sanitizeReduceMotionCSS],\n\t'sanitize/system-ui': [sanitizeCSS, sanitizeSystemUiCSS],\n\t'sanitize/typography': [sanitizeCSS, sanitizeTypographyCSS],\n\t'sanitize/ui-monospace': [sanitizeCSS, sanitizeUiMonospace],\n\t'sanitize/*': [sanitizeCSS, sanitizeFormsCSS],\n});\n\nconst cache$1 = create();\n\nasync function readFile (filename) {\n\tfilename = path$1.resolve(filename);\n\n\tcache$1[filename] = cache$1[filename] || create();\n\n\treturn new Promise(\n\t\t(resolve, reject) => fs.stat(\n\t\t\tfilename,\n\t\t\t(statsError, { mtime }) => statsError\n\t\t\t\t? reject(statsError)\n\t\t\t: mtime === cache$1[filename].mtime\n\t\t\t\t? resolve(cache$1[filename].data)\n\t\t\t: fs.readFile(\n\t\t\t\tfilename,\n\t\t\t\t'utf8',\n\t\t\t\t(readFileError, data) => readFileError\n\t\t\t\t\t? reject(readFileError)\n\t\t\t\t: resolve(\n\t\t\t\t\t(cache$1[filename] = { data, mtime }).data\n\t\t\t\t)\n\t\t\t)\n\t\t)\n\t)\n}\n\nconst cache = create(null);\n\nvar parse = (filename, transformer) => readFile(filename).then(\n\t// cache the parsed css root\n\tcss => (cache[css] = cache[css] || postcss.parse(css, { from: filename }))\n).then(\n\t// clone the cached root\n\troot => root.clone()\n).then(\n\t// transform the cloned root\n\tclone => Promise.resolve(\n\t\ttransformer(clone)\n\t).then(\n\t\t// resolve the cloned root\n\t\t() => clone\n\t)\n);\n\nvar postcssImportNormalize = commentsTransformer => opts => {\n\topts = create(opts);\n\n\t// return an postcss-import configuration\n\treturn create({\n\t\tload (filename, importOptions) {\n\t\t\treturn filename in parsableFilenames\n\t\t\t\t// parse the file (the file and css are conservatively cached)\n\t\t\t\t? parse(filename, commentsTransformer).then(\n\t\t\t\t\troot => root.toResult({ to: filename, map: true }).css\n\t\t\t\t)\n\t\t\t: typeof opts.load === 'function'\n\t\t\t\t// otherwise, use the override loader\n\t\t\t\t? opts.load.call(null, filename, importOptions)\n\t\t\t// otherwise, return the (conservatively cached) contents of the file\n\t\t\t: readFile(filename)\n\t\t},\n\t\tresolve (id, basedir, importOptions) {\n\t\t\t// get the css id by removing css extensions\n\t\t\tconst cssId = id.replace(cssExtRegExp$1, '');\n\n\t\t\treturn cssId in resolvedFilenamesById\n\t\t\t\t// return the known resolved path for the css id\n\t\t\t\t? resolvedFilenamesById[cssId]\n\t\t\t: typeof opts.resolve === 'function'\n\t\t\t\t// otherwise, use the override resolver\n\t\t\t\t? opts.resolve.call(null, id, basedir, importOptions)\n\t\t\t// otherwise, return the id to be resolved by postcss-import\n\t\t\t: id\n\t\t}\n\t})\n};\n\nconst cssExtRegExp$1 = /\\.css\\b/g;\n\nconst postcssPlugin = (commentsTransformer, opts) => root => {\n\tconst promises = [];\n\tconst insertedFilenames = {};\n\n\t// use @import insertion point\n\troot.walkAtRules(\n\t\timportRegExp,\n\t\tatrule => {\n\t\t\t// get name as a fallback value for the library (e.g. @import-normalize is like @import \"normalize.css\")\n\t\t\tconst name = atrule.name.match(importRegExp)[1];\n\n\t\t\t// get url from \"library\", 'library', url(\"library\"), url('library'), or the fallback value\n\t\t\tconst url = (atrule.params.match(paramsRegExp) || []).slice(1).find(part => part) || name;\n\n\t\t\tif (url) {\n\t\t\t\t// get the css id by removing css extensions\n\t\t\t\tconst cssId = url.replace(cssExtRegExp, '');\n\n\t\t\t\tif (cssId in resolvedFilenamesById) {\n\t\t\t\t\t// promise the library import is replaced with its contents\n\t\t\t\t\tpromises.push(\n\t\t\t\t\t\tPromise.all(\n\t\t\t\t\t\t\tresolvedFilenamesById[cssId].filter(\n\t\t\t\t\t\t\t\t// ignore filenames that have already been inserted\n\t\t\t\t\t\t\t\tfilename => insertedFilenames[filename] = opts.allowDuplicates || !(filename in insertedFilenames)\n\t\t\t\t\t\t\t).map(\n\t\t\t\t\t\t\t\t// parse the file (the file and css are conservatively cached)\n\t\t\t\t\t\t\t\tfilename => parse(filename, commentsTransformer)\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t).then(roots => {\n\t\t\t\t\t\t\tif (roots.length) {\n\t\t\t\t\t\t\t\t// combine all the library nodes returned by the parsed files\n\t\t\t\t\t\t\t\tconst nodes = roots.reduce(\n\t\t\t\t\t\t\t\t\t(all, root) => all.concat(root.nodes),\n\t\t\t\t\t\t\t\t\t[]\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t// replace the import with all the library nodes\n\t\t\t\t\t\t\t\tatrule.replaceWith(...nodes);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t})\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t);\n\n\treturn Promise.all([].concat(\n\t\t// promise the library imports are replaced with their contents\n\t\tpromises,\n\t\t// promise certain libraries are prepended\n\t\tPromise.all(\n\t\t\t[].concat(\n\t\t\t\topts.forceImport || []\n\t\t\t).reduce(\n\t\t\t\t// filter the id to be a known id or boolean true\n\t\t\t\t(all, id) => {\n\t\t\t\t\tif (id === true) {\n\t\t\t\t\t\tall.push(...resolvedFilenamesById.normalize);\n\t\t\t\t\t} else if (typeof id === 'string') {\n\t\t\t\t\t\tconst cssId = id.replace(cssExtRegExp, '');\n\n\t\t\t\t\t\tif (cssId in resolvedFilenamesById) {\n\t\t\t\t\t\t\tall.push(...resolvedFilenamesById[cssId]);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn all\n\t\t\t\t},\n\t\t\t\t[]\n\t\t\t).filter(\n\t\t\t\t// ignore filenames that have already been inserted\n\t\t\t\tfilename => insertedFilenames[filename] = opts.allowDuplicates || !(filename in insertedFilenames)\n\t\t\t).map(\n\t\t\t\t// parse the file (the file and css are conservatively cached)\n\t\t\t\tfilename => parse(filename, commentsTransformer)\n\t\t\t)\n\t\t).then(roots => {\n\t\t\tif (roots.length) {\n\t\t\t\t// combine all the library nodes returned by the parsed files\n\t\t\t\tconst nodes = roots.reduce(\n\t\t\t\t\t(all, root) => all.concat(root.nodes),\n\t\t\t\t\t[]\n\t\t\t\t);\n\n\t\t\t\t// prepend the stylesheet with all the library nodes\n\t\t\t\troot.prepend(...nodes);\n\t\t\t}\n\t\t})\n\t))\n};\n\nconst cssExtRegExp = /\\.css\\b/g;\nconst importRegExp = /^import(?:-(normalize|sanitize))?$/;\nconst paramsRegExp = /^\\s*(?:url\\((?:\"(.+)\"|'(.+)')\\)|\"(.+)\"|'(.+)')[\\W\\w]*$/;\n\nconst plugin = opts => {\n\topts = create(opts);\n\n\tconst commentsTransformer = postcssBrowserComments(opts).Once;\n\tconst normalizeTransformer = postcssPlugin(commentsTransformer, opts);\n\tconst postcssImportConfig = postcssImportNormalize(commentsTransformer);\n\n\treturn {\n\t\tpostcssPlugin: 'postcss-normalize',\n\t\tOnce(root) {\n\t\t\treturn normalizeTransformer(root)\n\t\t},\n\t\tpostcssImport: postcssImportConfig\n\t}\n};\n\nplugin.postcss = true;\n\nexport { plugin as default };\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"postcss-normalize\",\n  \"version\": \"13.0.1\",\n  \"description\": \"Use the parts of normalize.css or sanitize.css you need from your browserslist\",\n  \"author\": \"Jonathan Neal <jonathantneal@hotmail.com>\",\n  \"license\": \"CC0-1.0\",\n  \"repository\": \"csstools/postcss-normalize\",\n  \"homepage\": \"https://github.com/csstools/postcss-normalize#readme\",\n  \"bugs\": \"https://github.com/csstools/postcss-normalize/issues\",\n  \"main\": \"./index.cjs\",\n  \"module\": \"./index.mjs\",\n  \"exports\": {\n    \"require\": \"./index.cjs\",\n    \"import\": \"./index.mjs\",\n    \"default\": \"./index.mjs\"\n  },\n  \"files\": [\n    \"index.cjs\",\n    \"index.mjs\"\n  ],\n  \"scripts\": {\n    \"prepublishOnly\": \"npm test\",\n    \"build\": \"rollup --config .rollup.mjs --silent\",\n    \"test\": \"npm run build && node --test\",\n    \"test:rewrite-expects\": \"REWRITE_EXPECTS=true node --test\"\n  },\n  \"engines\": {\n    \"node\": \">= 18\"\n  },\n  \"peerDependencies\": {\n    \"browserslist\": \">= 4\",\n    \"postcss\": \">= 8\"\n  },\n  \"dependencies\": {\n    \"@csstools/normalize.css\": \"12.1.1\",\n    \"postcss-browser-comments\": \"^6.0.1\",\n    \"sanitize.css\": \"13.0.0\"\n  },\n  \"devDependencies\": {\n    \"@csstools/postcss-tape\": \"^5.0.0\",\n    \"browserslist\": \"^4.16.5\",\n    \"postcss\": \"^8.4.31\",\n    \"postcss-import\": \"^16.0.0\",\n    \"rollup\": \"^4.21.2\"\n  },\n  \"babel\": {\n    \"plugins\": [\n      \"@babel/plugin-syntax-import-meta\"\n    ],\n    \"presets\": [\n      [\n        \"@babel/env\",\n        {\n          \"targets\": \"maintained node versions\"\n        }\n      ]\n    ]\n  },\n  \"keywords\": [\n    \"postcss\",\n    \"css\",\n    \"postcss-plugin\",\n    \"normalizes\",\n    \"browsers\",\n    \"fixes\"\n  ]\n}\n"
  },
  {
    "path": "src/index.js",
    "content": "import { create } from './lib/util'\nimport postcssBrowserComments from 'postcss-browser-comments'\nimport postcssImportNormalize from './lib/postcssImportNormalize'\nimport postcssNormalize from './lib/postcssNormalize'\n\nconst plugin = opts => {\n\topts = create(opts)\n\n\tconst commentsTransformer = postcssBrowserComments(opts).Once\n\tconst normalizeTransformer = postcssNormalize(commentsTransformer, opts)\n\tconst postcssImportConfig = postcssImportNormalize(commentsTransformer, opts)\n\n\treturn {\n\t\tpostcssPlugin: 'postcss-normalize',\n\t\tOnce(root) {\n\t\t\treturn normalizeTransformer(root)\n\t\t},\n\t\tpostcssImport: postcssImportConfig\n\t}\n}\n\nplugin.postcss = true\n\nexport default plugin\n"
  },
  {
    "path": "src/lib/cssMap.js",
    "content": "import { create } from './util'\nimport path from 'node:path'\n\n// get esm-compatible script metadata\nimport { createRequire } from 'node:module'\nconst require = createRequire(import.meta.url)\n\n// get resolved filenames for normalize.css\nconst normalizeCSS = require.resolve('@csstools/normalize.css')\nconst normalizeDir = path.dirname(normalizeCSS)\nconst normalizeOpinionatedCSS = path.join(normalizeDir, 'opinionated.css')\n\n// get resolved filenames for sanitize.css\nconst sanitizeCSS = require.resolve('sanitize.css')\nconst sanitizeDir = path.dirname(sanitizeCSS)\nconst sanitizeAssetsCSS = path.join(sanitizeDir, 'assets.css')\nconst sanitizeFormsCSS = path.join(sanitizeDir, 'forms.css')\nconst sanitizeReduceMotionCSS = path.join(sanitizeDir, 'reduce-motion.css')\nconst sanitizeTypographyCSS = path.join(sanitizeDir, 'typography.css')\nconst sanitizeSystemUiCSS = path.join(sanitizeDir, 'system-ui.css')\nconst sanitizeUiMonospace = path.join(sanitizeDir, 'ui-monospace.css')\n\n// export a hashmap of css library filenames\nexport const parsableFilenames = create({\n\t[normalizeCSS]: true,\n\t[normalizeOpinionatedCSS]: true,\n\t[sanitizeCSS]: true,\n\t[sanitizeAssetsCSS]: true,\n\t[sanitizeFormsCSS]: true,\n\t[sanitizeReduceMotionCSS]: true,\n\t[sanitizeTypographyCSS]: true,\n\t[sanitizeSystemUiCSS]: true,\n\t[sanitizeUiMonospace]: true,\n})\n\n// export a hashmap of css library filenames by id\nexport const resolvedFilenamesById = create({\n\t'normalize': [normalizeCSS],\n\t'normalize/opinionated': [normalizeOpinionatedCSS],\n\t'normalize/*': [normalizeOpinionatedCSS],\n\t'sanitize': [sanitizeCSS],\n\t'sanitize/assets': [sanitizeAssetsCSS],\n\t'sanitize/forms': [sanitizeCSS, sanitizeFormsCSS],\n\t'sanitize/page': [sanitizeAssetsCSS], // deprecated; remaining for v10.0.0 compatibility\n\t'sanitize/reduce-motion': [sanitizeCSS, sanitizeReduceMotionCSS],\n\t'sanitize/system-ui': [sanitizeCSS, sanitizeSystemUiCSS],\n\t'sanitize/typography': [sanitizeCSS, sanitizeTypographyCSS],\n\t'sanitize/ui-monospace': [sanitizeCSS, sanitizeUiMonospace],\n\t'sanitize/*': [sanitizeCSS, sanitizeFormsCSS],\n})\n"
  },
  {
    "path": "src/lib/parse.js",
    "content": "import { create } from './util'\nimport readFile from './readFile'\nimport postcss from 'postcss'\n\nconst cache = create(null)\n\nexport default (filename, transformer) => readFile(filename).then(\n\t// cache the parsed css root\n\tcss => (cache[css] = cache[css] || postcss.parse(css, { from: filename }))\n).then(\n\t// clone the cached root\n\troot => root.clone()\n).then(\n\t// transform the cloned root\n\tclone => Promise.resolve(\n\t\ttransformer(clone)\n\t).then(\n\t\t// resolve the cloned root\n\t\t() => clone\n\t)\n)\n"
  },
  {
    "path": "src/lib/postcssImportNormalize.js",
    "content": "import { create } from './util'\nimport { parsableFilenames, resolvedFilenamesById } from './cssMap'\nimport parse from './parse'\nimport readFile from './readFile'\n\nexport default commentsTransformer => opts => {\n\topts = create(opts)\n\n\t// return an postcss-import configuration\n\treturn create({\n\t\tload (filename, importOptions) {\n\t\t\treturn filename in parsableFilenames\n\t\t\t\t// parse the file (the file and css are conservatively cached)\n\t\t\t\t? parse(filename, commentsTransformer).then(\n\t\t\t\t\troot => root.toResult({ to: filename, map: true }).css\n\t\t\t\t)\n\t\t\t: typeof opts.load === 'function'\n\t\t\t\t// otherwise, use the override loader\n\t\t\t\t? opts.load.call(null, filename, importOptions)\n\t\t\t// otherwise, return the (conservatively cached) contents of the file\n\t\t\t: readFile(filename)\n\t\t},\n\t\tresolve (id, basedir, importOptions) {\n\t\t\t// get the css id by removing css extensions\n\t\t\tconst cssId = id.replace(cssExtRegExp, '')\n\n\t\t\treturn cssId in resolvedFilenamesById\n\t\t\t\t// return the known resolved path for the css id\n\t\t\t\t? resolvedFilenamesById[cssId]\n\t\t\t: typeof opts.resolve === 'function'\n\t\t\t\t// otherwise, use the override resolver\n\t\t\t\t? opts.resolve.call(null, id, basedir, importOptions)\n\t\t\t// otherwise, return the id to be resolved by postcss-import\n\t\t\t: id\n\t\t}\n\t})\n}\n\nconst cssExtRegExp = /\\.css\\b/g\n"
  },
  {
    "path": "src/lib/postcssNormalize.js",
    "content": "import { resolvedFilenamesById } from './cssMap'\nimport parse from './parse'\n\nconst postcssPlugin = (commentsTransformer, opts) => root => {\n\tconst promises = []\n\tconst insertedFilenames = {}\n\n\t// use @import insertion point\n\troot.walkAtRules(\n\t\timportRegExp,\n\t\tatrule => {\n\t\t\t// get name as a fallback value for the library (e.g. @import-normalize is like @import \"normalize.css\")\n\t\t\tconst name = atrule.name.match(importRegExp)[1]\n\n\t\t\t// get url from \"library\", 'library', url(\"library\"), url('library'), or the fallback value\n\t\t\tconst url = (atrule.params.match(paramsRegExp) || []).slice(1).find(part => part) || name\n\n\t\t\tif (url) {\n\t\t\t\t// get the css id by removing css extensions\n\t\t\t\tconst cssId = url.replace(cssExtRegExp, '')\n\n\t\t\t\tif (cssId in resolvedFilenamesById) {\n\t\t\t\t\t// promise the library import is replaced with its contents\n\t\t\t\t\tpromises.push(\n\t\t\t\t\t\tPromise.all(\n\t\t\t\t\t\t\tresolvedFilenamesById[cssId].filter(\n\t\t\t\t\t\t\t\t// ignore filenames that have already been inserted\n\t\t\t\t\t\t\t\tfilename => insertedFilenames[filename] = opts.allowDuplicates || !(filename in insertedFilenames)\n\t\t\t\t\t\t\t).map(\n\t\t\t\t\t\t\t\t// parse the file (the file and css are conservatively cached)\n\t\t\t\t\t\t\t\tfilename => parse(filename, commentsTransformer)\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t).then(roots => {\n\t\t\t\t\t\t\tif (roots.length) {\n\t\t\t\t\t\t\t\t// combine all the library nodes returned by the parsed files\n\t\t\t\t\t\t\t\tconst nodes = roots.reduce(\n\t\t\t\t\t\t\t\t\t(all, root) => all.concat(root.nodes),\n\t\t\t\t\t\t\t\t\t[]\n\t\t\t\t\t\t\t\t)\n\n\t\t\t\t\t\t\t\t// replace the import with all the library nodes\n\t\t\t\t\t\t\t\tatrule.replaceWith(...nodes)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t})\n\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t)\n\n\treturn Promise.all([].concat(\n\t\t// promise the library imports are replaced with their contents\n\t\tpromises,\n\t\t// promise certain libraries are prepended\n\t\tPromise.all(\n\t\t\t[].concat(\n\t\t\t\topts.forceImport || []\n\t\t\t).reduce(\n\t\t\t\t// filter the id to be a known id or boolean true\n\t\t\t\t(all, id) => {\n\t\t\t\t\tif (id === true) {\n\t\t\t\t\t\tall.push(...resolvedFilenamesById.normalize)\n\t\t\t\t\t} else if (typeof id === 'string') {\n\t\t\t\t\t\tconst cssId = id.replace(cssExtRegExp, '')\n\n\t\t\t\t\t\tif (cssId in resolvedFilenamesById) {\n\t\t\t\t\t\t\tall.push(...resolvedFilenamesById[cssId])\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn all\n\t\t\t\t},\n\t\t\t\t[]\n\t\t\t).filter(\n\t\t\t\t// ignore filenames that have already been inserted\n\t\t\t\tfilename => insertedFilenames[filename] = opts.allowDuplicates || !(filename in insertedFilenames)\n\t\t\t).map(\n\t\t\t\t// parse the file (the file and css are conservatively cached)\n\t\t\t\tfilename => parse(filename, commentsTransformer)\n\t\t\t)\n\t\t).then(roots => {\n\t\t\tif (roots.length) {\n\t\t\t\t// combine all the library nodes returned by the parsed files\n\t\t\t\tconst nodes = roots.reduce(\n\t\t\t\t\t(all, root) => all.concat(root.nodes),\n\t\t\t\t\t[]\n\t\t\t\t)\n\n\t\t\t\t// prepend the stylesheet with all the library nodes\n\t\t\t\troot.prepend(...nodes)\n\t\t\t}\n\t\t})\n\t))\n}\n\nconst cssExtRegExp = /\\.css\\b/g\nconst importRegExp = /^import(?:-(normalize|sanitize))?$/\nconst paramsRegExp = /^\\s*(?:url\\((?:\"(.+)\"|'(.+)')\\)|\"(.+)\"|'(.+)')[\\W\\w]*$/\n\nexport default postcssPlugin\n"
  },
  {
    "path": "src/lib/readFile.js",
    "content": "import { create } from './util'\nimport path from 'path'\nimport fs from 'fs'\n\nconst cache = create()\n\nexport default async function readFile (filename) {\n\tfilename = path.resolve(filename)\n\n\tcache[filename] = cache[filename] || create()\n\n\treturn new Promise(\n\t\t(resolve, reject) => fs.stat(\n\t\t\tfilename,\n\t\t\t(statsError, { mtime }) => statsError\n\t\t\t\t? reject(statsError)\n\t\t\t: mtime === cache[filename].mtime\n\t\t\t\t? resolve(cache[filename].data)\n\t\t\t: fs.readFile(\n\t\t\t\tfilename,\n\t\t\t\t'utf8',\n\t\t\t\t(readFileError, data) => readFileError\n\t\t\t\t\t? reject(readFileError)\n\t\t\t\t: resolve(\n\t\t\t\t\t(cache[filename] = { data, mtime }).data\n\t\t\t\t)\n\t\t\t)\n\t\t)\n\t)\n}\n"
  },
  {
    "path": "src/lib/util.js",
    "content": "export const assign = (...objects) => Object.assign(...objects)\nexport const create = (...objects) => assign(Object.create(null), ...objects)\n"
  },
  {
    "path": "test/_import.mjs",
    "content": "import plugin from 'postcss-normalize';\nimport postcss from 'postcss';\nimport assert from 'node:assert';\n\npostcss([plugin()]).process('@import \"sanitize.css\"', { from: null }).then((result) => {\n\tassert.ok(result.css.includes(':where('));\n});\n\npostcss([plugin()]).process('@import \"normalize.css\"', { from: null }).then((result) => {\n\tassert.ok(result.css.includes(':where('));\n});\n"
  },
  {
    "path": "test/_require.cjs",
    "content": "const plugin = require('postcss-normalize');\nconst postcss = require('postcss');\nconst assert = require('node:assert');\n\npostcss([plugin()]).process('@import \"sanitize.css\"', { from: null }).then((result) => {\n\tassert.ok(result.css.includes(':where('));\n});\n\npostcss([plugin()]).process('@import \"normalize.css\"', { from: null }).then((result) => {\n\tassert.ok(result.css.includes(':where('));\n});\n"
  },
  {
    "path": "test/_tape.mjs",
    "content": "import { postcssTape } from '@csstools/postcss-tape';\nimport plugin from 'postcss-normalize';\nimport postcss from 'postcss';\nimport postcssImport from 'postcss-import';\n\nconst fixed_browserslist = [\n\t\"IE 10\",\n\t\"ie_mob 10\",\n\t\"Safari 7\",\n\t\"iOS 7\",\n\t\"Chrome 60\",\n\t\"ChromeAndroid 60\",\n\t\"Firefox 60\",\n\t\"FirefoxAndroid 60\",\n\t\"Edge 16\",\n\t\"> 0.01%\"\n]\n\npostcssTape(plugin)({\n\t/* Test Basic Usage */\n\t'basic-normalize': {\n\t\tmessage: 'supports @import-normalize usage',\n\t\toptions: {\n\t\t\tbrowsers: fixed_browserslist\n\t\t}\n\t},\n\t'basic-normalize-opinionated': {\n\t\tmessage: 'supports @import-normalize \"opinionated.css\" usage',\n\t\toptions: {\n\t\t\tbrowsers: fixed_browserslist\n\t\t}\n\t},\n\t'basic-sanitize': {\n\t\tmessage: 'supports @import-sanitize usage',\n\t\toptions: {\n\t\t\tbrowsers: fixed_browserslist\n\t\t}\n\t},\n\n\t/* Test @import Usage */\n\t'import-normalize': {\n\t\tmessage: 'supports @import \"normalize\" usage',\n\t\toptions: {\n\t\t\tbrowsers: fixed_browserslist\n\t\t},\n\t\texpect: \"normalize.expect.css\"\n\t},\n\t'import-normalize-opinionated': {\n\t\tmessage: 'supports @import \"normalize/opinionated\" usage',\n\t\toptions: {\n\t\t\tbrowsers: fixed_browserslist\n\t\t}\n\t},\n\t'import-sanitize': {\n\t\tmessage: 'supports @import \"sanitize\" usage',\n\t\toptions: {\n\t\t\tbrowsers: fixed_browserslist\n\t\t},\n\t\texpect: \"sanitize.expect.css\"\n\t},\n\t'import-sanitize-forms': {\n\t\tmessage: 'supports @import \"sanitize/forms\" usage',\n\t\toptions: {\n\t\t\tbrowsers: fixed_browserslist\n\t\t}\n\t},\n\t'import-sanitize-all': {\n\t\tmessage: 'supports @import \"sanitize/*\" + (forms + page + typography) usage',\n\t\toptions: {\n\t\t\tbrowsers: fixed_browserslist\n\t\t}\n\t},\n\n\t/* Test { browsers } Usage */\n\t'browsers-normalize': {\n\t\tmessage: 'supports { browsers: \"last 2 * versions, not EdgeHTML\" }',\n\t\toptions: {\n\t\t\tbrowsers: 'last 2 chrome versions, edge >= 72, last 2 firefox versions, last 2 safari versions, last 1 ios versions, last 1 android versions'\n\t\t}\n\t},\n\n\t/* Test { forceImport } Usage */\n\t'force-normalize': {\n\t\tmessage: 'supports { forceImport: true }',\n\t\toptions: {\n\t\t\tforceImport: true,\n\t\t\tbrowsers: fixed_browserslist\n\t\t}\n\t},\n\t'force-sanitize': {\n\t\tmessage: 'supports { forceImport: \"sanitize\" }',\n\t\toptions: {\n\t\t\tforceImport: 'sanitize',\n\t\t\tbrowsers: fixed_browserslist\n\t\t}\n\t},\n\t'force-sanitize-all': {\n\t\tmessage: 'supports { forceImport: \"sanitize/*\" }',\n\t\toptions: {\n\t\t\tforceImport: 'sanitize/*',\n\t\t\tbrowsers: fixed_browserslist\n\t\t}\n\t},\n\n\t/* Test { allowDuplicates } Usage */\n\t'duplicates': {\n\t\tmessage: 'supports preventing duplicates',\n\t\toptions: {\n\t\t\tbrowsers: fixed_browserslist\n\t\t}\n\t},\n\t'duplicates:allow': {\n\t\tmessage: 'supports allowing duplicates { allowDuplicates: true }',\n\t\toptions: {\n\t\t\tallowDuplicates: true,\n\t\t\tbrowsers: fixed_browserslist\n\t\t}\n\t},\n\n\t/* Test PostCSS Import Usage */\n\t'postcss-import': {\n\t\tmessage: 'supports PostCSS Import Usage',\n\t\tsource: 'import-normalize.css',\n\t\tplugins: [(() => {\n\t\t\treturn postcss([postcssImport(plugin({ browsers: fixed_browserslist }).postcssImport()) ])\n\t\t})()]\n\t}\n})\n"
  },
  {
    "path": "test/basic-normalize-opinionated.css",
    "content": "@import-normalize \"normalize/opinionated.css\";\n\nbody {\n\tfont-family: sans-serif;\n}\n"
  },
  {
    "path": "test/basic-normalize-opinionated.expect.css",
    "content": "/* Document\n * ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\n:where(html) {\n  line-height: 1.15; /* 1 */\n  -webkit-text-size-adjust: 100%; /* 2 */\n  text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n * ========================================================================== */\n\n/**\n * Remove the margin in all browsers. (opinionated)\n */\n\n:where(body) {\n  margin: 0;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n\n:where(h1) {\n  font-size: 2em;\n  margin-block-end: 0.67em;\n  margin-block-start: 0.67em;\n}\n\n/* Grouping content\n * ========================================================================== */\n\n/**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin-block-end: 0;\n  margin-block-start: 0;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Correct the inheritance of border color in Firefox.\n */\n\n:where(hr) {\n  box-sizing: content-box; /* 1 */\n  color: inherit; /* 2 */\n  height: 0; /* 1 */\n}\n\n/* Text-level semantics\n * ========================================================================== */\n\n/**\n * Add the correct text decoration in Safari.\n */\n\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\n:where(b, strong) {\n  font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\n:where(code, kbd, pre, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\n:where(small) {\n  font-size: 80%;\n}\n\n/* Tabular data\n * ========================================================================== */\n\n/**\n * 1. Correct table border color in Chrome, Edge, and Safari.\n * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n\n:where(table) {\n  border-color: currentColor; /* 1 */\n  text-indent: 0; /* 2 */\n}\n\n/* Forms\n * ========================================================================== */\n\n/**\n * Remove the margin on controls in Safari.\n */\n\n:where(button, input, select) {\n  margin: 0;\n}\n\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n\n:where(button) {\n  text-transform: none;\n}\n\n/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i])) {\n  -webkit-appearance: button;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n\n:where(progress) {\n  vertical-align: baseline;\n}\n\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n\n:where(select) {\n  text-transform: none;\n}\n\n/**\n * Remove the margin in Firefox and Safari.\n */\n\n:where(textarea) {\n  margin: 0;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n:where(input[type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}\n\n/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}\n\n/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}\n\n/**\n * Remove the inner border and padding of focus outlines in Firefox.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}\n\n/**\n * Restore the focus outline styles unset by the previous rule in Firefox.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n\n/**\n * Remove the additional :invalid styles in Firefox.\n */\n\n:where(:-moz-ui-invalid) {\n  box-shadow: none;\n}\n\n/* Interactive\n * ========================================================================== */\n\n/*\n * Add the correct styles in Safari.\n */\n\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n\n:where(dialog:not([open])) {\n  display: none;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\n:where(summary) {\n  display: list-item;\n}\n\nbody {\n\tfont-family: sans-serif;\n}\n"
  },
  {
    "path": "test/basic-normalize.css",
    "content": "@import-normalize;\n\nbody {\n\tfont-family: sans-serif;\n}\n"
  },
  {
    "path": "test/basic-normalize.expect.css",
    "content": "/* Document\n * ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\n:where(html) {\n  line-height: 1.15; /* 1 */\n  -webkit-text-size-adjust: 100%; /* 2 */\n  text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n * ========================================================================== */\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n\n:where(h1) {\n  font-size: 2em;\n  margin-block-end: 0.67em;\n  margin-block-start: 0.67em;\n}\n\n/* Grouping content\n * ========================================================================== */\n\n/**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin-block-end: 0;\n  margin-block-start: 0;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Correct the inheritance of border color in Firefox.\n */\n\n:where(hr) {\n  box-sizing: content-box; /* 1 */\n  color: inherit; /* 2 */\n  height: 0; /* 1 */\n}\n\n/* Text-level semantics\n * ========================================================================== */\n\n/**\n * Add the correct text decoration in Safari.\n */\n\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\n:where(b, strong) {\n  font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\n:where(code, kbd, pre, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\n:where(small) {\n  font-size: 80%;\n}\n\n/* Tabular data\n * ========================================================================== */\n\n/**\n * 1. Correct table border color in Chrome, Edge, and Safari.\n * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n\n:where(table) {\n  border-color: currentColor; /* 1 */\n  text-indent: 0; /* 2 */\n}\n\n/* Forms\n * ========================================================================== */\n\n/**\n * Remove the margin on controls in Safari.\n */\n\n:where(button, input, select) {\n  margin: 0;\n}\n\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n\n:where(button) {\n  text-transform: none;\n}\n\n/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i])) {\n  -webkit-appearance: button;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n\n:where(progress) {\n  vertical-align: baseline;\n}\n\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n\n:where(select) {\n  text-transform: none;\n}\n\n/**\n * Remove the margin in Firefox and Safari.\n */\n\n:where(textarea) {\n  margin: 0;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n:where(input[type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}\n\n/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}\n\n/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}\n\n/**\n * Remove the inner border and padding of focus outlines in Firefox.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}\n\n/**\n * Restore the focus outline styles unset by the previous rule in Firefox.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n\n/**\n * Remove the additional :invalid styles in Firefox.\n */\n\n:where(:-moz-ui-invalid) {\n  box-shadow: none;\n}\n\n/* Interactive\n * ========================================================================== */\n\n/*\n * Add the correct styles in Safari.\n */\n\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n\n:where(dialog:not([open])) {\n  display: none;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\n:where(summary) {\n  display: list-item;\n}\n\nbody {\n\tfont-family: sans-serif;\n}\n"
  },
  {
    "path": "test/basic-sanitize.css",
    "content": "@import-sanitize;\n\nbody {\n\tdisplay: flex;\n}\n"
  },
  {
    "path": "test/basic-sanitize.expect.css",
    "content": "/* Document\n * ========================================================================== */\n\n/**\n * 1. Add border box sizing in all browsers (opinionated).\n * 2. Backgrounds do not repeat by default (opinionated).\n */\n\n*,\n::before,\n::after {\n  box-sizing: border-box; /* 1 */\n}\n\n/**\n * 1. Add text decoration inheritance in all browsers (opinionated).\n * 2. Add vertical alignment inheritance in all browsers (opinionated).\n */\n\n::before,\n::after {\n  text-decoration: inherit; /* 1 */\n  vertical-align: inherit; /* 2 */\n}\n\n/**\n * 1. Use the default cursor in all browsers (opinionated).\n * 2. Change the line height in all browsers (opinionated).\n * 3. Breaks words to prevent overflow in all browsers (opinionated).\n * 4. Use a 4-space tab width in all browsers (opinionated).\n * 5. Remove the grey highlight on links in iOS (opinionated).\n * 6. Prevent adjustments of font size after orientation changes in iOS.\n */\n\n:where(:root) {\n  cursor: default; /* 1 */\n  line-height: 1.5; /* 2 */\n  overflow-wrap: break-word; /* 3 */\n  -moz-tab-size: 4; /* 4 */\n  tab-size: 4; /* 4 */\n  -webkit-tap-highlight-color: transparent; /* 5 */\n  -webkit-text-size-adjust: 100%; /* 6 */\n}\n\n/* Sections\n * ========================================================================== */\n\n/**\n * Remove the margin in all browsers (opinionated).\n */\n\n:where(body) {\n  margin: 0;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n\n:where(h1) {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n/* Grouping content\n * ========================================================================== */\n\n/**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin: 0;\n}\n\n/**\n * 1. Correct the inheritance of border color in Firefox.\n * 2. Add the correct box sizing in Firefox.\n */\n\n:where(hr) {\n  color: inherit; /* 1 */\n  height: 0; /* 2 */\n}\n\n/**\n * Remove the list style on navigation lists in all browsers (opinionated).\n */\n\n:where(nav) :where(ol, ul) {\n  list-style-type: none;\n  padding: 0;\n}\n\n/**\n * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).\n */\n\n:where(nav li)::before {\n  content: \"\\200B\";\n  float: left;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n * 3. Prevent overflow of the container in all browsers (opinionated).\n */\n\n:where(pre) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n  overflow: auto; /* 3 */\n}\n\n/* Text-level semantics\n * ========================================================================== */\n\n/**\n * Add the correct text decoration in Safari.\n */\n\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\n:where(b, strong) {\n  font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\n:where(code, kbd, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\n:where(small) {\n  font-size: 80%;\n}\n\n/* Embedded content\n * ========================================================================== */\n\n/*\n * Change the alignment on media elements in all browsers (opinionated).\n */\n\n:where(audio, canvas, iframe, img, svg, video) {\n  vertical-align: middle;\n}\n\n/**\n * Remove the border on iframes in all browsers (opinionated).\n */\n\n:where(iframe) {\n  border-style: none;\n}\n\n/**\n * Change the fill color to match the text color in all browsers (opinionated).\n */\n\n:where(svg:not([fill])) {\n  fill: currentColor;\n}\n\n/* Tabular data\n * ========================================================================== */\n\n/**\n * 1. Collapse border spacing in all browsers (opinionated).\n * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.\n * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n\n:where(table) {\n  border-collapse: collapse; /* 1 */\n  border-color: inherit; /* 2 */\n  text-indent: 0; /* 3 */\n}\n\n/* Forms\n * ========================================================================== */\n\n/**\n * Remove the margin on controls in Safari.\n */\n\n:where(button, input, select) {\n  margin: 0;\n}\n\n/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n\n:where(button, [type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i]) {\n  -webkit-appearance: button;\n}\n\n/**\n * Change the inconsistent appearance in all browsers (opinionated).\n */\n\n:where(fieldset) {\n  border: 1px solid #a0a0a0;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n\n:where(progress) {\n  vertical-align: baseline;\n}\n\n/**\n * 1. Remove the margin in Firefox and Safari.\n * 3. Change the resize direction in all browsers (opinionated).\n */\n\n:where(textarea) {\n  margin: 0; /* 1 */\n  resize: vertical; /* 3 */\n}\n\n/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n:where([type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}\n\n/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}\n\n/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}\n\n/* Interactive\n * ========================================================================== */\n\n/*\n * Add the correct styles in Safari.\n */\n\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n\n:where(dialog:not([open])) {\n  display: none;\n}\n\n/*\n * Add the correct display in Safari.\n */\n\n:where(details > summary:first-of-type) {\n  display: list-item;\n}\n\n/* Accessibility\n * ========================================================================== */\n\n/**\n * Change the cursor on busy elements in all browsers (opinionated).\n */\n\n:where([aria-busy=\"true\" i]) {\n  cursor: progress;\n}\n\n/*\n * Change the cursor on control elements in all browsers (opinionated).\n */\n\n:where([aria-controls]) {\n  cursor: pointer;\n}\n\n/*\n * Change the cursor on disabled, not-editable, or otherwise\n * inoperable elements in all browsers (opinionated).\n */\n\n:where([aria-disabled=\"true\" i], [disabled]) {\n  cursor: not-allowed;\n}\n\n/*\n * Change the display on visually hidden accessible elements\n * in all browsers (opinionated).\n */\n\n:where([aria-hidden=\"false\" i][hidden]) {\n  display: initial;\n}\n\n:where([aria-hidden=\"false\" i][hidden]:not(:focus)) {\n  clip: rect(0, 0, 0, 0);\n  position: absolute;\n}\n\nbody {\n\tdisplay: flex;\n}\n"
  },
  {
    "path": "test/browsers-normalize.css",
    "content": ""
  },
  {
    "path": "test/browsers-normalize.expect.css",
    "content": ""
  },
  {
    "path": "test/duplicates.allow.expect.css",
    "content": "/* Document\n * ========================================================================== */\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n:where(html) {\n  line-height: 1.15; /* 1 */\n  -webkit-text-size-adjust: 100%; /* 2 */\n  text-size-adjust: 100%; /* 2 */\n}\n/* Sections\n * ========================================================================== */\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n:where(h1) {\n  font-size: 2em;\n  margin-block-end: 0.67em;\n  margin-block-start: 0.67em;\n}\n/* Grouping content\n * ========================================================================== */\n/**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin-block-end: 0;\n  margin-block-start: 0;\n}\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Correct the inheritance of border color in Firefox.\n */\n:where(hr) {\n  box-sizing: content-box; /* 1 */\n  color: inherit; /* 2 */\n  height: 0; /* 1 */\n}\n/* Text-level semantics\n * ========================================================================== */\n/**\n * Add the correct text decoration in Safari.\n */\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n:where(b, strong) {\n  font-weight: bolder;\n}\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n:where(code, kbd, pre, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n/**\n * Add the correct font size in all browsers.\n */\n:where(small) {\n  font-size: 80%;\n}\n/* Tabular data\n * ========================================================================== */\n/**\n * 1. Correct table border color in Chrome, Edge, and Safari.\n * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n:where(table) {\n  border-color: currentColor; /* 1 */\n  text-indent: 0; /* 2 */\n}\n/* Forms\n * ========================================================================== */\n/**\n * Remove the margin on controls in Safari.\n */\n:where(button, input, select) {\n  margin: 0;\n}\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n:where(button) {\n  text-transform: none;\n}\n/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n:where(button, input:is([type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i])) {\n  -webkit-appearance: button;\n}\n/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n:where(progress) {\n  vertical-align: baseline;\n}\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n:where(select) {\n  text-transform: none;\n}\n/**\n * Remove the margin in Firefox and Safari.\n */\n:where(textarea) {\n  margin: 0;\n}\n/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n:where(input[type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}\n/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}\n/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}\n/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}\n/**\n * Remove the inner border and padding of focus outlines in Firefox.\n */\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}\n/**\n * Restore the focus outline styles unset by the previous rule in Firefox.\n */\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n/**\n * Remove the additional :invalid styles in Firefox.\n */\n:where(:-moz-ui-invalid) {\n  box-shadow: none;\n}\n/* Interactive\n * ========================================================================== */\n/*\n * Add the correct styles in Safari.\n */\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n:where(dialog:not([open])) {\n  display: none;\n}\n/*\n * Add the correct display in all browsers.\n */\n:where(summary) {\n  display: list-item;\n}\n/* Document\n * ========================================================================== */\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n:where(html) {\n  line-height: 1.15; /* 1 */\n  -webkit-text-size-adjust: 100%; /* 2 */\n  text-size-adjust: 100%; /* 2 */\n}\n/* Sections\n * ========================================================================== */\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n:where(h1) {\n  font-size: 2em;\n  margin-block-end: 0.67em;\n  margin-block-start: 0.67em;\n}\n/* Grouping content\n * ========================================================================== */\n/**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin-block-end: 0;\n  margin-block-start: 0;\n}\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Correct the inheritance of border color in Firefox.\n */\n:where(hr) {\n  box-sizing: content-box; /* 1 */\n  color: inherit; /* 2 */\n  height: 0; /* 1 */\n}\n/* Text-level semantics\n * ========================================================================== */\n/**\n * Add the correct text decoration in Safari.\n */\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n:where(b, strong) {\n  font-weight: bolder;\n}\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n:where(code, kbd, pre, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n/**\n * Add the correct font size in all browsers.\n */\n:where(small) {\n  font-size: 80%;\n}\n/* Tabular data\n * ========================================================================== */\n/**\n * 1. Correct table border color in Chrome, Edge, and Safari.\n * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n:where(table) {\n  border-color: currentColor; /* 1 */\n  text-indent: 0; /* 2 */\n}\n/* Forms\n * ========================================================================== */\n/**\n * Remove the margin on controls in Safari.\n */\n:where(button, input, select) {\n  margin: 0;\n}\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n:where(button) {\n  text-transform: none;\n}\n/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n:where(button, input:is([type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i])) {\n  -webkit-appearance: button;\n}\n/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n:where(progress) {\n  vertical-align: baseline;\n}\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n:where(select) {\n  text-transform: none;\n}\n/**\n * Remove the margin in Firefox and Safari.\n */\n:where(textarea) {\n  margin: 0;\n}\n/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n:where(input[type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}\n/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}\n/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}\n/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}\n/**\n * Remove the inner border and padding of focus outlines in Firefox.\n */\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}\n/**\n * Restore the focus outline styles unset by the previous rule in Firefox.\n */\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n/**\n * Remove the additional :invalid styles in Firefox.\n */\n:where(:-moz-ui-invalid) {\n  box-shadow: none;\n}\n/* Interactive\n * ========================================================================== */\n/*\n * Add the correct styles in Safari.\n */\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n:where(dialog:not([open])) {\n  display: none;\n}\n/*\n * Add the correct display in all browsers.\n */\n:where(summary) {\n  display: list-item;\n}\n\nbody {\n\tdisplay: flex;\n}\n"
  },
  {
    "path": "test/duplicates.css",
    "content": "@import-normalize;\n@import-normalize;\n\nbody {\n\tdisplay: flex;\n}\n"
  },
  {
    "path": "test/duplicates.expect.css",
    "content": "/* Document\n * ========================================================================== */\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n:where(html) {\n  line-height: 1.15; /* 1 */\n  -webkit-text-size-adjust: 100%; /* 2 */\n  text-size-adjust: 100%; /* 2 */\n}\n/* Sections\n * ========================================================================== */\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n:where(h1) {\n  font-size: 2em;\n  margin-block-end: 0.67em;\n  margin-block-start: 0.67em;\n}\n/* Grouping content\n * ========================================================================== */\n/**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin-block-end: 0;\n  margin-block-start: 0;\n}\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Correct the inheritance of border color in Firefox.\n */\n:where(hr) {\n  box-sizing: content-box; /* 1 */\n  color: inherit; /* 2 */\n  height: 0; /* 1 */\n}\n/* Text-level semantics\n * ========================================================================== */\n/**\n * Add the correct text decoration in Safari.\n */\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n:where(b, strong) {\n  font-weight: bolder;\n}\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n:where(code, kbd, pre, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n/**\n * Add the correct font size in all browsers.\n */\n:where(small) {\n  font-size: 80%;\n}\n/* Tabular data\n * ========================================================================== */\n/**\n * 1. Correct table border color in Chrome, Edge, and Safari.\n * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n:where(table) {\n  border-color: currentColor; /* 1 */\n  text-indent: 0; /* 2 */\n}\n/* Forms\n * ========================================================================== */\n/**\n * Remove the margin on controls in Safari.\n */\n:where(button, input, select) {\n  margin: 0;\n}\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n:where(button) {\n  text-transform: none;\n}\n/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n:where(button, input:is([type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i])) {\n  -webkit-appearance: button;\n}\n/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n:where(progress) {\n  vertical-align: baseline;\n}\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n:where(select) {\n  text-transform: none;\n}\n/**\n * Remove the margin in Firefox and Safari.\n */\n:where(textarea) {\n  margin: 0;\n}\n/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n:where(input[type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}\n/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}\n/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}\n/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}\n/**\n * Remove the inner border and padding of focus outlines in Firefox.\n */\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}\n/**\n * Restore the focus outline styles unset by the previous rule in Firefox.\n */\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n/**\n * Remove the additional :invalid styles in Firefox.\n */\n:where(:-moz-ui-invalid) {\n  box-shadow: none;\n}\n/* Interactive\n * ========================================================================== */\n/*\n * Add the correct styles in Safari.\n */\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n:where(dialog:not([open])) {\n  display: none;\n}\n/*\n * Add the correct display in all browsers.\n */\n:where(summary) {\n  display: list-item;\n}\n@import-normalize;\n\nbody {\n\tdisplay: flex;\n}\n"
  },
  {
    "path": "test/force-normalize.css",
    "content": ""
  },
  {
    "path": "test/force-normalize.expect.css",
    "content": "/* Document\n * ========================================================================== *//**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n:where(html) {\n  line-height: 1.15; /* 1 */\n  -webkit-text-size-adjust: 100%; /* 2 */\n  text-size-adjust: 100%; /* 2 */\n}/* Sections\n * ========================================================================== *//**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n:where(h1) {\n  font-size: 2em;\n  margin-block-end: 0.67em;\n  margin-block-start: 0.67em;\n}/* Grouping content\n * ========================================================================== *//**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin-block-end: 0;\n  margin-block-start: 0;\n}/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Correct the inheritance of border color in Firefox.\n */\n:where(hr) {\n  box-sizing: content-box; /* 1 */\n  color: inherit; /* 2 */\n  height: 0; /* 1 */\n}/* Text-level semantics\n * ========================================================================== *//**\n * Add the correct text decoration in Safari.\n */\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n:where(b, strong) {\n  font-weight: bolder;\n}/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n:where(code, kbd, pre, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}/**\n * Add the correct font size in all browsers.\n */\n:where(small) {\n  font-size: 80%;\n}/* Tabular data\n * ========================================================================== *//**\n * 1. Correct table border color in Chrome, Edge, and Safari.\n * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n:where(table) {\n  border-color: currentColor; /* 1 */\n  text-indent: 0; /* 2 */\n}/* Forms\n * ========================================================================== *//**\n * Remove the margin on controls in Safari.\n */\n:where(button, input, select) {\n  margin: 0;\n}/**\n * Remove the inheritance of text transform in Firefox.\n */\n:where(button) {\n  text-transform: none;\n}/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n:where(button, input:is([type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i])) {\n  -webkit-appearance: button;\n}/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n:where(progress) {\n  vertical-align: baseline;\n}/**\n * Remove the inheritance of text transform in Firefox.\n */\n:where(select) {\n  text-transform: none;\n}/**\n * Remove the margin in Firefox and Safari.\n */\n:where(textarea) {\n  margin: 0;\n}/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n:where(input[type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}/**\n * Remove the inner border and padding of focus outlines in Firefox.\n */\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}/**\n * Restore the focus outline styles unset by the previous rule in Firefox.\n */\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focusring {\n  outline: 1px dotted ButtonText;\n}/**\n * Remove the additional :invalid styles in Firefox.\n */\n:where(:-moz-ui-invalid) {\n  box-shadow: none;\n}/* Interactive\n * ========================================================================== *//*\n * Add the correct styles in Safari.\n */\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n:where(dialog:not([open])) {\n  display: none;\n}/*\n * Add the correct display in all browsers.\n */\n:where(summary) {\n  display: list-item;\n}"
  },
  {
    "path": "test/force-sanitize-all.css",
    "content": ""
  },
  {
    "path": "test/force-sanitize-all.expect.css",
    "content": "/* Document\n * ========================================================================== *//**\n * 1. Add border box sizing in all browsers (opinionated).\n * 2. Backgrounds do not repeat by default (opinionated).\n */\n*,\n::before,\n::after {\n  box-sizing: border-box; /* 1 */\n}/**\n * 1. Add text decoration inheritance in all browsers (opinionated).\n * 2. Add vertical alignment inheritance in all browsers (opinionated).\n */\n::before,\n::after {\n  text-decoration: inherit; /* 1 */\n  vertical-align: inherit; /* 2 */\n}/**\n * 1. Use the default cursor in all browsers (opinionated).\n * 2. Change the line height in all browsers (opinionated).\n * 3. Breaks words to prevent overflow in all browsers (opinionated).\n * 4. Use a 4-space tab width in all browsers (opinionated).\n * 5. Remove the grey highlight on links in iOS (opinionated).\n * 6. Prevent adjustments of font size after orientation changes in iOS.\n */\n:where(:root) {\n  cursor: default; /* 1 */\n  line-height: 1.5; /* 2 */\n  overflow-wrap: break-word; /* 3 */\n  -moz-tab-size: 4; /* 4 */\n  tab-size: 4; /* 4 */\n  -webkit-tap-highlight-color: transparent; /* 5 */\n  -webkit-text-size-adjust: 100%; /* 6 */\n}/* Sections\n * ========================================================================== *//**\n * Remove the margin in all browsers (opinionated).\n */\n:where(body) {\n  margin: 0;\n}/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n:where(h1) {\n  font-size: 2em;\n  margin: 0.67em 0;\n}/* Grouping content\n * ========================================================================== *//**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin: 0;\n}/**\n * 1. Correct the inheritance of border color in Firefox.\n * 2. Add the correct box sizing in Firefox.\n */\n:where(hr) {\n  color: inherit; /* 1 */\n  height: 0; /* 2 */\n}/**\n * Remove the list style on navigation lists in all browsers (opinionated).\n */\n:where(nav) :where(ol, ul) {\n  list-style-type: none;\n  padding: 0;\n}/**\n * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).\n */\n:where(nav li)::before {\n  content: \"\\200B\";\n  float: left;\n}/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n * 3. Prevent overflow of the container in all browsers (opinionated).\n */\n:where(pre) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n  overflow: auto; /* 3 */\n}/* Text-level semantics\n * ========================================================================== *//**\n * Add the correct text decoration in Safari.\n */\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n:where(b, strong) {\n  font-weight: bolder;\n}/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n:where(code, kbd, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}/**\n * Add the correct font size in all browsers.\n */\n:where(small) {\n  font-size: 80%;\n}/* Embedded content\n * ========================================================================== *//*\n * Change the alignment on media elements in all browsers (opinionated).\n */\n:where(audio, canvas, iframe, img, svg, video) {\n  vertical-align: middle;\n}/**\n * Remove the border on iframes in all browsers (opinionated).\n */\n:where(iframe) {\n  border-style: none;\n}/**\n * Change the fill color to match the text color in all browsers (opinionated).\n */\n:where(svg:not([fill])) {\n  fill: currentColor;\n}/* Tabular data\n * ========================================================================== *//**\n * 1. Collapse border spacing in all browsers (opinionated).\n * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.\n * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n:where(table) {\n  border-collapse: collapse; /* 1 */\n  border-color: inherit; /* 2 */\n  text-indent: 0; /* 3 */\n}/* Forms\n * ========================================================================== *//**\n * Remove the margin on controls in Safari.\n */\n:where(button, input, select) {\n  margin: 0;\n}/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n:where(button, [type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i]) {\n  -webkit-appearance: button;\n}/**\n * Change the inconsistent appearance in all browsers (opinionated).\n */\n:where(fieldset) {\n  border: 1px solid #a0a0a0;\n}/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n:where(progress) {\n  vertical-align: baseline;\n}/**\n * 1. Remove the margin in Firefox and Safari.\n * 3. Change the resize direction in all browsers (opinionated).\n */\n:where(textarea) {\n  margin: 0; /* 1 */\n  resize: vertical; /* 3 */\n}/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n:where([type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}/* Interactive\n * ========================================================================== *//*\n * Add the correct styles in Safari.\n */\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n:where(dialog:not([open])) {\n  display: none;\n}/*\n * Add the correct display in Safari.\n */\n:where(details > summary:first-of-type) {\n  display: list-item;\n}/* Accessibility\n * ========================================================================== *//**\n * Change the cursor on busy elements in all browsers (opinionated).\n */\n:where([aria-busy=\"true\" i]) {\n  cursor: progress;\n}/*\n * Change the cursor on control elements in all browsers (opinionated).\n */\n:where([aria-controls]) {\n  cursor: pointer;\n}/*\n * Change the cursor on disabled, not-editable, or otherwise\n * inoperable elements in all browsers (opinionated).\n */\n:where([aria-disabled=\"true\" i], [disabled]) {\n  cursor: not-allowed;\n}/*\n * Change the display on visually hidden accessible elements\n * in all browsers (opinionated).\n */\n:where([aria-hidden=\"false\" i][hidden]) {\n  display: initial;\n}\n:where([aria-hidden=\"false\" i][hidden]:not(:focus)) {\n  clip: rect(0, 0, 0, 0);\n  position: absolute;\n}/**\n * 1. Change the inconsistent appearance in all browsers (opinionated).\n * 2. Add typography inheritance in all browsers (opinionated).\n */\n:where(button, input, select, textarea) {\n  background-color: transparent; /* 1 */\n  border: 1px solid WindowFrame; /* 1 */\n  color: inherit; /* 1 */\n  font: inherit; /* 2 */\n  letter-spacing: inherit; /* 2 */\n  padding: 0.25em 0.375em; /* 1 */\n}/**\n * Change the inconsistent appearance in all browsers (opinionated).\n */\n:where(select) {\n  appearance: none;\n  background: url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E\") no-repeat right center / 1em;\n  border-radius: 0;\n  padding-right: 1em;\n}/**\n * Remove the border and padding in all browsers (opinionated).\n */\n:where([type=\"color\" i], [type=\"range\" i]) {\n  border-width: 0;\n  padding: 0;\n}"
  },
  {
    "path": "test/force-sanitize.css",
    "content": ""
  },
  {
    "path": "test/force-sanitize.expect.css",
    "content": "/* Document\n * ========================================================================== *//**\n * 1. Add border box sizing in all browsers (opinionated).\n * 2. Backgrounds do not repeat by default (opinionated).\n */\n*,\n::before,\n::after {\n  box-sizing: border-box; /* 1 */\n}/**\n * 1. Add text decoration inheritance in all browsers (opinionated).\n * 2. Add vertical alignment inheritance in all browsers (opinionated).\n */\n::before,\n::after {\n  text-decoration: inherit; /* 1 */\n  vertical-align: inherit; /* 2 */\n}/**\n * 1. Use the default cursor in all browsers (opinionated).\n * 2. Change the line height in all browsers (opinionated).\n * 3. Breaks words to prevent overflow in all browsers (opinionated).\n * 4. Use a 4-space tab width in all browsers (opinionated).\n * 5. Remove the grey highlight on links in iOS (opinionated).\n * 6. Prevent adjustments of font size after orientation changes in iOS.\n */\n:where(:root) {\n  cursor: default; /* 1 */\n  line-height: 1.5; /* 2 */\n  overflow-wrap: break-word; /* 3 */\n  -moz-tab-size: 4; /* 4 */\n  tab-size: 4; /* 4 */\n  -webkit-tap-highlight-color: transparent; /* 5 */\n  -webkit-text-size-adjust: 100%; /* 6 */\n}/* Sections\n * ========================================================================== *//**\n * Remove the margin in all browsers (opinionated).\n */\n:where(body) {\n  margin: 0;\n}/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n:where(h1) {\n  font-size: 2em;\n  margin: 0.67em 0;\n}/* Grouping content\n * ========================================================================== *//**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin: 0;\n}/**\n * 1. Correct the inheritance of border color in Firefox.\n * 2. Add the correct box sizing in Firefox.\n */\n:where(hr) {\n  color: inherit; /* 1 */\n  height: 0; /* 2 */\n}/**\n * Remove the list style on navigation lists in all browsers (opinionated).\n */\n:where(nav) :where(ol, ul) {\n  list-style-type: none;\n  padding: 0;\n}/**\n * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).\n */\n:where(nav li)::before {\n  content: \"\\200B\";\n  float: left;\n}/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n * 3. Prevent overflow of the container in all browsers (opinionated).\n */\n:where(pre) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n  overflow: auto; /* 3 */\n}/* Text-level semantics\n * ========================================================================== *//**\n * Add the correct text decoration in Safari.\n */\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n:where(b, strong) {\n  font-weight: bolder;\n}/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n:where(code, kbd, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}/**\n * Add the correct font size in all browsers.\n */\n:where(small) {\n  font-size: 80%;\n}/* Embedded content\n * ========================================================================== *//*\n * Change the alignment on media elements in all browsers (opinionated).\n */\n:where(audio, canvas, iframe, img, svg, video) {\n  vertical-align: middle;\n}/**\n * Remove the border on iframes in all browsers (opinionated).\n */\n:where(iframe) {\n  border-style: none;\n}/**\n * Change the fill color to match the text color in all browsers (opinionated).\n */\n:where(svg:not([fill])) {\n  fill: currentColor;\n}/* Tabular data\n * ========================================================================== *//**\n * 1. Collapse border spacing in all browsers (opinionated).\n * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.\n * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n:where(table) {\n  border-collapse: collapse; /* 1 */\n  border-color: inherit; /* 2 */\n  text-indent: 0; /* 3 */\n}/* Forms\n * ========================================================================== *//**\n * Remove the margin on controls in Safari.\n */\n:where(button, input, select) {\n  margin: 0;\n}/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n:where(button, [type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i]) {\n  -webkit-appearance: button;\n}/**\n * Change the inconsistent appearance in all browsers (opinionated).\n */\n:where(fieldset) {\n  border: 1px solid #a0a0a0;\n}/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n:where(progress) {\n  vertical-align: baseline;\n}/**\n * 1. Remove the margin in Firefox and Safari.\n * 3. Change the resize direction in all browsers (opinionated).\n */\n:where(textarea) {\n  margin: 0; /* 1 */\n  resize: vertical; /* 3 */\n}/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n:where([type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}/* Interactive\n * ========================================================================== *//*\n * Add the correct styles in Safari.\n */\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n:where(dialog:not([open])) {\n  display: none;\n}/*\n * Add the correct display in Safari.\n */\n:where(details > summary:first-of-type) {\n  display: list-item;\n}/* Accessibility\n * ========================================================================== *//**\n * Change the cursor on busy elements in all browsers (opinionated).\n */\n:where([aria-busy=\"true\" i]) {\n  cursor: progress;\n}/*\n * Change the cursor on control elements in all browsers (opinionated).\n */\n:where([aria-controls]) {\n  cursor: pointer;\n}/*\n * Change the cursor on disabled, not-editable, or otherwise\n * inoperable elements in all browsers (opinionated).\n */\n:where([aria-disabled=\"true\" i], [disabled]) {\n  cursor: not-allowed;\n}/*\n * Change the display on visually hidden accessible elements\n * in all browsers (opinionated).\n */\n:where([aria-hidden=\"false\" i][hidden]) {\n  display: initial;\n}\n:where([aria-hidden=\"false\" i][hidden]:not(:focus)) {\n  clip: rect(0, 0, 0, 0);\n  position: absolute;\n}"
  },
  {
    "path": "test/import-normalize-opinionated.css",
    "content": "@import \"normalize/opinionated\";\n\nbody {\n\tfont-family: sans-serif;\n}\n"
  },
  {
    "path": "test/import-normalize-opinionated.expect.css",
    "content": "/* Document\n * ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\n:where(html) {\n  line-height: 1.15; /* 1 */\n  -webkit-text-size-adjust: 100%; /* 2 */\n  text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n * ========================================================================== */\n\n/**\n * Remove the margin in all browsers. (opinionated)\n */\n\n:where(body) {\n  margin: 0;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n\n:where(h1) {\n  font-size: 2em;\n  margin-block-end: 0.67em;\n  margin-block-start: 0.67em;\n}\n\n/* Grouping content\n * ========================================================================== */\n\n/**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin-block-end: 0;\n  margin-block-start: 0;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Correct the inheritance of border color in Firefox.\n */\n\n:where(hr) {\n  box-sizing: content-box; /* 1 */\n  color: inherit; /* 2 */\n  height: 0; /* 1 */\n}\n\n/* Text-level semantics\n * ========================================================================== */\n\n/**\n * Add the correct text decoration in Safari.\n */\n\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\n:where(b, strong) {\n  font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\n:where(code, kbd, pre, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\n:where(small) {\n  font-size: 80%;\n}\n\n/* Tabular data\n * ========================================================================== */\n\n/**\n * 1. Correct table border color in Chrome, Edge, and Safari.\n * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n\n:where(table) {\n  border-color: currentColor; /* 1 */\n  text-indent: 0; /* 2 */\n}\n\n/* Forms\n * ========================================================================== */\n\n/**\n * Remove the margin on controls in Safari.\n */\n\n:where(button, input, select) {\n  margin: 0;\n}\n\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n\n:where(button) {\n  text-transform: none;\n}\n\n/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i])) {\n  -webkit-appearance: button;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n\n:where(progress) {\n  vertical-align: baseline;\n}\n\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n\n:where(select) {\n  text-transform: none;\n}\n\n/**\n * Remove the margin in Firefox and Safari.\n */\n\n:where(textarea) {\n  margin: 0;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n:where(input[type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}\n\n/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}\n\n/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}\n\n/**\n * Remove the inner border and padding of focus outlines in Firefox.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}\n\n/**\n * Restore the focus outline styles unset by the previous rule in Firefox.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n\n/**\n * Remove the additional :invalid styles in Firefox.\n */\n\n:where(:-moz-ui-invalid) {\n  box-shadow: none;\n}\n\n/* Interactive\n * ========================================================================== */\n\n/*\n * Add the correct styles in Safari.\n */\n\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n\n:where(dialog:not([open])) {\n  display: none;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\n:where(summary) {\n  display: list-item;\n}\n\nbody {\n\tfont-family: sans-serif;\n}\n"
  },
  {
    "path": "test/import-normalize.css",
    "content": "@import \"normalize\";\n\nbody {\n\tfont-family: sans-serif;\n}\n"
  },
  {
    "path": "test/import-normalize.expect.css",
    "content": "/* Document\n * ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\n:where(html) {\n  line-height: 1.15; /* 1 */\n  -webkit-text-size-adjust: 100%; /* 2 */\n  text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n * ========================================================================== */\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n\n:where(h1) {\n  font-size: 2em;\n  margin-block-end: 0.67em;\n  margin-block-start: 0.67em;\n}\n\n/* Grouping content\n * ========================================================================== */\n\n/**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin-block-end: 0;\n  margin-block-start: 0;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Correct the inheritance of border color in Firefox.\n */\n\n:where(hr) {\n  box-sizing: content-box; /* 1 */\n  color: inherit; /* 2 */\n  height: 0; /* 1 */\n}\n\n/* Text-level semantics\n * ========================================================================== */\n\n/**\n * Add the correct text decoration in Safari.\n */\n\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\n:where(b, strong) {\n  font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\n:where(code, kbd, pre, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\n:where(small) {\n  font-size: 80%;\n}\n\n/* Tabular data\n * ========================================================================== */\n\n/**\n * 1. Correct table border color in Chrome, Edge, and Safari.\n * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n\n:where(table) {\n  border-color: currentColor; /* 1 */\n  text-indent: 0; /* 2 */\n}\n\n/* Forms\n * ========================================================================== */\n\n/**\n * Remove the margin on controls in Safari.\n */\n\n:where(button, input, select) {\n  margin: 0;\n}\n\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n\n:where(button) {\n  text-transform: none;\n}\n\n/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i])) {\n  -webkit-appearance: button;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n\n:where(progress) {\n  vertical-align: baseline;\n}\n\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n\n:where(select) {\n  text-transform: none;\n}\n\n/**\n * Remove the margin in Firefox and Safari.\n */\n\n:where(textarea) {\n  margin: 0;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n:where(input[type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}\n\n/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}\n\n/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}\n\n/**\n * Remove the inner border and padding of focus outlines in Firefox.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}\n\n/**\n * Restore the focus outline styles unset by the previous rule in Firefox.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n\n/**\n * Remove the additional :invalid styles in Firefox.\n */\n\n:where(:-moz-ui-invalid) {\n  box-shadow: none;\n}\n\n/* Interactive\n * ========================================================================== */\n\n/*\n * Add the correct styles in Safari.\n */\n\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n\n:where(dialog:not([open])) {\n  display: none;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\n:where(summary) {\n  display: list-item;\n}\n\nbody {\n\tfont-family: sans-serif;\n}\n"
  },
  {
    "path": "test/import-sanitize-all.css",
    "content": "@import \"sanitize/*\";\n"
  },
  {
    "path": "test/import-sanitize-all.expect.css",
    "content": "/* Document\n * ========================================================================== *//**\n * 1. Add border box sizing in all browsers (opinionated).\n * 2. Backgrounds do not repeat by default (opinionated).\n */\n*,\n::before,\n::after {\n  box-sizing: border-box; /* 1 */\n}/**\n * 1. Add text decoration inheritance in all browsers (opinionated).\n * 2. Add vertical alignment inheritance in all browsers (opinionated).\n */\n::before,\n::after {\n  text-decoration: inherit; /* 1 */\n  vertical-align: inherit; /* 2 */\n}/**\n * 1. Use the default cursor in all browsers (opinionated).\n * 2. Change the line height in all browsers (opinionated).\n * 3. Breaks words to prevent overflow in all browsers (opinionated).\n * 4. Use a 4-space tab width in all browsers (opinionated).\n * 5. Remove the grey highlight on links in iOS (opinionated).\n * 6. Prevent adjustments of font size after orientation changes in iOS.\n */\n:where(:root) {\n  cursor: default; /* 1 */\n  line-height: 1.5; /* 2 */\n  overflow-wrap: break-word; /* 3 */\n  -moz-tab-size: 4; /* 4 */\n  tab-size: 4; /* 4 */\n  -webkit-tap-highlight-color: transparent; /* 5 */\n  -webkit-text-size-adjust: 100%; /* 6 */\n}/* Sections\n * ========================================================================== *//**\n * Remove the margin in all browsers (opinionated).\n */\n:where(body) {\n  margin: 0;\n}/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n:where(h1) {\n  font-size: 2em;\n  margin: 0.67em 0;\n}/* Grouping content\n * ========================================================================== *//**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin: 0;\n}/**\n * 1. Correct the inheritance of border color in Firefox.\n * 2. Add the correct box sizing in Firefox.\n */\n:where(hr) {\n  color: inherit; /* 1 */\n  height: 0; /* 2 */\n}/**\n * Remove the list style on navigation lists in all browsers (opinionated).\n */\n:where(nav) :where(ol, ul) {\n  list-style-type: none;\n  padding: 0;\n}/**\n * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).\n */\n:where(nav li)::before {\n  content: \"\\200B\";\n  float: left;\n}/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n * 3. Prevent overflow of the container in all browsers (opinionated).\n */\n:where(pre) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n  overflow: auto; /* 3 */\n}/* Text-level semantics\n * ========================================================================== *//**\n * Add the correct text decoration in Safari.\n */\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n:where(b, strong) {\n  font-weight: bolder;\n}/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n:where(code, kbd, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}/**\n * Add the correct font size in all browsers.\n */\n:where(small) {\n  font-size: 80%;\n}/* Embedded content\n * ========================================================================== *//*\n * Change the alignment on media elements in all browsers (opinionated).\n */\n:where(audio, canvas, iframe, img, svg, video) {\n  vertical-align: middle;\n}/**\n * Remove the border on iframes in all browsers (opinionated).\n */\n:where(iframe) {\n  border-style: none;\n}/**\n * Change the fill color to match the text color in all browsers (opinionated).\n */\n:where(svg:not([fill])) {\n  fill: currentColor;\n}/* Tabular data\n * ========================================================================== *//**\n * 1. Collapse border spacing in all browsers (opinionated).\n * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.\n * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n:where(table) {\n  border-collapse: collapse; /* 1 */\n  border-color: inherit; /* 2 */\n  text-indent: 0; /* 3 */\n}/* Forms\n * ========================================================================== *//**\n * Remove the margin on controls in Safari.\n */\n:where(button, input, select) {\n  margin: 0;\n}/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n:where(button, [type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i]) {\n  -webkit-appearance: button;\n}/**\n * Change the inconsistent appearance in all browsers (opinionated).\n */\n:where(fieldset) {\n  border: 1px solid #a0a0a0;\n}/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n:where(progress) {\n  vertical-align: baseline;\n}/**\n * 1. Remove the margin in Firefox and Safari.\n * 3. Change the resize direction in all browsers (opinionated).\n */\n:where(textarea) {\n  margin: 0; /* 1 */\n  resize: vertical; /* 3 */\n}/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n:where([type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}/* Interactive\n * ========================================================================== *//*\n * Add the correct styles in Safari.\n */\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n:where(dialog:not([open])) {\n  display: none;\n}/*\n * Add the correct display in Safari.\n */\n:where(details > summary:first-of-type) {\n  display: list-item;\n}/* Accessibility\n * ========================================================================== *//**\n * Change the cursor on busy elements in all browsers (opinionated).\n */\n:where([aria-busy=\"true\" i]) {\n  cursor: progress;\n}/*\n * Change the cursor on control elements in all browsers (opinionated).\n */\n:where([aria-controls]) {\n  cursor: pointer;\n}/*\n * Change the cursor on disabled, not-editable, or otherwise\n * inoperable elements in all browsers (opinionated).\n */\n:where([aria-disabled=\"true\" i], [disabled]) {\n  cursor: not-allowed;\n}/*\n * Change the display on visually hidden accessible elements\n * in all browsers (opinionated).\n */\n:where([aria-hidden=\"false\" i][hidden]) {\n  display: initial;\n}\n:where([aria-hidden=\"false\" i][hidden]:not(:focus)) {\n  clip: rect(0, 0, 0, 0);\n  position: absolute;\n}/**\n * 1. Change the inconsistent appearance in all browsers (opinionated).\n * 2. Add typography inheritance in all browsers (opinionated).\n */\n:where(button, input, select, textarea) {\n  background-color: transparent; /* 1 */\n  border: 1px solid WindowFrame; /* 1 */\n  color: inherit; /* 1 */\n  font: inherit; /* 2 */\n  letter-spacing: inherit; /* 2 */\n  padding: 0.25em 0.375em; /* 1 */\n}/**\n * Change the inconsistent appearance in all browsers (opinionated).\n */\n:where(select) {\n  appearance: none;\n  background: url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E\") no-repeat right center / 1em;\n  border-radius: 0;\n  padding-right: 1em;\n}/**\n * Remove the border and padding in all browsers (opinionated).\n */\n:where([type=\"color\" i], [type=\"range\" i]) {\n  border-width: 0;\n  padding: 0;\n}\n"
  },
  {
    "path": "test/import-sanitize-forms.css",
    "content": "@import \"sanitize/forms\";\n"
  },
  {
    "path": "test/import-sanitize-forms.expect.css",
    "content": "/* Document\n * ========================================================================== *//**\n * 1. Add border box sizing in all browsers (opinionated).\n * 2. Backgrounds do not repeat by default (opinionated).\n */\n*,\n::before,\n::after {\n  box-sizing: border-box; /* 1 */\n}/**\n * 1. Add text decoration inheritance in all browsers (opinionated).\n * 2. Add vertical alignment inheritance in all browsers (opinionated).\n */\n::before,\n::after {\n  text-decoration: inherit; /* 1 */\n  vertical-align: inherit; /* 2 */\n}/**\n * 1. Use the default cursor in all browsers (opinionated).\n * 2. Change the line height in all browsers (opinionated).\n * 3. Breaks words to prevent overflow in all browsers (opinionated).\n * 4. Use a 4-space tab width in all browsers (opinionated).\n * 5. Remove the grey highlight on links in iOS (opinionated).\n * 6. Prevent adjustments of font size after orientation changes in iOS.\n */\n:where(:root) {\n  cursor: default; /* 1 */\n  line-height: 1.5; /* 2 */\n  overflow-wrap: break-word; /* 3 */\n  -moz-tab-size: 4; /* 4 */\n  tab-size: 4; /* 4 */\n  -webkit-tap-highlight-color: transparent; /* 5 */\n  -webkit-text-size-adjust: 100%; /* 6 */\n}/* Sections\n * ========================================================================== *//**\n * Remove the margin in all browsers (opinionated).\n */\n:where(body) {\n  margin: 0;\n}/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n:where(h1) {\n  font-size: 2em;\n  margin: 0.67em 0;\n}/* Grouping content\n * ========================================================================== *//**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin: 0;\n}/**\n * 1. Correct the inheritance of border color in Firefox.\n * 2. Add the correct box sizing in Firefox.\n */\n:where(hr) {\n  color: inherit; /* 1 */\n  height: 0; /* 2 */\n}/**\n * Remove the list style on navigation lists in all browsers (opinionated).\n */\n:where(nav) :where(ol, ul) {\n  list-style-type: none;\n  padding: 0;\n}/**\n * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).\n */\n:where(nav li)::before {\n  content: \"\\200B\";\n  float: left;\n}/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n * 3. Prevent overflow of the container in all browsers (opinionated).\n */\n:where(pre) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n  overflow: auto; /* 3 */\n}/* Text-level semantics\n * ========================================================================== *//**\n * Add the correct text decoration in Safari.\n */\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n:where(b, strong) {\n  font-weight: bolder;\n}/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n:where(code, kbd, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}/**\n * Add the correct font size in all browsers.\n */\n:where(small) {\n  font-size: 80%;\n}/* Embedded content\n * ========================================================================== *//*\n * Change the alignment on media elements in all browsers (opinionated).\n */\n:where(audio, canvas, iframe, img, svg, video) {\n  vertical-align: middle;\n}/**\n * Remove the border on iframes in all browsers (opinionated).\n */\n:where(iframe) {\n  border-style: none;\n}/**\n * Change the fill color to match the text color in all browsers (opinionated).\n */\n:where(svg:not([fill])) {\n  fill: currentColor;\n}/* Tabular data\n * ========================================================================== *//**\n * 1. Collapse border spacing in all browsers (opinionated).\n * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.\n * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n:where(table) {\n  border-collapse: collapse; /* 1 */\n  border-color: inherit; /* 2 */\n  text-indent: 0; /* 3 */\n}/* Forms\n * ========================================================================== *//**\n * Remove the margin on controls in Safari.\n */\n:where(button, input, select) {\n  margin: 0;\n}/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n:where(button, [type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i]) {\n  -webkit-appearance: button;\n}/**\n * Change the inconsistent appearance in all browsers (opinionated).\n */\n:where(fieldset) {\n  border: 1px solid #a0a0a0;\n}/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n:where(progress) {\n  vertical-align: baseline;\n}/**\n * 1. Remove the margin in Firefox and Safari.\n * 3. Change the resize direction in all browsers (opinionated).\n */\n:where(textarea) {\n  margin: 0; /* 1 */\n  resize: vertical; /* 3 */\n}/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n:where([type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}/* Interactive\n * ========================================================================== *//*\n * Add the correct styles in Safari.\n */\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n:where(dialog:not([open])) {\n  display: none;\n}/*\n * Add the correct display in Safari.\n */\n:where(details > summary:first-of-type) {\n  display: list-item;\n}/* Accessibility\n * ========================================================================== *//**\n * Change the cursor on busy elements in all browsers (opinionated).\n */\n:where([aria-busy=\"true\" i]) {\n  cursor: progress;\n}/*\n * Change the cursor on control elements in all browsers (opinionated).\n */\n:where([aria-controls]) {\n  cursor: pointer;\n}/*\n * Change the cursor on disabled, not-editable, or otherwise\n * inoperable elements in all browsers (opinionated).\n */\n:where([aria-disabled=\"true\" i], [disabled]) {\n  cursor: not-allowed;\n}/*\n * Change the display on visually hidden accessible elements\n * in all browsers (opinionated).\n */\n:where([aria-hidden=\"false\" i][hidden]) {\n  display: initial;\n}\n:where([aria-hidden=\"false\" i][hidden]:not(:focus)) {\n  clip: rect(0, 0, 0, 0);\n  position: absolute;\n}/**\n * 1. Change the inconsistent appearance in all browsers (opinionated).\n * 2. Add typography inheritance in all browsers (opinionated).\n */\n:where(button, input, select, textarea) {\n  background-color: transparent; /* 1 */\n  border: 1px solid WindowFrame; /* 1 */\n  color: inherit; /* 1 */\n  font: inherit; /* 2 */\n  letter-spacing: inherit; /* 2 */\n  padding: 0.25em 0.375em; /* 1 */\n}/**\n * Change the inconsistent appearance in all browsers (opinionated).\n */\n:where(select) {\n  appearance: none;\n  background: url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E\") no-repeat right center / 1em;\n  border-radius: 0;\n  padding-right: 1em;\n}/**\n * Remove the border and padding in all browsers (opinionated).\n */\n:where([type=\"color\" i], [type=\"range\" i]) {\n  border-width: 0;\n  padding: 0;\n}\n"
  },
  {
    "path": "test/import-sanitize.css",
    "content": "@import \"sanitize\";\n\nbody {\n\tfont-family: sans-serif;\n}\n"
  },
  {
    "path": "test/normalize.expect.css",
    "content": "/* Document\n * ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\n:where(html) {\n  line-height: 1.15; /* 1 */\n  -webkit-text-size-adjust: 100%; /* 2 */\n  text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n * ========================================================================== */\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n\n:where(h1) {\n  font-size: 2em;\n  margin-block-end: 0.67em;\n  margin-block-start: 0.67em;\n}\n\n/* Grouping content\n * ========================================================================== */\n\n/**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin-block-end: 0;\n  margin-block-start: 0;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Correct the inheritance of border color in Firefox.\n */\n\n:where(hr) {\n  box-sizing: content-box; /* 1 */\n  color: inherit; /* 2 */\n  height: 0; /* 1 */\n}\n\n/* Text-level semantics\n * ========================================================================== */\n\n/**\n * Add the correct text decoration in Safari.\n */\n\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\n:where(b, strong) {\n  font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\n:where(code, kbd, pre, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\n:where(small) {\n  font-size: 80%;\n}\n\n/* Tabular data\n * ========================================================================== */\n\n/**\n * 1. Correct table border color in Chrome, Edge, and Safari.\n * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n\n:where(table) {\n  border-color: currentColor; /* 1 */\n  text-indent: 0; /* 2 */\n}\n\n/* Forms\n * ========================================================================== */\n\n/**\n * Remove the margin on controls in Safari.\n */\n\n:where(button, input, select) {\n  margin: 0;\n}\n\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n\n:where(button) {\n  text-transform: none;\n}\n\n/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i])) {\n  -webkit-appearance: button;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n\n:where(progress) {\n  vertical-align: baseline;\n}\n\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n\n:where(select) {\n  text-transform: none;\n}\n\n/**\n * Remove the margin in Firefox and Safari.\n */\n\n:where(textarea) {\n  margin: 0;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n:where(input[type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}\n\n/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}\n\n/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}\n\n/**\n * Remove the inner border and padding of focus outlines in Firefox.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}\n\n/**\n * Restore the focus outline styles unset by the previous rule in Firefox.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n\n/**\n * Remove the additional :invalid styles in Firefox.\n */\n\n:where(:-moz-ui-invalid) {\n  box-shadow: none;\n}\n\n/* Interactive\n * ========================================================================== */\n\n/*\n * Add the correct styles in Safari.\n */\n\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n\n:where(dialog:not([open])) {\n  display: none;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\n:where(summary) {\n  display: list-item;\n}\n\nbody {\n\tfont-family: sans-serif;\n}\n"
  },
  {
    "path": "test/postcss-import.expect.css",
    "content": "/* Document\n * ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\n:where(html) {\n  line-height: 1.15; /* 1 */\n  -webkit-text-size-adjust: 100%; /* 2 */\n  text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n * ========================================================================== */\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n\n:where(h1) {\n  font-size: 2em;\n  margin-block-end: 0.67em;\n  margin-block-start: 0.67em;\n}\n\n/* Grouping content\n * ========================================================================== */\n\n/**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin-block-end: 0;\n  margin-block-start: 0;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Correct the inheritance of border color in Firefox.\n */\n\n:where(hr) {\n  box-sizing: content-box; /* 1 */\n  color: inherit; /* 2 */\n  height: 0; /* 1 */\n}\n\n/* Text-level semantics\n * ========================================================================== */\n\n/**\n * Add the correct text decoration in Safari.\n */\n\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\n:where(b, strong) {\n  font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\n:where(code, kbd, pre, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\n:where(small) {\n  font-size: 80%;\n}\n\n/* Tabular data\n * ========================================================================== */\n\n/**\n * 1. Correct table border color in Chrome, Edge, and Safari.\n * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n\n:where(table) {\n  border-color: currentColor; /* 1 */\n  text-indent: 0; /* 2 */\n}\n\n/* Forms\n * ========================================================================== */\n\n/**\n * Remove the margin on controls in Safari.\n */\n\n:where(button, input, select) {\n  margin: 0;\n}\n\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n\n:where(button) {\n  text-transform: none;\n}\n\n/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i])) {\n  -webkit-appearance: button;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n\n:where(progress) {\n  vertical-align: baseline;\n}\n\n/**\n * Remove the inheritance of text transform in Firefox.\n */\n\n:where(select) {\n  text-transform: none;\n}\n\n/**\n * Remove the margin in Firefox and Safari.\n */\n\n:where(textarea) {\n  margin: 0;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n:where(input[type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}\n\n/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}\n\n/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}\n\n/**\n * Remove the inner border and padding of focus outlines in Firefox.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}\n\n/**\n * Restore the focus outline styles unset by the previous rule in Firefox.\n */\n\n:where(button, input:is([type=\"button\" i], [type=\"color\" i], [type=\"reset\" i], [type=\"submit\" i]))::-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n\n/**\n * Remove the additional :invalid styles in Firefox.\n */\n\n:where(:-moz-ui-invalid) {\n  box-shadow: none;\n}\n\n/* Interactive\n * ========================================================================== */\n\n/*\n * Add the correct styles in Safari.\n */\n\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n\n:where(dialog:not([open])) {\n  display: none;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\n:where(summary) {\n  display: list-item;\n}\n\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIm5vcm1hbGl6ZS5jc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7K0VBQytFOztBQUUvRTs7O0VBR0U7O0FBRUY7RUFDRSxpQkFBaUIsRUFBRSxNQUFNO0VBQ3pCLDhCQUE4QixFQUFFLE1BQU07RUFDdEMsc0JBQXNCLEVBQUUsTUFBTTtBQUNoQzs7QUFFQTsrRUFDK0U7O0FBRS9FOzs7RUFHRTs7QUFFRjtFQUNFLGNBQWM7RUFDZCx3QkFBd0I7RUFDeEIsMEJBQTBCO0FBQzVCOztBQUVBOytFQUMrRTs7QUFFL0U7O0VBRUU7O0FBRUY7RUFDRSxtQkFBbUI7RUFDbkIscUJBQXFCO0FBQ3ZCOztBQUVBOzs7RUFHRTs7QUFFRjtFQUNFLHVCQUF1QixFQUFFLE1BQU07RUFDL0IsY0FBYyxFQUFFLE1BQU07RUFDdEIsU0FBUyxFQUFFLE1BQU07QUFDbkI7O0FBRUE7K0VBQytFOztBQUUvRTs7RUFFRTs7QUFFRjtFQUNFLDBCQUEwQjtFQUMxQixpQ0FBaUM7QUFDbkM7O0FBRUE7O0VBRUU7O0FBRUY7RUFDRSxtQkFBbUI7QUFDckI7O0FBRUE7OztFQUdFOztBQUVGO0VBQ0UsaUNBQWlDLEVBQUUsTUFBTTtFQUN6QyxjQUFjLEVBQUUsTUFBTTtBQUN4Qjs7QUFFQTs7RUFFRTs7QUFFRjtFQUNFLGNBQWM7QUFDaEI7O0FBRUE7K0VBQytFOztBQUUvRTs7O0VBR0U7O0FBRUY7RUFDRSwwQkFBMEIsRUFBRSxNQUFNO0VBQ2xDLGNBQWMsRUFBRSxNQUFNO0FBQ3hCOztBQUVBOytFQUMrRTs7QUFFL0U7O0VBRUU7O0FBRUY7RUFDRSxTQUFTO0FBQ1g7O0FBRUE7O0VBRUU7O0FBRUY7RUFDRSxvQkFBb0I7QUFDdEI7O0FBRUE7O0VBRUU7O0FBRUY7RUFDRSwwQkFBMEI7QUFDNUI7O0FBRUE7O0VBRUU7O0FBRUY7RUFDRSx3QkFBd0I7QUFDMUI7O0FBRUE7O0VBRUU7O0FBRUY7RUFDRSxvQkFBb0I7QUFDdEI7O0FBRUE7O0VBRUU7O0FBRUY7RUFDRSxTQUFTO0FBQ1g7O0FBRUE7OztFQUdFOztBQUVGO0VBQ0UsNkJBQTZCLEVBQUUsTUFBTTtFQUNyQyxvQkFBb0IsRUFBRSxNQUFNO0FBQzlCOztBQUVBOztFQUVFOztBQUVGOztFQUVFLFlBQVk7QUFDZDs7QUFFQTs7RUFFRTs7QUFFRjtFQUNFLGNBQWM7RUFDZCxhQUFhO0FBQ2Y7O0FBRUE7O0VBRUU7O0FBRUY7RUFDRSx3QkFBd0I7QUFDMUI7O0FBRUE7OztFQUdFOztBQUVGO0VBQ0UsMEJBQTBCLEVBQUUsTUFBTTtFQUNsQyxhQUFhLEVBQUUsTUFBTTtBQUN2Qjs7QUFFQTs7RUFFRTs7QUFFRjtFQUNFLGtCQUFrQjtFQUNsQixVQUFVO0FBQ1o7O0FBRUE7O0VBRUU7O0FBRUY7RUFDRSw4QkFBOEI7QUFDaEM7O0FBRUE7O0VBRUU7O0FBRUY7RUFDRSxnQkFBZ0I7QUFDbEI7O0FBRUE7K0VBQytFOztBQUUvRTs7RUFFRTs7QUFFRjtFQUNFLHVCQUF1QjtFQUN2QixhQUFhO0VBQ2IsWUFBWTtFQUNaLHdCQUF3QjtFQUN4QixtQkFBbUI7RUFDbkIsT0FBTztFQUNQLFlBQVk7RUFDWixZQUFZO0VBQ1osa0JBQWtCO0VBQ2xCLFFBQVE7RUFDUix1QkFBdUI7RUFDdkIsa0JBQWtCO0FBQ3BCOztBQUVBO0VBQ0UsYUFBYTtBQUNmOztBQUVBOztFQUVFOztBQUVGO0VBQ0Usa0JBQWtCO0FBQ3BCIiwiZmlsZSI6Im5vcm1hbGl6ZS5jc3MiLCJzb3VyY2VzQ29udGVudCI6WyIvKiBEb2N1bWVudFxuICogPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0gKi9cblxuLyoqXG4gKiAxLiBDb3JyZWN0IHRoZSBsaW5lIGhlaWdodCBpbiBhbGwgYnJvd3NlcnMuXG4gKiAyLiBQcmV2ZW50IGFkanVzdG1lbnRzIG9mIGZvbnQgc2l6ZSBhZnRlciBvcmllbnRhdGlvbiBjaGFuZ2VzIGluIGlPUy5cbiAqL1xuXG46d2hlcmUoaHRtbCkge1xuICBsaW5lLWhlaWdodDogMS4xNTsgLyogMSAqL1xuICAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC8qIDIgKi9cbiAgdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLyogMiAqL1xufVxuXG4vKiBTZWN0aW9uc1xuICogPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0gKi9cblxuLyoqXG4gKiBDb3JyZWN0IHRoZSBmb250IHNpemUgYW5kIG1hcmdpbiBvbiBgaDFgIGVsZW1lbnRzIHdpdGhpbiBgc2VjdGlvbmAgYW5kXG4gKiBgYXJ0aWNsZWAgY29udGV4dHMgaW4gQ2hyb21lLCBFZGdlLCBGaXJlZm94LCBhbmQgU2FmYXJpLlxuICovXG5cbjp3aGVyZShoMSkge1xuICBmb250LXNpemU6IDJlbTtcbiAgbWFyZ2luLWJsb2NrLWVuZDogMC42N2VtO1xuICBtYXJnaW4tYmxvY2stc3RhcnQ6IDAuNjdlbTtcbn1cblxuLyogR3JvdXBpbmcgY29udGVudFxuICogPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0gKi9cblxuLyoqXG4gKiBSZW1vdmUgdGhlIG1hcmdpbiBvbiBuZXN0ZWQgbGlzdHMgaW4gQ2hyb21lLCBFZGdlLCBhbmQgU2FmYXJpLlxuICovXG5cbjp3aGVyZShkbCwgb2wsIHVsKSA6d2hlcmUoZGwsIG9sLCB1bCkge1xuICBtYXJnaW4tYmxvY2stZW5kOiAwO1xuICBtYXJnaW4tYmxvY2stc3RhcnQ6IDA7XG59XG5cbi8qKlxuICogMS4gQWRkIHRoZSBjb3JyZWN0IGJveCBzaXppbmcgaW4gRmlyZWZveC5cbiAqIDIuIENvcnJlY3QgdGhlIGluaGVyaXRhbmNlIG9mIGJvcmRlciBjb2xvciBpbiBGaXJlZm94LlxuICovXG5cbjp3aGVyZShocikge1xuICBib3gtc2l6aW5nOiBjb250ZW50LWJveDsgLyogMSAqL1xuICBjb2xvcjogaW5oZXJpdDsgLyogMiAqL1xuICBoZWlnaHQ6IDA7IC8qIDEgKi9cbn1cblxuLyogVGV4dC1sZXZlbCBzZW1hbnRpY3NcbiAqID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09ICovXG5cbi8qKlxuICogQWRkIHRoZSBjb3JyZWN0IHRleHQgZGVjb3JhdGlvbiBpbiBTYWZhcmkuXG4gKi9cblxuOndoZXJlKGFiYnJbdGl0bGVdKSB7XG4gIHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lO1xuICB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZSBkb3R0ZWQ7XG59XG5cbi8qKlxuICogQWRkIHRoZSBjb3JyZWN0IGZvbnQgd2VpZ2h0IGluIENocm9tZSwgRWRnZSwgYW5kIFNhZmFyaS5cbiAqL1xuXG46d2hlcmUoYiwgc3Ryb25nKSB7XG4gIGZvbnQtd2VpZ2h0OiBib2xkZXI7XG59XG5cbi8qKlxuICogMS4gQ29ycmVjdCB0aGUgaW5oZXJpdGFuY2UgYW5kIHNjYWxpbmcgb2YgZm9udCBzaXplIGluIGFsbCBicm93c2Vycy5cbiAqIDIuIENvcnJlY3QgdGhlIG9kZCBgZW1gIGZvbnQgc2l6aW5nIGluIGFsbCBicm93c2Vycy5cbiAqL1xuXG46d2hlcmUoY29kZSwga2JkLCBwcmUsIHNhbXApIHtcbiAgZm9udC1mYW1pbHk6IG1vbm9zcGFjZSwgbW9ub3NwYWNlOyAvKiAxICovXG4gIGZvbnQtc2l6ZTogMWVtOyAvKiAyICovXG59XG5cbi8qKlxuICogQWRkIHRoZSBjb3JyZWN0IGZvbnQgc2l6ZSBpbiBhbGwgYnJvd3NlcnMuXG4gKi9cblxuOndoZXJlKHNtYWxsKSB7XG4gIGZvbnQtc2l6ZTogODAlO1xufVxuXG4vKiBUYWJ1bGFyIGRhdGFcbiAqID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09ICovXG5cbi8qKlxuICogMS4gQ29ycmVjdCB0YWJsZSBib3JkZXIgY29sb3IgaW4gQ2hyb21lLCBFZGdlLCBhbmQgU2FmYXJpLlxuICogMi4gUmVtb3ZlIHRleHQgaW5kZW50YXRpb24gZnJvbSB0YWJsZSBjb250ZW50cyBpbiBDaHJvbWUsIEVkZ2UsIGFuZCBTYWZhcmkuXG4gKi9cblxuOndoZXJlKHRhYmxlKSB7XG4gIGJvcmRlci1jb2xvcjogY3VycmVudENvbG9yOyAvKiAxICovXG4gIHRleHQtaW5kZW50OiAwOyAvKiAyICovXG59XG5cbi8qIEZvcm1zXG4gKiA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PSAqL1xuXG4vKipcbiAqIFJlbW92ZSB0aGUgbWFyZ2luIG9uIGNvbnRyb2xzIGluIFNhZmFyaS5cbiAqL1xuXG46d2hlcmUoYnV0dG9uLCBpbnB1dCwgc2VsZWN0KSB7XG4gIG1hcmdpbjogMDtcbn1cblxuLyoqXG4gKiBSZW1vdmUgdGhlIGluaGVyaXRhbmNlIG9mIHRleHQgdHJhbnNmb3JtIGluIEZpcmVmb3guXG4gKi9cblxuOndoZXJlKGJ1dHRvbikge1xuICB0ZXh0LXRyYW5zZm9ybTogbm9uZTtcbn1cblxuLyoqXG4gKiBDb3JyZWN0IHRoZSBpbmFiaWxpdHkgdG8gc3R5bGUgYnV0dG9ucyBpbiBpT1MgYW5kIFNhZmFyaS5cbiAqL1xuXG46d2hlcmUoYnV0dG9uLCBpbnB1dDppcyhbdHlwZT1cImJ1dHRvblwiIGldLCBbdHlwZT1cInJlc2V0XCIgaV0sIFt0eXBlPVwic3VibWl0XCIgaV0pKSB7XG4gIC13ZWJraXQtYXBwZWFyYW5jZTogYnV0dG9uO1xufVxuXG4vKipcbiAqIEFkZCB0aGUgY29ycmVjdCB2ZXJ0aWNhbCBhbGlnbm1lbnQgaW4gQ2hyb21lLCBFZGdlLCBhbmQgRmlyZWZveC5cbiAqL1xuXG46d2hlcmUocHJvZ3Jlc3MpIHtcbiAgdmVydGljYWwtYWxpZ246IGJhc2VsaW5lO1xufVxuXG4vKipcbiAqIFJlbW92ZSB0aGUgaW5oZXJpdGFuY2Ugb2YgdGV4dCB0cmFuc2Zvcm0gaW4gRmlyZWZveC5cbiAqL1xuXG46d2hlcmUoc2VsZWN0KSB7XG4gIHRleHQtdHJhbnNmb3JtOiBub25lO1xufVxuXG4vKipcbiAqIFJlbW92ZSB0aGUgbWFyZ2luIGluIEZpcmVmb3ggYW5kIFNhZmFyaS5cbiAqL1xuXG46d2hlcmUodGV4dGFyZWEpIHtcbiAgbWFyZ2luOiAwO1xufVxuXG4vKipcbiAqIDEuIENvcnJlY3QgdGhlIG9kZCBhcHBlYXJhbmNlIGluIENocm9tZSwgRWRnZSwgYW5kIFNhZmFyaS5cbiAqIDIuIENvcnJlY3QgdGhlIG91dGxpbmUgc3R5bGUgaW4gU2FmYXJpLlxuICovXG5cbjp3aGVyZShpbnB1dFt0eXBlPVwic2VhcmNoXCIgaV0pIHtcbiAgLXdlYmtpdC1hcHBlYXJhbmNlOiB0ZXh0ZmllbGQ7IC8qIDEgKi9cbiAgb3V0bGluZS1vZmZzZXQ6IC0ycHg7IC8qIDIgKi9cbn1cblxuLyoqXG4gKiBDb3JyZWN0IHRoZSBjdXJzb3Igc3R5bGUgb2YgaW5jcmVtZW50IGFuZCBkZWNyZW1lbnQgYnV0dG9ucyBpbiBTYWZhcmkuXG4gKi9cblxuOjotd2Via2l0LWlubmVyLXNwaW4tYnV0dG9uLFxuOjotd2Via2l0LW91dGVyLXNwaW4tYnV0dG9uIHtcbiAgaGVpZ2h0OiBhdXRvO1xufVxuXG4vKipcbiAqIENvcnJlY3QgdGhlIHRleHQgc3R5bGUgb2YgcGxhY2Vob2xkZXJzIGluIENocm9tZSwgRWRnZSwgYW5kIFNhZmFyaS5cbiAqL1xuXG46Oi13ZWJraXQtaW5wdXQtcGxhY2Vob2xkZXIge1xuICBjb2xvcjogaW5oZXJpdDtcbiAgb3BhY2l0eTogMC41NDtcbn1cblxuLyoqXG4gKiBSZW1vdmUgdGhlIGlubmVyIHBhZGRpbmcgaW4gQ2hyb21lLCBFZGdlLCBhbmQgU2FmYXJpIG9uIG1hY09TLlxuICovXG5cbjo6LXdlYmtpdC1zZWFyY2gtZGVjb3JhdGlvbiB7XG4gIC13ZWJraXQtYXBwZWFyYW5jZTogbm9uZTtcbn1cblxuLyoqXG4gKiAxLiBDb3JyZWN0IHRoZSBpbmFiaWxpdHkgdG8gc3R5bGUgdXBsb2FkIGJ1dHRvbnMgaW4gaU9TIGFuZCBTYWZhcmkuXG4gKiAyLiBDaGFuZ2UgZm9udCBwcm9wZXJ0aWVzIHRvIGBpbmhlcml0YCBpbiBTYWZhcmkuXG4gKi9cblxuOjotd2Via2l0LWZpbGUtdXBsb2FkLWJ1dHRvbiB7XG4gIC13ZWJraXQtYXBwZWFyYW5jZTogYnV0dG9uOyAvKiAxICovXG4gIGZvbnQ6IGluaGVyaXQ7IC8qIDIgKi9cbn1cblxuLyoqXG4gKiBSZW1vdmUgdGhlIGlubmVyIGJvcmRlciBhbmQgcGFkZGluZyBvZiBmb2N1cyBvdXRsaW5lcyBpbiBGaXJlZm94LlxuICovXG5cbjp3aGVyZShidXR0b24sIGlucHV0OmlzKFt0eXBlPVwiYnV0dG9uXCIgaV0sIFt0eXBlPVwiY29sb3JcIiBpXSwgW3R5cGU9XCJyZXNldFwiIGldLCBbdHlwZT1cInN1Ym1pdFwiIGldKSk6Oi1tb3otZm9jdXMtaW5uZXIge1xuICBib3JkZXItc3R5bGU6IG5vbmU7XG4gIHBhZGRpbmc6IDA7XG59XG5cbi8qKlxuICogUmVzdG9yZSB0aGUgZm9jdXMgb3V0bGluZSBzdHlsZXMgdW5zZXQgYnkgdGhlIHByZXZpb3VzIHJ1bGUgaW4gRmlyZWZveC5cbiAqL1xuXG46d2hlcmUoYnV0dG9uLCBpbnB1dDppcyhbdHlwZT1cImJ1dHRvblwiIGldLCBbdHlwZT1cImNvbG9yXCIgaV0sIFt0eXBlPVwicmVzZXRcIiBpXSwgW3R5cGU9XCJzdWJtaXRcIiBpXSkpOjotbW96LWZvY3VzcmluZyB7XG4gIG91dGxpbmU6IDFweCBkb3R0ZWQgQnV0dG9uVGV4dDtcbn1cblxuLyoqXG4gKiBSZW1vdmUgdGhlIGFkZGl0aW9uYWwgOmludmFsaWQgc3R5bGVzIGluIEZpcmVmb3guXG4gKi9cblxuOndoZXJlKDotbW96LXVpLWludmFsaWQpIHtcbiAgYm94LXNoYWRvdzogbm9uZTtcbn1cblxuLyogSW50ZXJhY3RpdmVcbiAqID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09ICovXG5cbi8qXG4gKiBBZGQgdGhlIGNvcnJlY3Qgc3R5bGVzIGluIFNhZmFyaS5cbiAqL1xuXG46d2hlcmUoZGlhbG9nKSB7XG4gIGJhY2tncm91bmQtY29sb3I6IHdoaXRlO1xuICBib3JkZXI6IHNvbGlkO1xuICBjb2xvcjogYmxhY2s7XG4gIGhlaWdodDogLW1vei1maXQtY29udGVudDtcbiAgaGVpZ2h0OiBmaXQtY29udGVudDtcbiAgbGVmdDogMDtcbiAgbWFyZ2luOiBhdXRvO1xuICBwYWRkaW5nOiAxZW07XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgcmlnaHQ6IDA7XG4gIHdpZHRoOiAtbW96LWZpdC1jb250ZW50O1xuICB3aWR0aDogZml0LWNvbnRlbnQ7XG59XG5cbjp3aGVyZShkaWFsb2c6bm90KFtvcGVuXSkpIHtcbiAgZGlzcGxheTogbm9uZTtcbn1cblxuLypcbiAqIEFkZCB0aGUgY29ycmVjdCBkaXNwbGF5IGluIGFsbCBicm93c2Vycy5cbiAqL1xuXG46d2hlcmUoc3VtbWFyeSkge1xuICBkaXNwbGF5OiBsaXN0LWl0ZW07XG59XG4iXX0= */\n\nbody {\n\tfont-family: sans-serif;\n}\n"
  },
  {
    "path": "test/sanitize.expect.css",
    "content": "/* Document\n * ========================================================================== */\n\n/**\n * 1. Add border box sizing in all browsers (opinionated).\n * 2. Backgrounds do not repeat by default (opinionated).\n */\n\n*,\n::before,\n::after {\n  box-sizing: border-box; /* 1 */\n}\n\n/**\n * 1. Add text decoration inheritance in all browsers (opinionated).\n * 2. Add vertical alignment inheritance in all browsers (opinionated).\n */\n\n::before,\n::after {\n  text-decoration: inherit; /* 1 */\n  vertical-align: inherit; /* 2 */\n}\n\n/**\n * 1. Use the default cursor in all browsers (opinionated).\n * 2. Change the line height in all browsers (opinionated).\n * 3. Breaks words to prevent overflow in all browsers (opinionated).\n * 4. Use a 4-space tab width in all browsers (opinionated).\n * 5. Remove the grey highlight on links in iOS (opinionated).\n * 6. Prevent adjustments of font size after orientation changes in iOS.\n */\n\n:where(:root) {\n  cursor: default; /* 1 */\n  line-height: 1.5; /* 2 */\n  overflow-wrap: break-word; /* 3 */\n  -moz-tab-size: 4; /* 4 */\n  tab-size: 4; /* 4 */\n  -webkit-tap-highlight-color: transparent; /* 5 */\n  -webkit-text-size-adjust: 100%; /* 6 */\n}\n\n/* Sections\n * ========================================================================== */\n\n/**\n * Remove the margin in all browsers (opinionated).\n */\n\n:where(body) {\n  margin: 0;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Edge, Firefox, and Safari.\n */\n\n:where(h1) {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n/* Grouping content\n * ========================================================================== */\n\n/**\n * Remove the margin on nested lists in Chrome, Edge, and Safari.\n */\n\n:where(dl, ol, ul) :where(dl, ol, ul) {\n  margin: 0;\n}\n\n/**\n * 1. Correct the inheritance of border color in Firefox.\n * 2. Add the correct box sizing in Firefox.\n */\n\n:where(hr) {\n  color: inherit; /* 1 */\n  height: 0; /* 2 */\n}\n\n/**\n * Remove the list style on navigation lists in all browsers (opinionated).\n */\n\n:where(nav) :where(ol, ul) {\n  list-style-type: none;\n  padding: 0;\n}\n\n/**\n * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).\n */\n\n:where(nav li)::before {\n  content: \"\\200B\";\n  float: left;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n * 3. Prevent overflow of the container in all browsers (opinionated).\n */\n\n:where(pre) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n  overflow: auto; /* 3 */\n}\n\n/* Text-level semantics\n * ========================================================================== */\n\n/**\n * Add the correct text decoration in Safari.\n */\n\n:where(abbr[title]) {\n  text-decoration: underline;\n  text-decoration: underline dotted;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\n:where(b, strong) {\n  font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\n:where(code, kbd, samp) {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\n:where(small) {\n  font-size: 80%;\n}\n\n/* Embedded content\n * ========================================================================== */\n\n/*\n * Change the alignment on media elements in all browsers (opinionated).\n */\n\n:where(audio, canvas, iframe, img, svg, video) {\n  vertical-align: middle;\n}\n\n/**\n * Remove the border on iframes in all browsers (opinionated).\n */\n\n:where(iframe) {\n  border-style: none;\n}\n\n/**\n * Change the fill color to match the text color in all browsers (opinionated).\n */\n\n:where(svg:not([fill])) {\n  fill: currentColor;\n}\n\n/* Tabular data\n * ========================================================================== */\n\n/**\n * 1. Collapse border spacing in all browsers (opinionated).\n * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.\n * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.\n */\n\n:where(table) {\n  border-collapse: collapse; /* 1 */\n  border-color: inherit; /* 2 */\n  text-indent: 0; /* 3 */\n}\n\n/* Forms\n * ========================================================================== */\n\n/**\n * Remove the margin on controls in Safari.\n */\n\n:where(button, input, select) {\n  margin: 0;\n}\n\n/**\n * Correct the inability to style buttons in iOS and Safari.\n */\n\n:where(button, [type=\"button\" i], [type=\"reset\" i], [type=\"submit\" i]) {\n  -webkit-appearance: button;\n}\n\n/**\n * Change the inconsistent appearance in all browsers (opinionated).\n */\n\n:where(fieldset) {\n  border: 1px solid #a0a0a0;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Edge, and Firefox.\n */\n\n:where(progress) {\n  vertical-align: baseline;\n}\n\n/**\n * 1. Remove the margin in Firefox and Safari.\n * 3. Change the resize direction in all browsers (opinionated).\n */\n\n:where(textarea) {\n  margin: 0; /* 1 */\n  resize: vertical; /* 3 */\n}\n\n/**\n * 1. Correct the odd appearance in Chrome, Edge, and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n:where([type=\"search\" i]) {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n  height: auto;\n}\n\n/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}\n\n/**\n * Remove the inner padding in Chrome, Edge, and Safari on macOS.\n */\n\n::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style upload buttons in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}\n\n/* Interactive\n * ========================================================================== */\n\n/*\n * Add the correct styles in Safari.\n */\n\n:where(dialog) {\n  background-color: white;\n  border: solid;\n  color: black;\n  height: -moz-fit-content;\n  height: fit-content;\n  left: 0;\n  margin: auto;\n  padding: 1em;\n  position: absolute;\n  right: 0;\n  width: -moz-fit-content;\n  width: fit-content;\n}\n\n:where(dialog:not([open])) {\n  display: none;\n}\n\n/*\n * Add the correct display in Safari.\n */\n\n:where(details > summary:first-of-type) {\n  display: list-item;\n}\n\n/* Accessibility\n * ========================================================================== */\n\n/**\n * Change the cursor on busy elements in all browsers (opinionated).\n */\n\n:where([aria-busy=\"true\" i]) {\n  cursor: progress;\n}\n\n/*\n * Change the cursor on control elements in all browsers (opinionated).\n */\n\n:where([aria-controls]) {\n  cursor: pointer;\n}\n\n/*\n * Change the cursor on disabled, not-editable, or otherwise\n * inoperable elements in all browsers (opinionated).\n */\n\n:where([aria-disabled=\"true\" i], [disabled]) {\n  cursor: not-allowed;\n}\n\n/*\n * Change the display on visually hidden accessible elements\n * in all browsers (opinionated).\n */\n\n:where([aria-hidden=\"false\" i][hidden]) {\n  display: initial;\n}\n\n:where([aria-hidden=\"false\" i][hidden]:not(:focus)) {\n  clip: rect(0, 0, 0, 0);\n  position: absolute;\n}\n\nbody {\n\tfont-family: sans-serif;\n}\n"
  }
]