style Dashboard

This commit is contained in:
Lieu Le
2019-09-13 11:27:52 +07:00
parent 558fb07261
commit 07322c9084
17151 changed files with 1686347 additions and 103 deletions

8
node_modules/caniuse-db/.editorconfig generated vendored Normal file
View File

@@ -0,0 +1,8 @@
root = true
[*.json]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = false

1
node_modules/caniuse-db/.github/FUNDING.yml generated vendored Normal file
View File

@@ -0,0 +1 @@
patreon: caniuse

8
node_modules/caniuse-db/.npmignore generated vendored Normal file
View File

@@ -0,0 +1,8 @@
.gitignore
.gitattributes
.travis.yml
validator/
Contributing.md
sample-data.json

103
node_modules/caniuse-db/CONTRIBUTING.md generated vendored Normal file
View File

@@ -0,0 +1,103 @@
# Contributing to the caniuse data
## Filing issues
Issues can be filed on existing **caniuse support data**, **site functionality** or to make new **support data suggestions**. Support data suggestions can be voted on with `+1` comments and can be [viewed in order](https://caniuse.com/issue-list) of votes.
## Caniuse data
The `features-json` directory includes JSON files for every feature found on [the caniuse.com website](https://caniuse.com/).
Maintaining these files on GitHub allows anyone to update or contribute to the support data on the site.
**Note:** when submitting a patch, dont modify the minified `data.json` file in the root — that is done automatically. Only modify the contents of the `features-json` directory.
### How it works
The data on the site is stored in a database.
This data is periodically exported to the JSON files on GitHub.
Once a change or new file here has been approved, it is integrated back into the database
and the subsequent export files should be the same as the imported ones.
Not too confusing, I hope. :)
### Supported changes
Currently the following feature information can be modified:
* **title** — Feature name (used for the title of the table)
* **description** — Brief description of feature
* **spec** — Spec URL
* **status** — Spec status, one of the following:
* `ls` - WHATWG Living Standard
* `rec` - W3C Recommendation
* `pr` - W3C Proposed Recommendation
* `cr` - W3C Candidate Recommendation
* `wd` - W3C Working Draft
* `other` - Non-W3C, but reputable
* `unoff` - Unofficial, Editor's Draft or W3C "Note"
* **links** — Array of "link" objects consisting of URL and short description of link
* **bugs** — Array of "bug" objects consisting of a bug description
* **categories** — Array of categories, any of the following: (Note that some of these categories are put into a parent category on the caniuse site)
* `HTML5`
* `CSS`
* `CSS2`
* `CSS3`
* `SVG`
* `PNG`
* `JS API`
* `Canvas`
* `DOM`
* `Other`
* `JS`
* `Security`
* **stats** — The collection of support data for a given set of browsers/versions. Only the support value strings can be modified; additional versions *cannot be added*. Values are space-separated characters with these meanings, and must answer the question "*Can I use* the feature by default?":
* `y` - (**Y**)es, supported by default
* `a` - (**A**)lmost supported (aka Partial support)
* `n` - (**N**)o support, or disabled by default
* `p` - No support, but has (**P**)olyfill
* `u` - Support (**u**)nknown
* `x` - Requires prefi(**x**) to work
* `d` - (**D**)isabled by default (need to enable flag or something)
* `#n` - Where n is a number, starting with 1, corresponds to the **notes_by_num** note. For example: `"42":"y #1"` means version 42 is supported by default and see note 1.
* **notes** — Notes on feature support, often to explain what partial support refers to
* **notes_by_num** - Map of numbers corresponding to notes. Used in conjunction with the #n notation under **stats**. Each key should be a number (no hash), the value is the related note. For example: `"1": "Foo"`
* **ucprefix** — Prefix should start with an uppercase letter
* **parent** — ID of parent feature
* **keywords** — Comma separated words that will match the feature in a search
* **ie_id** — Comma separated IDs used by [developer.microsoft.com](https://developer.microsoft.com/en-us/microsoft-edge/platform/status/) - Each ID is the string in the feature's URL
* **chrome_id** — Comma separated IDs used by [chromestatus.com](https://www.chromestatus.com/) - Each ID is the number in the feature's URL
* **firefox_id** - Comma separated IDs used by [platform-status.mozilla.org](https://platform-status.mozilla.org/) - Each ID is the filename (minus the `.md` extension suffix) of the relevant file in [the `/features/` directory of Mozilla's Platform Status project on GitHub](https://github.com/mozilla/platform-status/tree/master/features)
* **webkit_id** - Comma separated IDs used by [webkit.org/status/](https://webkit.org/status/) - Each ID is the title of the feature's box on the status webpage
* **shown** — Whether or not feature is ready to be shown on the site. This can be left as false if the support data or information for other fields is still being collected
### Adding a feature
To add a feature, simply add another JSON file, following the [example](/sample-data.json), to the `features-json` directory with the base file name as the feature ID (only alphanumeric characters and hyphens please).
New additions will always start out with `"shown": false` (regardless of the initial value set in the PR). This is so the data can undergo a certain level of verification to guarantee the correctness of information shown on the site. This verification happens *after* the pull request has already been accepted because it allows the data to automatically be updated with newly released browser versions when necessary so the pull request won't need to require manual updates during this period.
For the same reason, on some occasion pull requests for new features may be accepted at first, but then have the data be rejected later if it's decided that the data is for whatever reason inappropriate for caniuse (e.g. it's for some feature already widely supported by all browsers)
Good/preferred pull requests for new features meet the following criteria:
* Feature is on the higher end of the spectrum on the [Feature suggestion list](https://caniuse.com/issue-list/)
* Feature is *not* already widely supported (e.g. since IE6+, Firefox 2+, Chrome 1+ etc). This is because caniuse is intended to answer questions about mixed support, not to provide complete information on all web technologies.
* Feature is at least supported in one (possibly upcoming) browser.
* PR includes a link to the test case(s) used to test support (can be codepen, jsfiddle, etc)
* Support data was properly validated using either test cases or from information from reliable sources. If you don't know be sure to use `u` for unknown support, though it may be fine to make the more obvious extrapolations like really old browsers not supporting the latest APIs, etc.
* The more actual support information, the better (rather than most data simply being `u`nknown). https://www.browserstack.com and https://saucelabs.com are excellent tools for good cross-browser support testing. In order to keep caniuse useful, features won't be included on the site until almost all included browsers have actual support information. This does not however apply to older and lesser used browser versions.
### Unsupported changes
Currently it is not possible to:
* Add a new browser or browser version
* Add a test for any given feature (should also come later)
* Add any object properties not already defined above
* Modify the **usage\_perc\_y** or **usage\_perc\_a** values (these values are generated)
### Testing
Make sure you have NodeJS installed on your system.
Run
`npm run validate`
If something is wrong, it will throw an error.
Everything is ok otherwise.

396
node_modules/caniuse-db/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,396 @@
Attribution 4.0 International
=======================================================================
Creative Commons Corporation ("Creative Commons") is not a law firm and
does not provide legal services or legal advice. Distribution of
Creative Commons public licenses does not create a lawyer-client or
other relationship. Creative Commons makes its licenses and related
information available on an "as-is" basis. Creative Commons gives no
warranties regarding its licenses, any material licensed under their
terms and conditions, or any related information. Creative Commons
disclaims all liability for damages resulting from their use to the
fullest extent possible.
Using Creative Commons Public Licenses
Creative Commons public licenses provide a standard set of terms and
conditions that creators and other rights holders may use to share
original works of authorship and other material subject to copyright
and certain other rights specified in the public license below. The
following considerations are for informational purposes only, are not
exhaustive, and do not form part of our licenses.
Considerations for licensors: Our public licenses are
intended for use by those authorized to give the public
permission to use material in ways otherwise restricted by
copyright and certain other rights. Our licenses are
irrevocable. Licensors should read and understand the terms
and conditions of the license they choose before applying it.
Licensors should also secure all rights necessary before
applying our licenses so that the public can reuse the
material as expected. Licensors should clearly mark any
material not subject to the license. This includes other CC-
licensed material, or material used under an exception or
limitation to copyright. More considerations for licensors:
wiki.creativecommons.org/Considerations_for_licensors
Considerations for the public: By using one of our public
licenses, a licensor grants the public permission to use the
licensed material under specified terms and conditions. If
the licensor's permission is not necessary for any reason--for
example, because of any applicable exception or limitation to
copyright--then that use is not regulated by the license. Our
licenses grant only permissions under copyright and certain
other rights that a licensor has authority to grant. Use of
the licensed material may still be restricted for other
reasons, including because others have copyright or other
rights in the material. A licensor may make special requests,
such as asking that all changes be marked or described.
Although not required by our licenses, you are encouraged to
respect those requests where reasonable. More_considerations
for the public:
wiki.creativecommons.org/Considerations_for_licensees
=======================================================================
Creative Commons Attribution 4.0 International Public License
By exercising the Licensed Rights (defined below), You accept and agree
to be bound by the terms and conditions of this Creative Commons
Attribution 4.0 International Public License ("Public License"). To the
extent this Public License may be interpreted as a contract, You are
granted the Licensed Rights in consideration of Your acceptance of
these terms and conditions, and the Licensor grants You such rights in
consideration of benefits the Licensor receives from making the
Licensed Material available under these terms and conditions.
Section 1 -- Definitions.
a. Adapted Material means material subject to Copyright and Similar
Rights that is derived from or based upon the Licensed Material
and in which the Licensed Material is translated, altered,
arranged, transformed, or otherwise modified in a manner requiring
permission under the Copyright and Similar Rights held by the
Licensor. For purposes of this Public License, where the Licensed
Material is a musical work, performance, or sound recording,
Adapted Material is always produced where the Licensed Material is
synched in timed relation with a moving image.
b. Adapter's License means the license You apply to Your Copyright
and Similar Rights in Your contributions to Adapted Material in
accordance with the terms and conditions of this Public License.
c. Copyright and Similar Rights means copyright and/or similar rights
closely related to copyright including, without limitation,
performance, broadcast, sound recording, and Sui Generis Database
Rights, without regard to how the rights are labeled or
categorized. For purposes of this Public License, the rights
specified in Section 2(b)(1)-(2) are not Copyright and Similar
Rights.
d. Effective Technological Measures means those measures that, in the
absence of proper authority, may not be circumvented under laws
fulfilling obligations under Article 11 of the WIPO Copyright
Treaty adopted on December 20, 1996, and/or similar international
agreements.
e. Exceptions and Limitations means fair use, fair dealing, and/or
any other exception or limitation to Copyright and Similar Rights
that applies to Your use of the Licensed Material.
f. Licensed Material means the artistic or literary work, database,
or other material to which the Licensor applied this Public
License.
g. Licensed Rights means the rights granted to You subject to the
terms and conditions of this Public License, which are limited to
all Copyright and Similar Rights that apply to Your use of the
Licensed Material and that the Licensor has authority to license.
h. Licensor means the individual(s) or entity(ies) granting rights
under this Public License.
i. Share means to provide material to the public by any means or
process that requires permission under the Licensed Rights, such
as reproduction, public display, public performance, distribution,
dissemination, communication, or importation, and to make material
available to the public including in ways that members of the
public may access the material from a place and at a time
individually chosen by them.
j. Sui Generis Database Rights means rights other than copyright
resulting from Directive 96/9/EC of the European Parliament and of
the Council of 11 March 1996 on the legal protection of databases,
as amended and/or succeeded, as well as other essentially
equivalent rights anywhere in the world.
k. You means the individual or entity exercising the Licensed Rights
under this Public License. Your has a corresponding meaning.
Section 2 -- Scope.
a. License grant.
1. Subject to the terms and conditions of this Public License,
the Licensor hereby grants You a worldwide, royalty-free,
non-sublicensable, non-exclusive, irrevocable license to
exercise the Licensed Rights in the Licensed Material to:
a. reproduce and Share the Licensed Material, in whole or
in part; and
b. produce, reproduce, and Share Adapted Material.
2. Exceptions and Limitations. For the avoidance of doubt, where
Exceptions and Limitations apply to Your use, this Public
License does not apply, and You do not need to comply with
its terms and conditions.
3. Term. The term of this Public License is specified in Section
6(a).
4. Media and formats; technical modifications allowed. The
Licensor authorizes You to exercise the Licensed Rights in
all media and formats whether now known or hereafter created,
and to make technical modifications necessary to do so. The
Licensor waives and/or agrees not to assert any right or
authority to forbid You from making technical modifications
necessary to exercise the Licensed Rights, including
technical modifications necessary to circumvent Effective
Technological Measures. For purposes of this Public License,
simply making modifications authorized by this Section 2(a)
(4) never produces Adapted Material.
5. Downstream recipients.
a. Offer from the Licensor -- Licensed Material. Every
recipient of the Licensed Material automatically
receives an offer from the Licensor to exercise the
Licensed Rights under the terms and conditions of this
Public License.
b. No downstream restrictions. You may not offer or impose
any additional or different terms or conditions on, or
apply any Effective Technological Measures to, the
Licensed Material if doing so restricts exercise of the
Licensed Rights by any recipient of the Licensed
Material.
6. No endorsement. Nothing in this Public License constitutes or
may be construed as permission to assert or imply that You
are, or that Your use of the Licensed Material is, connected
with, or sponsored, endorsed, or granted official status by,
the Licensor or others designated to receive attribution as
provided in Section 3(a)(1)(A)(i).
b. Other rights.
1. Moral rights, such as the right of integrity, are not
licensed under this Public License, nor are publicity,
privacy, and/or other similar personality rights; however, to
the extent possible, the Licensor waives and/or agrees not to
assert any such rights held by the Licensor to the limited
extent necessary to allow You to exercise the Licensed
Rights, but not otherwise.
2. Patent and trademark rights are not licensed under this
Public License.
3. To the extent possible, the Licensor waives any right to
collect royalties from You for the exercise of the Licensed
Rights, whether directly or through a collecting society
under any voluntary or waivable statutory or compulsory
licensing scheme. In all other cases the Licensor expressly
reserves any right to collect such royalties.
Section 3 -- License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the
following conditions.
a. Attribution.
1. If You Share the Licensed Material (including in modified
form), You must:
a. retain the following if it is supplied by the Licensor
with the Licensed Material:
i. identification of the creator(s) of the Licensed
Material and any others designated to receive
attribution, in any reasonable manner requested by
the Licensor (including by pseudonym if
designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of
warranties;
v. a URI or hyperlink to the Licensed Material to the
extent reasonably practicable;
b. indicate if You modified the Licensed Material and
retain an indication of any previous modifications; and
c. indicate the Licensed Material is licensed under this
Public License, and include the text of, or the URI or
hyperlink to, this Public License.
2. You may satisfy the conditions in Section 3(a)(1) in any
reasonable manner based on the medium, means, and context in
which You Share the Licensed Material. For example, it may be
reasonable to satisfy the conditions by providing a URI or
hyperlink to a resource that includes the required
information.
3. If requested by the Licensor, You must remove any of the
information required by Section 3(a)(1)(A) to the extent
reasonably practicable.
4. If You Share Adapted Material You produce, the Adapter's
License You apply must not prevent recipients of the Adapted
Material from complying with this Public License.
Section 4 -- Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that
apply to Your use of the Licensed Material:
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
to extract, reuse, reproduce, and Share all or a substantial
portion of the contents of the database;
b. if You include all or a substantial portion of the database
contents in a database in which You have Sui Generis Database
Rights, then the database in which You have Sui Generis Database
Rights (but not its individual contents) is Adapted Material; and
c. You must comply with the conditions in Section 3(a) if You Share
all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not
replace Your obligations under this Public License where the Licensed
Rights include other Copyright and Similar Rights.
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
c. The disclaimer of warranties and limitation of liability provided
above shall be interpreted in a manner that, to the extent
possible, most closely approximates an absolute disclaimer and
waiver of all liability.
Section 6 -- Term and Termination.
a. This Public License applies for the term of the Copyright and
Similar Rights licensed here. However, if You fail to comply with
this Public License, then Your rights under this Public License
terminate automatically.
b. Where Your right to use the Licensed Material has terminated under
Section 6(a), it reinstates:
1. automatically as of the date the violation is cured, provided
it is cured within 30 days of Your discovery of the
violation; or
2. upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any
right the Licensor may have to seek remedies for Your violations
of this Public License.
c. For the avoidance of doubt, the Licensor may also offer the
Licensed Material under separate terms or conditions or stop
distributing the Licensed Material at any time; however, doing so
will not terminate this Public License.
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
License.
Section 7 -- Other Terms and Conditions.
a. The Licensor shall not be bound by any additional or different
terms or conditions communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements regarding the
Licensed Material not stated herein are separate from and
independent of the terms and conditions of this Public License.
Section 8 -- Interpretation.
a. For the avoidance of doubt, this Public License does not, and
shall not be interpreted to, reduce, limit, restrict, or impose
conditions on any use of the Licensed Material that could lawfully
be made without permission under this Public License.
b. To the extent possible, if any provision of this Public License is
deemed unenforceable, it shall be automatically reformed to the
minimum extent necessary to make it enforceable. If the provision
cannot be reformed, it shall be severed from this Public License
without affecting the enforceability of the remaining terms and
conditions.
c. No term or condition of this Public License will be waived and no
failure to comply consented to unless expressly agreed to by the
Licensor.
d. Nothing in this Public License constitutes or may be interpreted
as a limitation upon, or waiver of, any privileges and immunities
that apply to the Licensor or You, including from the legal
processes of any jurisdiction or authority.
=======================================================================
Creative Commons is not a party to its public
licenses. Notwithstanding, Creative Commons may elect to apply one of
its public licenses to material it publishes and in those instances
will be considered the “Licensor.” The text of the Creative Commons
public licenses is dedicated to the public domain under the CC0 Public
Domain Dedication. Except for the limited purpose of indicating that
material is shared under a Creative Commons public license or as
otherwise permitted by the Creative Commons policies published at
creativecommons.org/policies, Creative Commons does not authorize the
use of the trademark "Creative Commons" or any other trademark or logo
of Creative Commons without its prior written consent including,
without limitation, in connection with any unauthorized modifications
to any of its public licenses or any other arrangements,
understandings, or agreements concerning use of licensed material. For
the avoidance of doubt, this paragraph does not form part of the
public licenses.
Creative Commons may be contacted at creativecommons.org.

16
node_modules/caniuse-db/README.md generated vendored Normal file
View File

@@ -0,0 +1,16 @@
# caniuse
[![Build Status](https://travis-ci.org/Fyrd/caniuse.svg?branch=master)](https://travis-ci.org/Fyrd/caniuse)
This repo contains raw data from the caniuse.com support tables. It serves two purposes:
1. The ability for anyone interested to update or add to the support data on the site. If you are interested in this, please read the [CONTRIBUTING file](CONTRIBUTING.md).
2. Access to the site's data for other projects. For this use the [`data.json`](data.json) file which includes all support data.
The data in this repo is available for use under a CC BY 4.0 license (https://creativecommons.org/licenses/by/4.0/). For attribution just mention somewhere that the source is caniuse.com. If you have any questions about using the data for your project please contact me here: http://a.deveria.com/contact
Thanks,
Alexis Deveria
<br>https://caniuse.com/
<br>http://a.deveria.com/

1
node_modules/caniuse-db/data.json generated vendored Normal file

File diff suppressed because one or more lines are too long

364
node_modules/caniuse-db/features-json/aac.json generated vendored Normal file
View File

@@ -0,0 +1,364 @@
{
"title":"AAC audio file format",
"description":"Advanced Audio Coding format, designed to be the successor format to MP3, with generally better sound quality.",
"spec":"http://www.digitalpreservation.gov/formats/fdd/fdd000114.shtml",
"status":"other",
"links":[
{
"url":"https://en.wikipedia.org/wiki/Advanced_Audio_Coding",
"title":"Wikipedia article"
}
],
"bugs":[
],
"categories":[
"Other"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"a #1",
"23":"a #1",
"24":"a #1",
"25":"a #1",
"26":"a #1",
"27":"a #1",
"28":"a #1",
"29":"a #1",
"30":"a #1",
"31":"a #1",
"32":"a #1",
"33":"a #1",
"34":"a #1",
"35":"a #1",
"36":"a #1",
"37":"a #1",
"38":"a #1",
"39":"a #1",
"40":"a #1",
"41":"a #1",
"42":"a #1",
"43":"a #1",
"44":"a #1",
"45":"a #1",
"46":"a #1",
"47":"a #1",
"48":"a #1",
"49":"a #1",
"50":"a #1",
"51":"a #1",
"52":"a #1",
"53":"a #1",
"54":"a #1",
"55":"a #1",
"56":"a #1",
"57":"a #1",
"58":"a #1",
"59":"a #1",
"60":"a #1",
"61":"a #1",
"62":"a #1",
"63":"a #1",
"64":"a #1",
"65":"a #1",
"66":"a #1",
"67":"a #1",
"68":"a #1",
"69":"a #1",
"70":"a #1",
"71":"a #1"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"u",
"11":"u",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"y",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"u",
"4.0-4.1":"y",
"4.2-4.3":"y",
"5.0-5.1":"y",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"y",
"4":"y",
"4.1":"y",
"4.2-4.3":"y",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"n",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"a #1"
},
"ie_mob":{
"10":"y",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"a #1"
}
},
"notes":"Support refers to this format's use in the `audio` element, not other conditions.",
"notes_by_num":{
"1":"Partial support in Firefox refers to only supporting AAC in an MP4 container and only when the operating system already has the codecs installed."
},
"usage_perc_y":92.33,
"usage_perc_a":4.74,
"ucprefix":false,
"parent":"audio",
"keywords":"audio/aac",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,372 @@
{
"title":"AbortController & AbortSignal",
"description":"Controller object that allows you to abort one or more DOM requests made with the Fetch API.",
"spec":"https://dom.spec.whatwg.org/#abortsignal",
"status":"ls",
"links":[
{
"url":"https://developers.google.com/web/updates/2017/09/abortable-fetch",
"title":"Abortable Fetch - Google Developers article"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/AbortController",
"title":"AbortController - MDN Web Docs"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal",
"title":"AbortSignal - MDN Web Docs"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n #1",
"12":"n #1",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"y"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
"1":"Safari has window.AbortController defined in the DOM but it's just a stub, it does not abort requests at all. The same issue also affects Chrome on IOS and Firefox on IOS because they use the same WebKit rendering engine as Safari."
},
"usage_perc_y":85.23,
"usage_perc_a":0,
"ucprefix":false,
"parent":"fetch",
"keywords":"abort api",
"ie_id":"",
"chrome_id":"5631483679080448",
"firefox_id":"abort-api",
"webkit_id":"",
"shown":true
}

364
node_modules/caniuse-db/features-json/ac3-ec3.json generated vendored Normal file
View File

@@ -0,0 +1,364 @@
{
"title":"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs",
"description":"AC-3 and EC-3 are multi-channel lossy audio codecs, commonly used in movies. AC-3 supports 5.1 channels. Its successor EC-3 (or E-AC-3) supports 15.1 channels and bit rates up to 6144kbit/s. They're standardized as A/52:2012.",
"spec":"http://atsc.org/standard/a522012-digital-audio-compression-ac-3-e-ac-3-standard-12172012/",
"status":"other",
"links":[
{
"url":"https://blogs.windows.com/msedgedev/2015/05/26/announcing-dolby-audio-for-high-performance-audio-in-microsoft-edge/",
"title":"Announcing Dolby Audio for high performance audio in Microsoft Edge"
}
],
"bugs":[
],
"categories":[
"Other"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"n"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n",
"72":"n",
"73":"n",
"74":"n",
"75":"n",
"76":"n",
"77":"n",
"78":"n",
"79":"n",
"80":"n"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"60":"n",
"62":"n"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"a #1",
"9.3":"a #1",
"10.0-10.2":"a #1",
"10.3":"a #1",
"11.0-11.2":"a #1",
"11.3-11.4":"a #1",
"12.0-12.1":"a #1",
"12.2-12.3":"a #1",
"13":"a #1"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"a #1"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"a #1",
"46":"n"
},
"and_chr":{
"76":"n"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"a #1"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
"1":"Claims \"probably\" support, actual playback is untested"
},
"usage_perc_y":2.12,
"usage_perc_a":14.69,
"ucprefix":false,
"parent":"",
"keywords":"Dolby,AC-3,EC-3,E-AC-3,DD+,Digital Plus,A/52,multi-channel,codec,audio",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":false
}

View File

@@ -0,0 +1,368 @@
{
"title":"Accelerometer",
"description":"Defines `Accelerometer`, `LinearAccelerationSensor` and `GravitySensor` interfaces for obtaining information about acceleration applied to the X, Y and Z axis of a device that hosts the sensor.",
"spec":"https://www.w3.org/TR/accelerometer/",
"status":"cr",
"links":[
{
"url":"https://intel.github.io/generic-sensor-demos/punchmeter/",
"title":"Demo"
},
{
"url":"https://developers.google.com/web/updates/2017/09/sensors-for-the-web#acceleration-and-linear-accelerometer-sensor",
"title":"Article"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n d #1",
"59":"n d #1",
"60":"n d #1",
"61":"n d #1",
"62":"n d #1",
"63":"n d #1",
"64":"n d #1",
"65":"n d #1",
"66":"n d #1",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
"1":"Available by enabling the \"Generic Sensor\" experimental flag in `about:flags`"
},
"usage_perc_y":64.34,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"5698781827825664",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,373 @@
{
"title":"EventTarget.addEventListener()",
"description":"The modern standard API for adding DOM event handlers. Introduced in the DOM Level 2 Events spec. Also implies support for `removeEventListener`, the [capture phase](https://dom.spec.whatwg.org/#dom-event-capturing_phase) of DOM event dispatch, as well as the `stopPropagation()` and `preventDefault()` event methods.",
"spec":"https://dom.spec.whatwg.org/#dom-eventtarget-addeventlistener",
"status":"ls",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener",
"title":"MDN Web Docs - addEventListener"
},
{
"url":"https://github.com/Financial-Times/polyfill-service/blob/master/polyfills/Event/polyfill.js",
"title":"Financial Times IE8 polyfill"
},
{
"url":"https://github.com/WebReflection/ie8",
"title":"WebReflection ie8 polyfill"
}
],
"bugs":[
],
"categories":[
"DOM"
],
"stats":{
"ie":{
"5.5":"n #1",
"6":"n #1",
"7":"n #1",
"8":"n #1",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"y #2",
"3":"y #2",
"3.5":"y #2",
"3.6":"y #2",
"4":"y #2",
"5":"y #2",
"6":"y #2",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"y",
"3.2":"y",
"4":"y",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"y",
"9.5-9.6":"y",
"10.0-10.1":"y",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"y",
"4.0-4.1":"y",
"4.2-4.3":"y",
"5.0-5.1":"y",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"y"
},
"android":{
"2.1":"y",
"2.2":"y",
"2.3":"y",
"3":"y",
"4":"y",
"4.1":"y",
"4.2-4.3":"y",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y",
"10":"y"
},
"op_mob":{
"10":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"IE<=8 instead only supports the [proprietary `.attachEvent()` method](https://msdn.microsoft.com/en-us/library/ms536343%28VS.85%29.aspx). It also does not support the [capture phase](https://www.w3.org/TR/DOM-Level-3-Events/#event-flow) of DOM event dispatch; it only supports event bubbling.",
"2":"The `useCapture` parameter is non-optional and must be provided. Future versions made it optional, with a default value of `false`."
},
"usage_perc_y":98.97,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"event,target,add,remove,listener,capture,capturing,phase",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,377 @@
{
"title":"Alternate stylesheet",
"description":"Ability to support alternative styles to a HTML page.",
"spec":"https://html.spec.whatwg.org/multipage/semantics.html#link-type-stylesheet",
"status":"ls",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/Alternative_style_sheets#Specifications",
"title":"MDN Web Docs - alternate stylesheet"
},
{
"url":"https://www.w3.org/Style/Examples/007/alternatives.en.html",
"title":"W3C CSS tips & tricks article"
},
{
"url":"https://chrome.google.com/webstore/detail/style-chooser/daodklicmmjhcacgkjpianadkdkbkbce",
"title":"Third party Chrome extension"
},
{
"url":"https://css-tricks.com/examples/AlternateStyleSheets/",
"title":"Demo page"
}
],
"bugs":[
],
"categories":[
"HTML5",
"HTML5"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"y",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"n"
},
"firefox":{
"2":"y",
"3":"y",
"3.5":"y",
"3.6":"y",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n",
"72":"n",
"73":"n",
"74":"n",
"75":"n",
"76":"n",
"77":"n",
"78":"n",
"79":"n",
"80":"n"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"y",
"9.5-9.6":"y",
"10.0-10.1":"y",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"u",
"16":"u",
"17":"u",
"18":"u",
"19":"u",
"20":"u",
"21":"u",
"22":"u",
"23":"u",
"24":"u",
"25":"u",
"26":"u",
"27":"u",
"28":"u",
"29":"u",
"30":"u",
"31":"u",
"32":"u",
"33":"u",
"34":"u",
"35":"u",
"36":"u",
"37":"u",
"38":"u",
"39":"u",
"40":"u",
"41":"u",
"42":"u",
"43":"u",
"44":"u",
"45":"u",
"46":"u",
"47":"u",
"48":"u",
"49":"u",
"50":"u",
"51":"u",
"52":"u",
"53":"u",
"54":"u",
"55":"u",
"56":"u",
"57":"u",
"58":"u",
"60":"u",
"62":"u"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"u"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"u",
"10":"u"
},
"op_mob":{
"10":"u",
"11":"u",
"11.1":"u",
"11.5":"u",
"12":"u",
"12.1":"u",
"46":"u"
},
"and_chr":{
"76":"u"
},
"and_ff":{
"68":"u"
},
"ie_mob":{
"10":"u",
"11":"u"
},
"and_uc":{
"12.12":"u"
},
"samsung":{
"4":"u",
"5.0-5.4":"u",
"6.2-6.4":"u",
"7.2-7.4":"u",
"8.2":"u",
"9.2":"u"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"u"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":6.78,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"alternate stylesheet,alternative stylesheet,alternate css,alternative css,alternate style,alternative style",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":false
}

View File

@@ -0,0 +1,377 @@
{
"title":"Ambient Light Sensor",
"description":"Defines a concrete sensor interface to monitor the ambient light level or illuminance of the device\u2019s environment.",
"spec":"https://www.w3.org/TR/ambient-light/",
"status":"cr",
"links":[
{
"url":"https://intel.github.io/generic-sensor-demos/ambient-map/build/bundled/",
"title":"Demo"
},
{
"url":"https://developers.google.com/web/updates/2017/09/sensors-for-the-web",
"title":"Article"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Ambient_Light_Sensor_API",
"title":"MDN Web Docs - Ambient Light Sensor"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Ambient_Light_Events",
"title":"MDN Web Docs - Ambient Light Events"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"a #1",
"15":"a #1",
"16":"a #1",
"17":"a #1",
"18":"a #1",
"76":"n d #2"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"a #1",
"23":"a #1",
"24":"a #1",
"25":"a #1",
"26":"a #1",
"27":"a #1",
"28":"a #1",
"29":"a #1",
"30":"a #1",
"31":"a #1",
"32":"a #1",
"33":"a #1",
"34":"a #1",
"35":"a #1",
"36":"a #1",
"37":"a #1",
"38":"a #1",
"39":"a #1",
"40":"a #1",
"41":"a #1",
"42":"a #1",
"43":"a #1",
"44":"a #1",
"45":"a #1",
"46":"a #1",
"47":"a #1",
"48":"a #1",
"49":"a #1",
"50":"a #1",
"51":"a #1",
"52":"a #1",
"53":"a #1",
"54":"a #1",
"55":"a #1",
"56":"a #1",
"57":"a #1",
"58":"a #1",
"59":"a #1",
"60":"n d #1",
"61":"n d #1",
"62":"n d #1",
"63":"n d #1",
"64":"n d #1",
"65":"n d #1",
"66":"n d #1",
"67":"n d #1",
"68":"n d #1",
"69":"n d #1",
"70":"n d #1",
"71":"n d #1"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n d #2",
"59":"n d #2",
"60":"n d #2",
"61":"n d #2",
"62":"n d #2",
"63":"n d #2",
"64":"n d #2",
"65":"n d #2",
"66":"n d #2",
"67":"n d #2",
"68":"n d #2",
"69":"n d #2",
"70":"n d #2",
"71":"n d #2",
"72":"n d #2",
"73":"n d #2",
"74":"n d #2",
"75":"n d #2",
"76":"n d #2",
"77":"n d #2",
"78":"n d #2",
"79":"n d #2",
"80":"n d #2"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"60":"n",
"62":"n"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"n"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"a #1"
}
},
"notes":"",
"notes_by_num":{
"1":"Implements an [outdated version of the spec](https://www.w3.org/TR/2015/WD-ambient-light-20150903/).",
"2":"Available by enabling the \"Generic Sensor Extra Classes\" experimental flag in `about:flags`"
},
"usage_perc_y":0.19,
"usage_perc_a":3.03,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"ambientlightsensorapi",
"chrome_id":"5298357018820608",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

388
node_modules/caniuse-db/features-json/apng.json generated vendored Normal file
View File

@@ -0,0 +1,388 @@
{
"title":"Animated PNG (APNG)",
"description":"Like animated GIFs, but allowing 24-bit colors and alpha transparency",
"spec":"https://wiki.mozilla.org/APNG_Specification",
"status":"unoff",
"links":[
{
"url":"https://en.wikipedia.org/wiki/APNG",
"title":"Wikipedia"
},
{
"url":"https://github.com/davidmz/apng-canvas",
"title":"Polyfill using canvas"
},
{
"url":"https://chrome.google.com/webstore/detail/ehkepjiconegkhpodgoaeamnpckdbblp",
"title":"Chrome extension providing support"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/6513393-apng-animated-png-images-support-firefox-and-sa",
"title":"Microsoft Edge feature request on UserVoice (under review)"
},
{
"url":"https://addons.opera.com/en/extensions/details/apng/?display=en",
"title":"Opera extension providing support"
},
{
"url":"https://code.google.com/p/chromium/issues/detail?id=437662",
"title":"Chromium issue (fixed)"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Mozilla/Tech/APNG",
"title":"MDN Web Docs - APNG"
}
],
"bugs":[
],
"categories":[
"PNG"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"y",
"3.5":"y",
"3.6":"y",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"y",
"10.0-10.1":"y",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"y"
}
},
"notes":"Where support for APNG is missing, only the first frame is displayed",
"notes_by_num":{
},
"usage_perc_y":86.77,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"6691520493125632",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,364 @@
{
"title":"Array.prototype.findIndex",
"description":"The `findIndex()` method returns the index of the first element in the array that satisfies the provided testing function.",
"spec":"https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.findindex",
"status":"other",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex",
"title":"MDN article"
}
],
"bugs":[
],
"categories":[
"JS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"u",
"13":"u",
"14":"u",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"u"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":93.28,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"array.findIndex",
"ie_id":"",
"chrome_id":"6732923508097024",
"firefox_id":"",
"webkit_id":"",
"shown":false
}

364
node_modules/caniuse-db/features-json/array-find.json generated vendored Normal file
View File

@@ -0,0 +1,364 @@
{
"title":"Array.prototype.find",
"description":"The `find()` method returns the value of the first item in the array based on the result of the provided testing function.",
"spec":"https://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.find",
"status":"other",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find",
"title":"MDN article"
}
],
"bugs":[
],
"categories":[
"JS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"u",
"13":"u",
"14":"u",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"u"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":93.28,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"array.find",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

376
node_modules/caniuse-db/features-json/array-flat.json generated vendored Normal file
View File

@@ -0,0 +1,376 @@
{
"title":"flat & flatMap array methods",
"description":"Methods to flatten any sub-arrays found in an array by concatenating their elements.",
"spec":"https://tc39.github.io/proposal-flatMap/#sec-Array.prototype.flat",
"status":"unoff",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/flat",
"title":"MDN article on Array.prototype.flat"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/flatMap",
"title":"MDN article on Array.prototype.flatMap"
},
{
"url":"https://developers.google.com/web/updates/2018/03/smooshgate",
"title":"Article on the history of the `flat` methods"
},
{
"url":"https://github.com/jonathantneal/array-flat-polyfill",
"title":"Polyfill for flat & flatMap"
}
],
"bugs":[
],
"categories":[
"JS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":79.67,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"array.prototype.flat,array.prototype.flatmap",
"ie_id":"",
"chrome_id":"6629507075145728",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,364 @@
{
"title":"Array.prototype.includes",
"description":"Determines whether or not an array includes the given value, returning a boolean value (unlike `indexOf`).",
"spec":"https://tc39.github.io/ecma262/#sec-array.prototype.includes",
"status":"other",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes#Browser_compatibility",
"title":"MDN Web Docs"
}
],
"bugs":[
],
"categories":[
"JS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":93.09,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"array.includes",
"ie_id":"arrayprototypeincludeses2016",
"chrome_id":"5964420647747584",
"firefox_id":"",
"webkit_id":"feature-array.prototype.includes",
"shown":true
}

View File

@@ -0,0 +1,368 @@
{
"title":"Arrow functions",
"description":"Function shorthand using `=>` syntax and lexical `this` binding.",
"spec":"https://www.ecma-international.org/ecma-262/6.0/#sec-arrow-function-definitions",
"status":"other",
"links":[
{
"url":"https://github.com/lukehoban/es6features#arrows",
"title":"ECMAScript 6 features: Arrows"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions",
"title":"MDN Web Docs - Arrow functions"
}
],
"bugs":[
],
"categories":[
"JS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":92.85,
"usage_perc_a":0,
"ucprefix":false,
"parent":"es6",
"keywords":"ES6,JavaScript,fat,arrow,function,lexical,this",
"ie_id":"arrowfunctiones6",
"chrome_id":"5047308127305728",
"firefox_id":"",
"webkit_id":"feature-arrow-functions",
"shown":true
}

379
node_modules/caniuse-db/features-json/asmjs.json generated vendored Normal file
View File

@@ -0,0 +1,379 @@
{
"title":"asm.js",
"description":"An extraordinarily optimizable, low-level subset of JavaScript, intended to be a compile target from languages like C++.",
"spec":"http://asmjs.org/spec/latest/",
"status":"other",
"links":[
{
"url":"http://asmjs.org/",
"title":"Homepage"
},
{
"url":"https://github.com/dherman/asm.js/",
"title":"Source for spec and tools"
},
{
"url":"https://blogs.windows.com/msedgedev/2015/05/07/bringing-asm-js-to-chakra-microsoft-edge/",
"title":"Bringing Asm.js to Chakra and Microsoft Edge"
},
{
"url":"https://dev.modern.ie/platform/changelog/10532-pc/",
"title":"Microsoft Edge support announcement"
}
],
"bugs":[
],
"categories":[
"JS",
"JS API",
"Other"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n d #2",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"a #1"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"a #1",
"29":"a #1",
"30":"a #1",
"31":"a #1",
"32":"a #1",
"33":"a #1",
"34":"a #1",
"35":"a #1",
"36":"a #1",
"37":"a #1",
"38":"a #1",
"39":"a #1",
"40":"a #1",
"41":"a #1",
"42":"a #1",
"43":"a #1",
"44":"a #1",
"45":"a #1",
"46":"a #1",
"47":"a #1",
"48":"a #1",
"49":"a #1",
"50":"a #1",
"51":"a #1",
"52":"a #1",
"53":"a #1",
"54":"a #1",
"55":"a #1",
"56":"a #1",
"57":"a #1",
"58":"a #1",
"59":"a #1",
"60":"a #1",
"61":"a #1",
"62":"a #1",
"63":"a #1",
"64":"a #1",
"65":"a #1",
"66":"a #1",
"67":"a #1",
"68":"a #1",
"69":"a #1",
"70":"a #1",
"71":"a #1",
"72":"a #1",
"73":"a #1",
"74":"a #1",
"75":"a #1",
"76":"a #1",
"77":"a #1",
"78":"a #1",
"79":"a #1",
"80":"a #1"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"a #1",
"16":"a #1",
"17":"a #1",
"18":"a #1",
"19":"a #1",
"20":"a #1",
"21":"a #1",
"22":"a #1",
"23":"a #1",
"24":"a #1",
"25":"a #1",
"26":"a #1",
"27":"a #1",
"28":"a #1",
"29":"a #1",
"30":"a #1",
"31":"a #1",
"32":"a #1",
"33":"a #1",
"34":"a #1",
"35":"a #1",
"36":"a #1",
"37":"a #1",
"38":"a #1",
"39":"a #1",
"40":"a #1",
"41":"a #1",
"42":"a #1",
"43":"a #1",
"44":"a #1",
"45":"a #1",
"46":"a #1",
"47":"a #1",
"48":"a #1",
"49":"a #1",
"50":"a #1",
"51":"a #1",
"52":"a #1",
"53":"a #1",
"54":"a #1",
"55":"a #1",
"56":"a #1",
"57":"a #1",
"58":"a #1",
"60":"a #1",
"62":"a #1"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"a #1"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"a #1"
},
"and_chr":{
"76":"a #1"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"a #1",
"6.2-6.4":"a #1",
"7.2-7.4":"a #1",
"8.2":"a #1",
"9.2":"a #1"
},
"and_qq":{
"1.2":"a #1"
},
"baidu":{
"7.12":"a #1"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"Chrome does not support Ahead-Of-Time compilation but performance doubled in Chrome 28: https://en.wikipedia.org/wiki/Asm.js#Implementations",
"2":"Supported in MS Edge under the \"Enable experimental JavaScript features\" flag."
},
"usage_perc_y":6.85,
"usage_perc_a":69.97,
"ucprefix":false,
"parent":"",
"keywords":"asm,asm.js,asmjs,WebAssembly",
"ie_id":"asmjs",
"chrome_id":"",
"firefox_id":"asmjs",
"webkit_id":"specification-webassembly",
"shown":true
}

View File

@@ -0,0 +1,372 @@
{
"title":"Asynchronous Clipboard API",
"description":"A modern, asynchronous Clipboard API based on Promises",
"spec":"https://www.w3.org/TR/clipboard-apis/#async-clipboard-api",
"status":"wd",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API",
"title":"MDN Web Docs - Clipboard API"
},
{
"url":"https://github.com/w3c/clipboard-apis/blob/master/explainer.adoc",
"title":"W3C Async Clipboard Explainer"
},
{
"url":"https://developers.google.com/web/updates/2018/03/clipboardapi",
"title":"Google Chrome Updates - Unlocking Clipboard Access"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n d",
"59":"n d",
"60":"n d",
"61":"n d",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"u",
"49":"u",
"50":"u",
"51":"u",
"52":"u",
"53":"u",
"54":"u",
"55":"u",
"56":"u",
"57":"u",
"58":"u",
"60":"u",
"62":"u"
},
"ios_saf":{
"3.2":"u",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"n"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":27.86,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"clipboard,async,cut,copy,paste,clipboarddata,clipboardevent",
"ie_id":"clipboardapi",
"chrome_id":"5861289330999296",
"firefox_id":"",
"webkit_id":"",
"shown":false
}

View File

@@ -0,0 +1,370 @@
{
"title":"Async functions",
"description":"Async functions make it possible to treat functions returning Promise objects as if they were synchronous.",
"spec":"https://tc39.github.io/ecmascript-asyncawait/",
"status":"other",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function",
"title":"MDN Web Docs - Async functions"
},
{
"url":"https://developers.google.com/web/fundamentals/getting-started/primers/async-functions",
"title":"Async functions - making promises friendly"
}
],
"bugs":[
],
"categories":[
"JS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n d #1",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n #3",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n #3",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
"1":"Since build 14342 - disabled by default; can be enabled through about:flags",
"2":"Async functions are present in Firefox Nightly since 31th October 2016.",
"3":"Async arrow functions are [unsupported](https://github.com/kangax/compat-table/pull/1420)."
},
"usage_perc_y":91.13,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"ES2017,JavaScript,function,async,await,promises,asynchronous",
"ie_id":"asyncfunctions",
"chrome_id":"5643236399906816",
"firefox_id":"async-function",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,361 @@
{
"title":"Async iterators and generators",
"description":"Async iterators provide generic data access for asynchronous data sources, and provide a new async function* syntax that implements this protocol.",
"spec":"https://github.com/tc39/proposal-async-iteration",
"status":"other",
"links":[
],
"bugs":[
],
"categories":[
"JS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":70.5,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"ES2017,JavaScript,function,async,await,promises,asynchronous,iteration,iterators,generators",
"ie_id":"",
"chrome_id":"5727385018171392",
"firefox_id":"",
"webkit_id":"feature-async-iteration",
"shown":false
}

374
node_modules/caniuse-db/features-json/atob-btoa.json generated vendored Normal file
View File

@@ -0,0 +1,374 @@
{
"title":"Base64 encoding and decoding",
"description":"Utility functions for of encoding and decoding strings to and from base 64: window.atob() and window.btoa().",
"spec":"https://html.spec.whatwg.org/multipage/webappapis.html#atob",
"status":"ls",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Window.btoa",
"title":"MDN Web Docs - btoa()"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Window.atob",
"title":"MDN Web Docs - atob()"
},
{
"url":"https://github.com/davidchambers/Base64.js",
"title":"Polyfill"
}
],
"bugs":[
{
"description":"To avoid \"Character out of range\" exceptions on Unicode strings, [this workaround](https://stackoverflow.com/questions/30106476/using-javascripts-atob-to-decode-base64-doesnt-properly-decode-utf-8-strings) is necessary"
}
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"y",
"3":"y",
"3.5":"y",
"3.6":"y",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"y",
"3.2":"y",
"4":"y",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"u",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"y",
"4.0-4.1":"y",
"4.2-4.3":"y",
"5.0-5.1":"y",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"y"
},
"android":{
"2.1":"y",
"2.2":"y",
"2.3":"y",
"3":"y",
"4":"y",
"4.1":"y",
"4.2-4.3":"y",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y",
"10":"y"
},
"op_mob":{
"10":"u",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":98.86,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"atob,btoa",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

380
node_modules/caniuse-db/features-json/audio-api.json generated vendored Normal file
View File

@@ -0,0 +1,380 @@
{
"title":"Web Audio API",
"description":"High-level JavaScript API for processing and synthesizing audio",
"spec":"https://www.w3.org/TR/webaudio/",
"status":"wd",
"links":[
{
"url":"https://github.com/corbanbrook/audionode.js",
"title":"Polyfill to support Web Audio API in Firefox"
},
{
"url":"https://www.webplatform.org/docs/apis/webaudio",
"title":"WebPlatform Docs"
},
{
"url":"http://www.doboism.com/projects/webaudio-compatibility/",
"title":"Additional browser compatibility tests for specific features"
},
{
"url":"https://github.com/g200kg/WAAPISim",
"title":"Polyfill to enable Web Audio API through Firefox Audio Data api or flash"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API",
"title":"MDN Web Docs - Web Audio API"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"y x",
"11":"y x",
"12":"y x",
"13":"y x",
"14":"y x",
"15":"y x",
"16":"y x",
"17":"y x",
"18":"y x",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y x",
"31":"y x",
"32":"y x",
"33":"y x",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"y x",
"6.1":"y x",
"7":"y x",
"7.1":"y x",
"8":"y x",
"9":"y x",
"9.1":"y x",
"10":"y x",
"10.1":"y x",
"11":"y x",
"11.1":"y x",
"12":"y x",
"12.1":"y x",
"13":"y x",
"TP":"y x"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"y x",
"16":"y x",
"17":"y x",
"18":"y x",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"y x",
"7.0-7.1":"y x",
"8":"y x",
"8.1-8.4":"y x",
"9.0-9.2":"y x",
"9.3":"y x",
"10.0-10.2":"y x",
"10.3":"y x",
"11.0-11.2":"y x",
"11.3-11.4":"y x",
"12.0-12.1":"y x",
"12.2-12.3":"y x",
"13":"y x"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"Not all browsers with support for the Audio API also support media streams (e.g. microphone input). See the [getUserMedia/Streams API](/#feat=stream) data for support for that feature.\r\n\r\nFirefox versions < 25 support an alternative, deprecated audio API.\r\n\r\nChrome support [went through some changes](http://updates.html5rocks.com/2014/07/Web-Audio-Changes-in-m36) as of version 36.",
"notes_by_num":{
},
"usage_perc_y":94.43,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"web-audio,webaudio,AudioContext,AudioBuffer,AudioNode",
"ie_id":"webaudioapi",
"chrome_id":"6261718720184320",
"firefox_id":"webaudio",
"webkit_id":"feature-web-audio",
"shown":true
}

400
node_modules/caniuse-db/features-json/audio.json generated vendored Normal file
View File

@@ -0,0 +1,400 @@
{
"title":"Audio element",
"description":"Method of playing sound on webpages (without requiring a plug-in). Includes support for the following media properties: `currentSrc`, `currentTime`, `paused`, `playbackRate`, `buffered`, `duration`, `played`, `seekable`, `ended`, `autoplay`, `loop`, `controls`, `volume` & `muted`",
"spec":"https://html.spec.whatwg.org/multipage/embedded-content.html#the-audio-element",
"status":"ls",
"links":[
{
"url":"http://html5doctor.com/native-audio-in-the-browser/",
"title":"HTML5 Doctor article"
},
{
"url":"https://dev.opera.com/articles/view/everything-you-need-to-know-about-html5-video-and-audio/",
"title":"Detailed article on video/audio elements"
},
{
"url":"http://www.jplayer.org/latest/demos/",
"title":"Demos of audio player that uses the audio element"
},
{
"url":"http://24ways.org/2010/the-state-of-html5-audio",
"title":"Detailed article on support"
},
{
"url":"http://textopia.org/androidsoundformats.html",
"title":"File format test page"
},
{
"url":"http://www.phoboslab.org/log/2011/03/the-state-of-html5-audio",
"title":"The State of HTML5 Audio"
},
{
"url":"https://raw.github.com/phiggins42/has.js/master/detect/audio.js#audio",
"title":"has.js test"
},
{
"url":"https://www.webplatform.org/docs/html/elements/audio",
"title":"WebPlatform Docs"
}
],
"bugs":[
{
"description":"Volume is read-only on iOS."
},
{
"description":"[iOS](https://developer.apple.com/library/archive/documentation/AudioVideo/Conceptual/Using_HTML5_Audio_Video/Device-SpecificConsiderations/Device-SpecificConsiderations.html) and [Chrome on Android](https://code.google.com/p/chromium/issues/detail?id=178297) do not support autoplay as advised by the specification."
},
{
"description":"On iOS the [`ended` event is not fired](https://bugs.webkit.org/show_bug.cgi?id=173332) when the screen is off or the browser is in the background (meaning that e.g. `src` cannot be changed)."
}
],
"categories":[
"HTML5"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"a #1",
"3.6":"a #1",
"4":"a #1",
"5":"a #1",
"6":"a #1",
"7":"a #1",
"8":"a #1",
"9":"a #1",
"10":"a #1",
"11":"a #1",
"12":"a #1",
"13":"a #1",
"14":"a #1",
"15":"a #1",
"16":"a #1",
"17":"a #1",
"18":"a #1",
"19":"a #1",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"y",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"a",
"10.0-10.1":"a",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"y",
"4.2-4.3":"y",
"5.0-5.1":"y",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"y",
"3":"y",
"4":"y",
"4.1":"y",
"4.2-4.3":"y",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"Old Firefox versions were missing support for some properties: `loop` was added in v11, `played` in v15, `playbackRate` in v20."
},
"usage_perc_y":97.27,
"usage_perc_a":0.12,
"ucprefix":false,
"parent":"",
"keywords":"<audio>",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

365
node_modules/caniuse-db/features-json/audiotracks.json generated vendored Normal file
View File

@@ -0,0 +1,365 @@
{
"title":"Audio Tracks",
"description":"Method of specifying and selecting between multiple audio tracks. Useful for providing audio descriptions, director's commentary, additional languages, alternative takes, etc.",
"spec":"https://html.spec.whatwg.org/multipage/embedded-content.html#audiotracklist-and-videotracklist-objects",
"status":"ls",
"links":[
{
"url":"https://msdn.microsoft.com/en-US/library/hh772483%28v=vs.85%29.aspx",
"title":"MSDN article"
}
],
"bugs":[
],
"categories":[
"HTML5"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"n d #2"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n d #1",
"34":"n d #1",
"35":"n d #1",
"36":"n d #1",
"37":"n d #1",
"38":"n d #1",
"39":"n d #1",
"40":"n d #1",
"41":"n d #1",
"42":"n d #1",
"43":"n d #1",
"44":"n d #1",
"45":"n d #1",
"46":"n d #1",
"47":"n d #1",
"48":"n d #1",
"49":"n d #1",
"50":"n d #1",
"51":"n d #1",
"52":"n d #1",
"53":"n d #1",
"54":"n d #1",
"55":"n d #1",
"56":"n d #1",
"57":"n d #1",
"58":"n d #1",
"59":"n d #1",
"60":"n d #1",
"61":"n d #1",
"62":"n d #1",
"63":"n d #1",
"64":"n d #1",
"65":"n d #1",
"66":"n d #1",
"67":"n d #1",
"68":"n d #1",
"69":"n d #1",
"70":"n d #1",
"71":"n d #1"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n d #2",
"46":"n d #2",
"47":"n d #2",
"48":"n d #2",
"49":"n d #2",
"50":"n d #2",
"51":"n d #2",
"52":"n d #2",
"53":"n d #2",
"54":"n d #2",
"55":"n d #2",
"56":"n d #2",
"57":"n d #2",
"58":"n d #2",
"59":"n d #2",
"60":"n d #2",
"61":"n d #2",
"62":"n d #2",
"63":"n d #2",
"64":"n d #2",
"65":"n d #2",
"66":"n d #2",
"67":"n d #2",
"68":"n d #2",
"69":"n d #2",
"70":"n d #2",
"71":"n d #2",
"72":"n d #2",
"73":"n d #2",
"74":"n d #2",
"75":"n d #2",
"76":"n d #2",
"77":"n d #2",
"78":"n d #2",
"79":"n d #2",
"80":"n d #2"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n d #2",
"33":"n d #2",
"34":"n d #2",
"35":"n d #2",
"36":"n d #2",
"37":"n d #2",
"38":"n d #2",
"39":"n d #2",
"40":"n d #2",
"41":"n d #2",
"42":"n d #2",
"43":"n d #2",
"44":"n d #2",
"45":"n d #2",
"46":"n d #2",
"47":"n d #2",
"48":"n d #2",
"49":"n d #2",
"50":"n d #2",
"51":"n d #2",
"52":"n d #2",
"53":"n d #2",
"54":"n d #2",
"55":"n d #2",
"56":"n d #2",
"57":"n d #2",
"58":"n d #2",
"60":"n d #2",
"62":"n d #2"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n d #2"
},
"and_chr":{
"76":"n d #2"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n d #1"
}
},
"notes":"",
"notes_by_num":{
"1":"Supported in Firefox by enabling \"media.track.enabled\" in about:config",
"2":"Supported in Chrome and Opera by enabling \"enable-experimental-web-platform-features\" in chrome:flags"
},
"usage_perc_y":17.45,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"AudioTrack,AudioTrackList,media,multiple,selection",
"ie_id":"audiotracks",
"chrome_id":"5748496434987008",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

370
node_modules/caniuse-db/features-json/autofocus.json generated vendored Normal file
View File

@@ -0,0 +1,370 @@
{
"title":"Autofocus attribute",
"description":"Allows a form field to be immediately focused on page load.",
"spec":"https://html.spec.whatwg.org/multipage/forms.html#autofocusing-a-form-control:-the-autofocus-attribute",
"status":"ls",
"links":[
{
"url":"https://davidwalsh.name/autofocus",
"title":"Article on autofocus"
},
{
"url":"https://developer.mozilla.org/en/docs/Web/HTML/Element/input#attr-autofocus",
"title":"MDN Web Docs - autofocus attribute"
}
],
"bugs":[
{
"description":"Firefox [has a bug](https://bugzilla.mozilla.org/show_bug.cgi?id=712130) where `autofocus` doesn't always scroll to the correct part of the page."
}
],
"categories":[
"HTML5"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"y",
"10.0-10.1":"y",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"y",
"4":"y",
"4.1":"y",
"4.2-4.3":"y",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"n"
}
},
"notes":"While not supported in iOS Safari, it does work in iOS WebViews.",
"notes_by_num":{
},
"usage_perc_y":82.23,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

381
node_modules/caniuse-db/features-json/auxclick.json generated vendored Normal file
View File

@@ -0,0 +1,381 @@
{
"title":"Auxclick",
"description":"The click event for non-primary buttons of input devices",
"spec":"https://w3c.github.io/uievents/#event-type-auxclick",
"status":"wd",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/Events/auxclick",
"title":"MDN Web Docs - auxclick"
},
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=1304044",
"title":"Firefox implementation"
},
{
"url":"https://bugs.webkit.org/show_bug.cgi?id=22382",
"title":"WebKit bug"
},
{
"url":"https://wicg.github.io/auxclick/",
"title":"Original Proposal"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/17997901-auxclick-event-for-non-primary-buttons",
"title":"Microsoft Edge feature request on UserVoice"
}
],
"bugs":[
],
"categories":[
"DOM",
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"y #1",
"54":"y #1",
"55":"y #1",
"56":"y #1",
"57":"y #1",
"58":"y #1",
"59":"y #1",
"60":"y #1",
"61":"y #1",
"62":"y #1",
"63":"y #1",
"64":"y #1",
"65":"y #1",
"66":"y #1",
"67":"y #1",
"68":"y #1",
"69":"y #1",
"70":"y #1",
"71":"y #1"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"u"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"n"
}
},
"notes":"With introduction of this feature there will be no longer click event fired for non-primary buttons",
"notes_by_num":{
"1":"As a compatibility measure, Firefox continues to fire the click event for document and window level event handlers."
},
"usage_perc_y":76.37,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"click,auxclick,non-primary button,middle click",
"ie_id":"",
"chrome_id":"5663174342737920",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

387
node_modules/caniuse-db/features-json/av1.json generated vendored Normal file
View File

@@ -0,0 +1,387 @@
{
"title":"AV1 video format",
"description":"AV1 (AOMedia Video 1) is a royalty-free video format by the Alliance for Open Media, meant to succeed its predecessor VP9 and compete with the HEVC/H.265 format.",
"spec":"https://github.com/AOMediaCodec/av1-spec",
"status":"other",
"links":[
{
"url":"https://en.wikipedia.org/wiki/AV1",
"title":"Wikipedia article"
},
{
"url":"https://bitmovin.com/demos/av1",
"title":"Sample video from Bitmovin"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/34544281-support-aomedia-video-1-av1",
"title":"Microsoft Edge feature request on UserVoice"
},
{
"url":"https://www.facebook.com/330716120785217/videos/330723190784510/",
"title":"Sample video from Facebook"
},
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=1452683",
"title":"Firefox implementation bug"
}
],
"bugs":[
{
"description":"AV1 decoding was not available in Firefox on Windows 32-bit starting from Firefox Nightly 63 and through Firefox 65. (It was then re-enabled in Firefox 66.) See [Bug 1445683 - Update aom](https://bugzilla.mozilla.org/show_bug.cgi?id=1445683) and [Bug 1475564 - Build libaom on win32](https://bugzilla.mozilla.org/show_bug.cgi?id=1475564)"
}
],
"categories":[
"Other"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n d #1",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n d #5",
"56":"n d #5",
"57":"n d #5",
"58":"n d #5",
"59":"n d #5",
"60":"n d #5",
"61":"n d #4 #5",
"62":"n d #4 #5",
"63":"n d #4",
"64":"n d #4",
"65":"a #2 #4",
"66":"a #3 #4",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n d #6",
"68":"n d #6",
"69":"n d #6",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"n"
},
"and_ff":{
"68":"n d #4"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
"1":"Supported in Edge when the AV1 Video Extension (Beta) is installed from the Microsoft Store",
"2":"Partial support in Firefox 65 refers to being enabled by default only for Windows 64-bit users (see \"Known Issues\" for lack of 32-bit support.)",
"3":"Partial support in Firefox 66 refers to being enabled by default only for Windows and macOS users",
"4":"Can be enabled in Firefox via the `media.av1.enabled` flag in `about:config`",
"5":"Only available in Firefox Nightly (applies to older versions of Firefox)",
"6":"Can be enabled in Chrome via the `#enable-av1-decoder` flag in `chrome://flags`"
},
"usage_perc_y":31.17,
"usage_perc_a":0.11,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,375 @@
{
"title":"CSS background-attachment",
"description":"Method of defining how a background image is attached to a scrollable element. Values include `scroll` (default), `fixed` and `local`.",
"spec":"https://www.w3.org/TR/css3-background/#the-background-attachment",
"status":"cr",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/background-attachment",
"title":"MDN Web Docs - background-attachment"
}
],
"bugs":[
{
"description":"iOS has an issue preventing `background-attachment: fixed` from being used with `background-size: cover` - [see details](https://stackoverflow.com/questions/21476380/background-size-on-ios)"
},
{
"description":"Chrome has an issue that occurs when using the will-change property on a selector which also has `background-attachment: fixed` defined. It causes the image to get cut off and gain whitespace around it. "
},
{
"description":"Firefox does not appear to support the `local` value when applied on a `textarea` element."
}
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"a #1",
"6":"a #1",
"7":"a #1",
"8":"a #1",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"a #1",
"3":"a #1",
"3.5":"a #1",
"3.6":"a #1",
"4":"a #1",
"5":"a #1",
"6":"a #1",
"7":"a #1",
"8":"a #1",
"9":"a #1",
"10":"a #1",
"11":"a #1",
"12":"a #1",
"13":"a #1",
"14":"a #1",
"15":"a #1",
"16":"a #1",
"17":"a #1",
"18":"a #1",
"19":"a #1",
"20":"a #1",
"21":"a #1",
"22":"a #1",
"23":"a #1",
"24":"a #1",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"a #1",
"3.2":"a #1",
"4":"a #1",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"a #1",
"9.5-9.6":"a #1",
"10.0-10.1":"a #1",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"a #2 #3",
"6.0-6.1":"a #2 #3",
"7.0-7.1":"a #2 #3",
"8":"a #2 #3",
"8.1-8.4":"a #2 #3",
"9.0-9.2":"a #2 #3",
"9.3":"a #2 #3",
"10.0-10.2":"a #2 #3",
"10.3":"a #2 #3",
"11.0-11.2":"a #2 #3",
"11.3-11.4":"a #2 #3",
"12.0-12.1":"a #2 #3",
"12.2-12.3":"a #2 #3",
"13":"a #2 #3"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"a #1",
"4.2-4.3":"a #1",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"a #2",
"10":"a #2"
},
"op_mob":{
"10":"a #1",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"a #4",
"6.2-6.4":"a #4",
"7.2-7.4":"a #4",
"8.2":"a #4",
"9.2":"a #4"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"a #4"
},
"kaios":{
"2.5":"y"
}
},
"notes":"Most mobile devices have a delay in updating the background position after scrolling a page with `fixed` backgrounds.",
"notes_by_num":{
"1":"Partial support refers to supporting `fixed` but not `local`",
"2":"Partial support refers to supporting `local` but not `fixed`",
"3":"Only supports `local` when `-webkit-overflow-scrolling: touch` is _not_ used",
"4":"Does not support `fixed`, and due [to a bug](https://bugs.chromium.org/p/chromium/issues/detail?id=627037) only supports `local` if a `border-radius` is set on the element."
},
"usage_perc_y":81.86,
"usage_perc_a":15.03,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,384 @@
{
"title":"CSS3 Background-clip: text",
"description":"Foreground Text Clipping",
"spec":"https://compat.spec.whatwg.org/#the-webkit-background-clip-property",
"status":"ls",
"links":[
{
"url":"https://lists.w3.org/Archives/Public/www-style/2016Mar/0283.html",
"title":"[css-backgrounds] Standardize 'background-clip: text'"
},
{
"url":"https://drafts.csswg.org/css-backgrounds-4/#background-clip",
"title":"CSS Backgrounds and Borders Module Level 4"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/background-clip",
"title":"MDN Web Docs - background-clip"
},
{
"url":"https://github.com/Fyrd/caniuse/issues/2821",
"title":"Add background-clip: text #2821"
},
{
"url":"https://github.com/postcss/autoprefixer/issues/1081",
"title":"background-clip: text doesn't get expected vendor prefix #1081"
}
],
"bugs":[
{
"description":"background-clip only works on Chrome, Opera, Safari as -webkit-background-clip: text; On firefox it works natively by using: background-clip: text; See details: https://developer.mozilla.org/en-US/docs/Web/CSS/background-clip#Browser_compatibility"
}
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"a x #3",
"13":"a x #3",
"14":"a x #3",
"15":"y #2",
"16":"y #2",
"17":"y #2",
"18":"y #2",
"76":"a x"
},
"firefox":{
"2":"u",
"3":"u",
"3.5":"u",
"3.6":"u",
"4":"u",
"5":"u",
"6":"u",
"7":"u",
"8":"u",
"9":"u",
"10":"u",
"11":"u",
"12":"u",
"13":"u",
"14":"u",
"15":"u",
"16":"u",
"17":"u",
"18":"u",
"19":"u",
"20":"u",
"21":"u",
"22":"u",
"23":"u",
"24":"u",
"25":"u",
"26":"u",
"27":"u",
"28":"u",
"29":"u",
"30":"u",
"31":"u",
"32":"u",
"33":"u",
"34":"u",
"35":"u",
"36":"u",
"37":"u",
"38":"u",
"39":"u",
"40":"u",
"41":"u",
"42":"u",
"43":"u",
"44":"u",
"45":"u",
"46":"u",
"47":"u",
"48":"n #1",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"a x",
"5":"a x",
"6":"a x",
"7":"a x",
"8":"a x",
"9":"a x",
"10":"a x",
"11":"a x",
"12":"a x",
"13":"a x",
"14":"a x",
"15":"a x",
"16":"a x",
"17":"a x",
"18":"a x",
"19":"a x",
"20":"a x",
"21":"a x",
"22":"a x",
"23":"a x",
"24":"a x",
"25":"a x",
"26":"a x",
"27":"a x",
"28":"a x",
"29":"a x",
"30":"a x",
"31":"a x",
"32":"a x",
"33":"a x",
"34":"a x",
"35":"a x",
"36":"a x",
"37":"a x",
"38":"a x",
"39":"a x",
"40":"a x",
"41":"a x",
"42":"a x",
"43":"a x",
"44":"a x",
"45":"a x",
"46":"a x",
"47":"a x",
"48":"a x",
"49":"a x",
"50":"a x",
"51":"a x",
"52":"a x",
"53":"a x",
"54":"a x",
"55":"a x",
"56":"a x",
"57":"a x",
"58":"a x",
"59":"a x",
"60":"a x",
"61":"a x",
"62":"a x",
"63":"a x",
"64":"a x",
"65":"a x",
"66":"a x",
"67":"a x",
"68":"a x",
"69":"a x",
"70":"a x",
"71":"a x",
"72":"a x",
"73":"a x",
"74":"a x",
"75":"a x",
"76":"a x",
"77":"a x",
"78":"a x",
"79":"a x",
"80":"a x"
},
"safari":{
"3.1":"u",
"3.2":"u",
"4":"a x",
"5":"a x",
"5.1":"a x",
"6":"a x",
"6.1":"a x",
"7":"a x",
"7.1":"a x",
"8":"a x",
"9":"a x",
"9.1":"a x",
"10":"a x",
"10.1":"a x",
"11":"a x",
"11.1":"a x",
"12":"a x",
"12.1":"a x",
"13":"a x",
"TP":"a x"
},
"opera":{
"9":"u",
"9.5-9.6":"u",
"10.0-10.1":"u",
"10.5":"u",
"10.6":"u",
"11":"u",
"11.1":"u",
"11.5":"u",
"11.6":"u",
"12":"u",
"12.1":"u",
"15":"u",
"16":"u",
"17":"u",
"18":"u",
"19":"u",
"20":"u",
"21":"u",
"22":"u",
"23":"u",
"24":"u",
"25":"u",
"26":"u",
"27":"u",
"28":"u",
"29":"u",
"30":"u",
"31":"u",
"32":"u",
"33":"u",
"34":"u",
"35":"u",
"36":"u",
"37":"u",
"38":"u",
"39":"u",
"40":"u",
"41":"u",
"42":"u",
"43":"u",
"44":"u",
"45":"u",
"46":"u",
"47":"u",
"48":"u",
"49":"u",
"50":"u",
"51":"u",
"52":"u",
"53":"u",
"54":"u",
"55":"u",
"56":"u",
"57":"u",
"58":"u",
"60":"u",
"62":"u"
},
"ios_saf":{
"3.2":"u",
"4.0-4.1":"u",
"4.2-4.3":"u",
"5.0-5.1":"u",
"6.0-6.1":"u",
"7.0-7.1":"u",
"8":"u",
"8.1-8.4":"u",
"9.0-9.2":"u",
"9.3":"u",
"10.0-10.2":"u",
"10.3":"u",
"11.0-11.2":"u",
"11.3-11.4":"u",
"12.0-12.1":"u",
"12.2-12.3":"u",
"13":"u"
},
"op_mini":{
"all":"u"
},
"android":{
"2.1":"u",
"2.2":"u",
"2.3":"u",
"3":"u",
"4":"u",
"4.1":"u",
"4.2-4.3":"u",
"4.4":"u",
"4.4.3-4.4.4":"u",
"76":"u"
},
"bb":{
"7":"u",
"10":"u"
},
"op_mob":{
"10":"u",
"11":"u",
"11.1":"u",
"11.5":"u",
"12":"u",
"12.1":"u",
"46":"u"
},
"and_chr":{
"76":"u"
},
"and_ff":{
"68":"u"
},
"ie_mob":{
"10":"u",
"11":"u"
},
"and_uc":{
"12.12":"u"
},
"samsung":{
"4":"u",
"5.0-5.4":"u",
"6.2-6.4":"u",
"7.2-7.4":"u",
"8.2":"u",
"9.2":"u"
},
"and_qq":{
"1.2":"u"
},
"baidu":{
"7.12":"u"
},
"kaios":{
"2.5":"n #1"
}
},
"notes":"Chrome, Opera, Safari work only by using the prefix: -webkit-background-clip: text; Firefox 49+ as background-clip: text;",
"notes_by_num":{
"1":"Can be enabled by setting layout.css.background-clip-text.enabled to 'true'",
"2":"Natively supported on Edge 15+ See Browser Compatibility chart: https://developer.mozilla.org/en-US/docs/Web/CSS/background-clip",
"3":"Microsoft Edge supports this feature using the -webkit- instead of -ms- prefix See: https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/10945389-background-clip-text"
},
"usage_perc_y":6.03,
"usage_perc_a":32.06,
"ucprefix":false,
"parent":"",
"keywords":"background-clip,text,clip",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":false
}

View File

@@ -0,0 +1,385 @@
{
"title":"CSS3 Background-image options",
"description":"New properties to affect background images, including background-clip, background-origin and background-size",
"spec":"https://www.w3.org/TR/css3-background/#backgrounds",
"status":"cr",
"links":[
{
"url":"http://www.standardista.com/css3/css3-background-properties",
"title":"Detailed compatibility tables and demos"
},
{
"url":"https://github.com/louisremi/background-size-polyfill",
"title":"Polyfill for IE7-8"
},
{
"url":"https://developer.mozilla.org/en/docs/Web/CSS/background-image",
"title":"MDN Web Docs - background-image"
}
],
"bugs":[
{
"description":"iOS Safari has buggy behavior with `background-size: cover;` on a page's body."
},
{
"description":"iOS Safari has buggy behavior with `background-size: cover;` + `background-attachment: fixed;`"
},
{
"description":"Safari (OS X and iOS) and Chrome do not support background-size: 100% <height>px; in combination with SVG images, it leaves them at the original size while other browsers stretch the vector image correctly while leaving the height at the specified number of pixels."
},
{
"description":"Android 4.3 browser and below are reported to not support percentages in `background-size`"
}
],
"categories":[
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"a x",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"a #3",
"5":"a #3",
"6":"a #3",
"7":"a #3",
"8":"a #3",
"9":"a #3",
"10":"a #3",
"11":"a #3",
"12":"a #3",
"13":"a #3",
"14":"a #3",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"a #2 #3",
"3.2":"a #2 #3",
"4":"a #2 #3",
"5":"a #2 #3",
"5.1":"a #2 #3",
"6":"a #2 #3",
"6.1":"a #2 #3",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"a x",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"a",
"4.0-4.1":"a",
"4.2-4.3":"a",
"5.0-5.1":"a #3",
"6.0-6.1":"a",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"a #1"
},
"android":{
"2.1":"a x",
"2.2":"a x #3",
"2.3":"a x #3",
"3":"a #3",
"4":"a #3",
"4.1":"a #3",
"4.2-4.3":"a #3",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y",
"10":"y"
},
"op_mob":{
"10":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"Firefox, Chrome and Safari support the unofficial `-webkit-background-clip: text` (only with prefix). Safari does not support `-webkit-background-clip: text;` for `<button>` elements. But you can put `<span>` inside `<button>` to get the same result.",
"notes_by_num":{
"1":"Partial support in Opera Mini refers to not supporting background sizing or background attachments. However Opera Mini 7.5 supports background sizing (including cover and contain values).",
"2":"Partial support in Safari 6 refers to not supporting background sizing offset from edges syntax.",
"3":"Does not support `background-size` values in the `background` shorthand"
},
"usage_perc_y":96.7,
"usage_perc_a":2.24,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,380 @@
{
"title":"background-position-x & background-position-y",
"description":"CSS longhand properties to define x or y positions separately.",
"spec":"https://drafts.csswg.org/css-backgrounds-4/#background-position-longhands",
"status":"unoff",
"links":[
{
"url":"https://msdn.microsoft.com/en-us/library/ms530719%28v=vs.85%29.aspx",
"title":"MSDN article"
},
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=550426",
"title":"Firefox implementation bug"
},
{
"url":"http://snook.ca/archives/html_and_css/background-position-x-y",
"title":"Blog post on background-position-x & y properties"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/background-position-x",
"title":"MDN Web Docs - background-position-x"
},
{
"url":"https://developer.mozilla.org/en/docs/Web/CSS/background-position-y",
"title":"MDN Web Docs - background-position-y"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"y",
"3.2":"y",
"4":"y",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"y",
"4.0-4.1":"y",
"4.2-4.3":"y",
"5.0-5.1":"y",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"y",
"2.2":"y",
"2.3":"y",
"3":"y",
"4":"y",
"4.1":"y",
"4.2-4.3":"y",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"n"
}
},
"notes":"A workaround for the lack of support in Firefox 31 - Firefox 48 is to use [CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_variables). See [this Stack Overflow answer](https://stackoverflow.com/a/29282573/94197) for an example.",
"notes_by_num":{
},
"usage_perc_y":96.79,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,368 @@
{
"title":"CSS background-repeat round and space",
"description":"Allows CSS background images to be repeated without clipping.",
"spec":"https://www.w3.org/TR/css3-background/#the-background-repeat",
"status":"cr",
"links":[
{
"url":"https://developer.mozilla.org//docs/Web/CSS/background-repeat",
"title":"MDN Web Docs - background-repeat"
},
{
"url":"https://css-tricks.com/almanac/properties/b/background-repeat/",
"title":"CSS-Tricks article on background-repeat"
}
],
"bugs":[
],
"categories":[
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"a #1",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"y"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"n",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
"1":"IE9 does not appear to render \"background-repeat: round\" correctly."
},
"usage_perc_y":97.3,
"usage_perc_a":0.09,
"ucprefix":false,
"parent":"",
"keywords":"4 value syntax,background-repeat: round,background-repeat: space",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,372 @@
{
"title":"Background Sync API",
"description":"Provides one-off and periodic synchronization for Service Workers with an onsync event.",
"spec":"https://wicg.github.io/BackgroundSync/spec/",
"status":"unoff",
"links":[
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=1217544",
"title":"Firefox support bug"
},
{
"url":"https://developer.mozilla.org/docs/Web/API/SyncManager",
"title":"SyncManager on MDN Web Docs"
},
{
"url":"https://developers.google.com/web/updates/2015/12/background-sync",
"title":"Google Developers blog: Introducing Background Sync"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"u",
"71":"u"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":72.95,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"syncmanager",
"ie_id":"backgroundsyncapi",
"chrome_id":"6170807885627392",
"firefox_id":"background-sync",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,368 @@
{
"title":"Battery Status API",
"description":"Method to provide information about the battery status of the hosting device.",
"spec":"https://www.w3.org/TR/battery-status/",
"status":"cr",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/WebAPI/Battery_Status",
"title":"MDN Web Docs - battery status"
},
{
"url":"http://pazguille.github.io/demo-battery-api/",
"title":"Simple demo"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"a x #1",
"11":"a x #1",
"12":"a x #1",
"13":"a x #1",
"14":"a x #1",
"15":"a x #1",
"16":"a #1",
"17":"a #1",
"18":"a #1",
"19":"a #1",
"20":"a #1",
"21":"a #1",
"22":"a #1",
"23":"a #1",
"24":"a #1",
"25":"a #1",
"26":"a #1",
"27":"a #1",
"28":"a #1",
"29":"a #1",
"30":"a #1",
"31":"a #1",
"32":"a #1",
"33":"a #1",
"34":"a #1",
"35":"a #1",
"36":"a #1",
"37":"a #1",
"38":"a #1",
"39":"a #1",
"40":"a #1",
"41":"a #1",
"42":"a #1",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n d",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"Firefox 52+ [removed access to this API due to privacy concerns.](https://bugzilla.mozilla.org/show_bug.cgi?id=1313580)",
"notes_by_num":{
"1":"Partial support refers to support for the older specification's `navigator.battery` rather than `navigator.getBattery()` to access the `BatteryManager`."
},
"usage_perc_y":74.29,
"usage_perc_a":0.2,
"ucprefix":false,
"parent":"",
"keywords":"navigator.battery,navigator.getbattery,batterymanager",
"ie_id":"batterystatusapi",
"chrome_id":"4537134732017664",
"firefox_id":"",
"webkit_id":"specification-battery-status-api",
"shown":true
}

375
node_modules/caniuse-db/features-json/beacon.json generated vendored Normal file
View File

@@ -0,0 +1,375 @@
{
"title":"Beacon API",
"description":"Allows data to be sent asynchronously to a server with `navigator.sendBeacon`, even after a page was closed. Useful for posting analytics data the moment a user was finished using the page.",
"spec":"https://www.w3.org/TR/beacon/",
"status":"wd",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Navigator/sendBeacon",
"title":"MDN Web Docs - Beacon"
}
],
"bugs":[
{
"description":"Chrome [has a bug](https://bugs.chromium.org/p/chromium/issues/detail?id=490015) with sendBeacon and arbitrary content-type."
},
{
"description":"Safari 11.1 \u2013 12.2 on macOS and iOS [have a bug](https://bugs.webkit.org/show_bug.cgi?id=188329) with sendBeacon in a pagehide event listener. Fixed in iOS 12.3."
},
{
"description":"Safari 11.1 \u2013 12 on iOS [can\u2019t sendBeacons to unvisited origins](https://bugs.webkit.org/show_bug.cgi?id=193508). Fixed in iOS 13."
},
{
"description":"Safari on iOS [won\u2019t sendBeacons from pages that quickly redirect to another location](https://www.ctrl.blog/entry/safari-beacon-issues.html)."
}
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":93.04,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"beacon",
"chrome_id":"5517433905348608",
"firefox_id":"",
"webkit_id":"specification-beacon-api",
"shown":true
}

View File

@@ -0,0 +1,373 @@
{
"title":"Printing Events",
"description":"Window fires `beforeprint` and `afterprint` events so the printed document can be annotated.",
"spec":"https://www.w3.org/TR/html5/webappapis.html#printing",
"status":"rec",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/Guide/Printing#Detecting_print_requests",
"title":"MDN Web Docs - Detecting print requests"
},
{
"url":"https://bugs.chromium.org/p/chromium/issues/detail?id=218205",
"title":"Chrome support bug"
},
{
"url":"https://bugs.webkit.org/show_bug.cgi?id=19937",
"title":"Safari support bug"
}
],
"bugs":[
],
"categories":[
"HTML5",
"JS API"
],
"stats":{
"ie":{
"5.5":"u",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"u",
"10":"u"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"u",
"11":"u"
},
"and_uc":{
"12.12":"u"
},
"samsung":{
"4":"u",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"y"
}
},
"notes":"Due to its wider support, consider using `window.matchMedia('print')` where possible.",
"notes_by_num":{
},
"usage_perc_y":73.85,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"print,printer,printing,beforeprint,afterprint",
"ie_id":"",
"chrome_id":"5700595042222080",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

380
node_modules/caniuse-db/features-json/bigint.json generated vendored Normal file
View File

@@ -0,0 +1,380 @@
{
"title":"BigInt",
"description":"Arbitrary-precision integers in JavaScript.",
"spec":"https://tc39.github.io/proposal-bigint/",
"status":"pr",
"links":[
{
"url":"https://github.com/tc39/proposal-bigint",
"title":"GitHub repository"
},
{
"url":"https://developers.google.com/web/updates/2018/05/bigint",
"title":"Blog article from Google Developer"
},
{
"url":"http://2ality.com/2017/03/es-integer.html",
"title":"Blog article from Dr. Axel Rauschmayer"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt",
"title":"MDN Web Docs"
},
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=1366287",
"title":"Firefox implementation bug"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n d #1",
"66":"n d #1",
"67":"n d #1",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"y"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
"1":"Can be enabled by setting `javascript.options.bigint` to \"True\" in `about:config`"
},
"usage_perc_y":70.54,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"int,integer,precision",
"ie_id":"",
"chrome_id":"5371603852460032",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

368
node_modules/caniuse-db/features-json/blobbuilder.json generated vendored Normal file
View File

@@ -0,0 +1,368 @@
{
"title":"Blob constructing",
"description":"Construct Blobs (binary large objects) either using the BlobBuilder API (deprecated) or the Blob constructor.",
"spec":"https://www.w3.org/TR/FileAPI/#constructorBlob",
"status":"wd",
"links":[
{
"url":"https://developer.mozilla.org/en/DOM/BlobBuilder",
"title":"MDN Web Docs - BlobBuilder"
},
{
"url":"https://developer.mozilla.org/en-US/docs/DOM/Blob",
"title":"MDN Web Docs - Blobs"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"a x",
"7":"a x",
"8":"a x",
"9":"a x",
"10":"a x",
"11":"a x",
"12":"a x",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"a x",
"9":"a x",
"10":"a x",
"11":"a x",
"12":"a x",
"13":"a x",
"14":"a x",
"15":"a x",
"16":"a x",
"17":"a x",
"18":"a x",
"19":"a x",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"a x",
"4":"a x",
"4.1":"a x",
"4.2-4.3":"a x",
"4.4":"a x",
"4.4.3-4.4.4":"a x",
"76":"y"
},
"bb":{
"7":"n",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"Partial support refers to only supporting the now deprecated BlobBuilder to create blobs.",
"notes_by_num":{
},
"usage_perc_y":96.33,
"usage_perc_a":0.54,
"ucprefix":true,
"parent":"fileapi",
"keywords":"",
"ie_id":"blob",
"chrome_id":"5328783104016384",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

369
node_modules/caniuse-db/features-json/bloburls.json generated vendored Normal file
View File

@@ -0,0 +1,369 @@
{
"title":"Blob URLs",
"description":"Method of creating URL handles to the specified File or Blob object.",
"spec":"https://www.w3.org/TR/FileAPI/#url",
"status":"wd",
"links":[
{
"url":"https://developer.mozilla.org/en/DOM/window.URL.createObjectURL",
"title":"MDN Web Docs - createObjectURL"
}
],
"bugs":[
{
"description":"Safari has [a serious issue](https://jsfiddle.net/24FhL/) with blobs that are of the type `application/octet-stream`"
},
{
"description":"Chrome on iOS appears to have an issue when opening Blob URLs in another tab [see workaround](https://stackoverflow.com/questions/24485077/how-to-open-blob-url-on-chrome-ios). The same issue occurs for Samsung Internet."
}
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"y #1",
"11":"y #1"
},
"edge":{
"12":"y #1",
"13":"y #1",
"14":"y #1",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"y x",
"9":"y x",
"10":"y x",
"11":"y x",
"12":"y x",
"13":"y x",
"14":"y x",
"15":"y x",
"16":"y x",
"17":"y x",
"18":"y x",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"y x",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"y x",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"y x",
"4.1":"y x",
"4.2-4.3":"y x",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"n",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"Created blob url can't be used as object or iframe src"
},
"usage_perc_y":96.86,
"usage_perc_a":0,
"ucprefix":false,
"parent":"fileapi",
"keywords":"createobjecturl,revokeobjecturl",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

376
node_modules/caniuse-db/features-json/border-image.json generated vendored Normal file
View File

@@ -0,0 +1,376 @@
{
"title":"CSS3 Border images",
"description":"Method of using images for borders",
"spec":"https://www.w3.org/TR/css3-background/#border-images",
"status":"cr",
"links":[
{
"url":"https://www.webplatform.org/docs/css/properties/border-image",
"title":"WebPlatform Docs"
},
{
"url":"https://developer.mozilla.org//docs/Web/CSS/border-image",
"title":"MDN Web Docs - Border image"
}
],
"bugs":[
{
"description":"Firefox is not able to stretch svg images across an element - [bug report](https://bugzilla.mozilla.org/show_bug.cgi?id=619500)."
},
{
"description":"WebKit browsers have a different rendering with the `round` value from other browsers, stretching the border rather than repeating it in certain cases [see bug](https://bugs.webkit.org/show_bug.cgi?id=155955)."
}
],
"categories":[
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"y"
},
"edge":{
"12":"y #1",
"13":"y #1",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"a x #2 #3",
"3.6":"a x #2 #3",
"4":"a x #2 #3",
"5":"a x #2 #3",
"6":"a x #2 #3",
"7":"a x #2 #3",
"8":"a x #2 #3",
"9":"a x #2 #3",
"10":"a x #2 #3",
"11":"a x #2 #3",
"12":"a x #2 #3",
"13":"a x #2 #3",
"14":"a x #2 #3",
"15":"a #2",
"16":"a #2",
"17":"a #2",
"18":"a #2",
"19":"a #2",
"20":"a #2",
"21":"a #2",
"22":"a #2",
"23":"a #2",
"24":"a #2",
"25":"a #2",
"26":"a #2",
"27":"a #2",
"28":"a #2",
"29":"a #2",
"30":"a #2",
"31":"a #2",
"32":"a #2",
"33":"a #2",
"34":"a #2",
"35":"a #2",
"36":"a #2",
"37":"a #2",
"38":"a #2",
"39":"a #2",
"40":"a #2",
"41":"a #2",
"42":"a #2",
"43":"a #2",
"44":"a #2",
"45":"a #2",
"46":"a #2",
"47":"a #2",
"48":"a #2",
"49":"a #2",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"a x #1 #2 #3 #4",
"5":"a x #1 #2 #3 #4",
"6":"a x #1 #2 #3 #4",
"7":"a x #1 #2 #3 #4",
"8":"a x #1 #2 #3 #4",
"9":"a x #1 #2 #3 #4",
"10":"a x #1 #2 #3 #4",
"11":"a x #1 #2 #3 #4",
"12":"a x #1 #2 #3 #4",
"13":"a x #1 #2 #3 #4",
"14":"a x #1 #2 #3 #4",
"15":"a #1 #2 #4",
"16":"a #1 #2 #4",
"17":"a #1 #2 #4",
"18":"a #1 #2 #4",
"19":"a #1 #2 #4",
"20":"a #1 #2 #4",
"21":"a #1 #2 #4",
"22":"a #1 #2 #4",
"23":"a #1 #2 #4",
"24":"a #1 #2 #4",
"25":"a #1 #2 #4",
"26":"a #1 #2 #4",
"27":"a #1 #2 #4",
"28":"a #1 #2 #4",
"29":"a #1 #2 #4",
"30":"a #1 #2",
"31":"a #1 #2",
"32":"a #1 #2",
"33":"a #1 #2",
"34":"a #1 #2",
"35":"a #1 #2",
"36":"a #1 #2",
"37":"a #1 #2",
"38":"a #1 #2",
"39":"a #1 #2",
"40":"a #1 #2",
"41":"a #1 #2",
"42":"a #1 #2",
"43":"a #1 #2",
"44":"a #1 #2",
"45":"a #1 #2",
"46":"a #1 #2",
"47":"a #1 #2",
"48":"a #1 #2",
"49":"a #1 #2",
"50":"a #1 #2",
"51":"a #2",
"52":"a #2",
"53":"a #2",
"54":"a #2",
"55":"a #2",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"a x #1 #2 #3 #4",
"3.2":"a x #1 #2 #3 #4",
"4":"a x #1 #2 #3 #4",
"5":"a x #1 #2 #3 #4",
"5.1":"a x #1 #2 #3 #4",
"6":"a #1 #2 #4",
"6.1":"a #1 #2 #4",
"7":"a #1 #2 #4",
"7.1":"a #1 #2 #4",
"8":"a #1 #2 #4",
"9":"a #1 #2 #4",
"9.1":"y #1",
"10":"y #1",
"10.1":"y #1",
"11":"y #1",
"11.1":"y #1",
"12":"y #1",
"12.1":"y #1",
"13":"y #1",
"TP":"y #1"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"a #2 #3 #4",
"10.6":"a #2 #3 #4",
"11":"a x #2 #3 #4",
"11.1":"a x #2 #3 #4",
"11.5":"a x #2 #3 #4",
"11.6":"a x #2 #3 #4",
"12":"a x #2 #3 #4",
"12.1":"a x #2 #3 #4",
"15":"a #1 #2",
"16":"a #1 #2",
"17":"a #1 #2",
"18":"a #1 #2",
"19":"a #1 #2",
"20":"a #1 #2",
"21":"a #1 #2",
"22":"a #1 #2",
"23":"a #1 #2",
"24":"a #1 #2",
"25":"a #1 #2",
"26":"a #1 #2",
"27":"a #1 #2",
"28":"a #1 #2",
"29":"a #1 #2",
"30":"a #1 #2",
"31":"a #1 #2",
"32":"a #1 #2",
"33":"a #1 #2",
"34":"a #1 #2",
"35":"a #1 #2",
"36":"a #1 #2",
"37":"a #1 #2",
"38":"a #2",
"39":"a #2",
"40":"a #2",
"41":"a #2",
"42":"a #2",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"a x #1 #2 #3 #4",
"4.0-4.1":"a x #1 #2 #3 #4",
"4.2-4.3":"a x #1 #2 #3 #4",
"5.0-5.1":"a x #1 #2 #3 #4",
"6.0-6.1":"a #1 #2 #4",
"7.0-7.1":"a #1 #2 #4",
"8":"a #1 #2 #4",
"8.1-8.4":"a #1 #2 #4",
"9.0-9.2":"a #1 #2 #4",
"9.3":"y #1",
"10.0-10.2":"y #1",
"10.3":"y #1",
"11.0-11.2":"y #1",
"11.3-11.4":"y #1",
"12.0-12.1":"y #1",
"12.2-12.3":"y #1",
"13":"y #1"
},
"op_mini":{
"all":"a x #2 #3 #4"
},
"android":{
"2.1":"a x #1 #2 #3 #4",
"2.2":"a x #1 #2 #3 #4",
"2.3":"a x #1 #2 #3 #4",
"3":"a x #1 #2 #3 #4",
"4":"a x #1 #2 #3 #4",
"4.1":"a x #1 #2 #3 #4",
"4.2-4.3":"a x #1 #2 #3 #4",
"4.4":"a #1 #2",
"4.4.3-4.4.4":"a #1 #2",
"76":"a #1 #2"
},
"bb":{
"7":"a #1 #2 #3 #4",
"10":"a #1 #2 #4"
},
"op_mob":{
"10":"n",
"11":"a x #2 #3 #4",
"11.1":"a x #2 #3 #4",
"11.5":"a x #2 #3 #4",
"12":"a x #2 #3 #4",
"12.1":"a x #2 #3 #4",
"46":"a #1 #2"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"y"
},
"and_uc":{
"12.12":"a #1 #2"
},
"samsung":{
"4":"a #1 #2",
"5.0-5.4":"a #2",
"6.2-6.4":"a #2",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"a #2"
},
"baidu":{
"7.12":"a #2"
},
"kaios":{
"2.5":"a #2"
}
},
"notes":"Note that both the `border-style` and `border-width` must be specified (not set to `none` or 0) for border-images to work.",
"notes_by_num":{
"1":"Has a bug where `border-image` incorrectly overrides `border-style`. See [test case](https://codepen.io/Savago/pen/yYrgyK), [WebKit bug](https://bugs.webkit.org/show_bug.cgi?id=99922), [discussion](https://github.com/whatwg/compat/issues/17)",
"2":"Partial support refers to not supporting `border-image-repeat: space`",
"3":"Partial support refers to supporting the shorthand syntax, but not the individual properties (`border-image-source`, `border-image-slice`, etc). ",
"4":"Partial support refers to not supporting `border-image-repeat: round`"
},
"usage_perc_y":89.98,
"usage_perc_a":8.82,
"ucprefix":false,
"parent":"",
"keywords":"border-image-source,border-image-slice,border-image-repeat,border-image-width,,border-image-outset",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,392 @@
{
"title":"CSS3 Border-radius (rounded corners)",
"description":"Method of making the border corners round. Covers support for the shorthand `border-radius` as well as the long-hand properties (e.g. `border-top-left-radius`)",
"spec":"https://www.w3.org/TR/css3-background/#the-border-radius",
"status":"cr",
"links":[
{
"url":"http://border-radius.com",
"title":"Border-radius CSS Generator"
},
{
"url":"http://muddledramblings.com/table-of-css3-border-radius-compliance",
"title":"Detailed compliance table"
},
{
"url":"http://css3pie.com/",
"title":"Polyfill which includes border-radius"
},
{
"url":"https://www.webplatform.org/docs/css/properties/border-radius",
"title":"WebPlatform Docs"
},
{
"url":"https://developer.mozilla.org/en/docs/Web/CSS/border-radius",
"title":"MDN Web Docs - CSS border-radius"
}
],
"bugs":[
{
"description":"Android Browser 2.3 does not support % value for `border-radius`."
},
{
"description":"Border-radius does not work on fieldset elements in IE9."
},
{
"description":"The stock browser on the Samsung Galaxy S4 with Android 4.2 does not support the `border-radius` shorthand property but does support the long-hand properties for each corner like `border-top-left-radius`."
},
{
"description":"Dotted and dashed rounded border corners are rendered as solid in Firefox. Fixed since Firefox 50. [see bug](https://bugzilla.mozilla.org/show_bug.cgi?id=382721)"
}
],
"categories":[
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"a x #2",
"3":"y x #2",
"3.5":"y x #2",
"3.6":"y x #2",
"4":"y #2",
"5":"y #2",
"6":"y #2",
"7":"y #2",
"8":"y #2",
"9":"y #2",
"10":"y #2",
"11":"y #2",
"12":"y #2",
"13":"y #2",
"14":"y #2",
"15":"y #2",
"16":"y #2",
"17":"y #2",
"18":"y #2",
"19":"y #2",
"20":"y #2",
"21":"y #2",
"22":"y #2",
"23":"y #2",
"24":"y #2",
"25":"y #2",
"26":"y #2",
"27":"y #2",
"28":"y #2",
"29":"y #2",
"30":"y #2",
"31":"y #2",
"32":"y #2",
"33":"y #2",
"34":"y #2",
"35":"y #2",
"36":"y #2",
"37":"y #2",
"38":"y #2",
"39":"y #2",
"40":"y #2",
"41":"y #2",
"42":"y #2",
"43":"y #2",
"44":"y #2",
"45":"y #2",
"46":"y #2",
"47":"y #2",
"48":"y #2",
"49":"y #2",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y x",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"y x",
"3.2":"y x",
"4":"y x",
"5":"y",
"5.1":"y #1",
"6":"y #1",
"6.1":"y #1",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"y x",
"4.0-4.1":"y",
"4.2-4.3":"y",
"5.0-5.1":"y",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"y x",
"2.2":"y",
"2.3":"y",
"3":"y",
"4":"y",
"4.1":"y",
"4.2-4.3":"y",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y #2"
}
},
"notes":"",
"notes_by_num":{
"1":"Safari 6.1 and earlier did not apply `border-radius` correctly to image borders: https://stackoverflow.com/q/17202128",
"2":"Dotted and dashed rounded border corners are rendered as solid in Firefox. [see bug](https://bugzilla.mozilla.org/show_bug.cgi?id=382721)"
},
"usage_perc_y":97.4,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"roundedcorners, border radius,-moz-border-radius",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,368 @@
{
"title":"BroadcastChannel",
"description":"BroadcastChannel allows scripts from the same origin but other browsing contexts (windows, workers) to send each other messages.",
"spec":"https://html.spec.whatwg.org/multipage/comms.html#broadcasting-to-other-browsing-contexts",
"status":"ls",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel",
"title":"MDN Web Docs - Broadcast Channel"
},
{
"url":"https://github.com/pubkey/broadcast-channel",
"title":"Shim - Broadcast Channel based on Localstorage, Indexeddb or Sockets"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":76.84,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"broadcast,channel,messaging",
"ie_id":"",
"chrome_id":"4585496197988352",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

378
node_modules/caniuse-db/features-json/brotli.json generated vendored Normal file
View File

@@ -0,0 +1,378 @@
{
"title":"Brotli Accept-Encoding/Content-Encoding",
"description":"More effective lossless compression algorithm than gzip and deflate.",
"spec":"https://tools.ietf.org/html/rfc7932",
"status":"other",
"links":[
{
"url":"http://google-opensource.blogspot.com/2015/09/introducing-brotli-new-compression.html",
"title":"Introducing Brotli"
},
{
"url":"https://groups.google.com/a/chromium.org/forum/m/#!msg/blink-dev/JufzX024oy0/WEOGbN43AwAJ",
"title":"Blink's intent to ship"
},
{
"url":"https://github.com/google/brotli",
"title":"Official code repository"
},
{
"url":"https://bugs.webkit.org/show_bug.cgi?id=154859",
"title":"WebKit Bug 154859: Add support for format brotli for HTTP compression"
}
],
"bugs":[
],
"categories":[
"Other"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n d #1",
"50":"y #2",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"y #3",
"11.1":"y #3",
"12":"y #3",
"12.1":"y #3",
"13":"y #3",
"TP":"y #3"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n d #1",
"37":"n d #1",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y #2"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"Supported in Chrome and Opera behind the 'Brotli Content-Encoding' flag",
"2":"Enabled since 27 May 2016",
"3":"Support starting with macOS 10.13 High Sierra"
},
"usage_perc_y":91.96,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"http,compression,accept,content,encoding",
"ie_id":"brotlicompresseddataformat",
"chrome_id":"5420797577396224",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

412
node_modules/caniuse-db/features-json/calc.json generated vendored Normal file
View File

@@ -0,0 +1,412 @@
{
"title":"calc() as CSS unit value",
"description":"Method of allowing calculated values for length units, i.e. `width: calc(100% - 3em)`",
"spec":"https://www.w3.org/TR/css3-values/#calc",
"status":"cr",
"links":[
{
"url":"https://hacks.mozilla.org/2010/06/css3-calc/",
"title":"Mozilla Hacks article"
},
{
"url":"https://developer.mozilla.org/en/docs/Web/CSS/calc",
"title":"MDN Web Docs - calc"
},
{
"url":"https://www.webplatform.org/docs/css/functions/calc",
"title":"WebPlatform Docs"
}
],
"bugs":[
{
"description":"IE 9 - 11 and Edge do not support `width: calc()` on table cells. [Bug Report](https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/10982196/)"
},
{
"description":"IE 9 - 11 don't render `box-shadow` when `calc()` is used for any of the values"
},
{
"description":"IE10 crashes when a div with a property using `calc()` has a child with [same property with inherit](https://stackoverflow.com/questions/19423384/css-less-calc-method-is-crashing-my-ie10)."
},
{
"description":"IE10, IE11, and Edge < 14 don't support using `calc()` inside a `transform`. [Bug report](https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/104773/)"
},
{
"description":"IE11 is reported to have trouble with `calc()` with nested expressions, e.g. `width: calc((100% - 10px) / 3);` (i.e. it rounds differently)"
},
{
"description":"IE11 is reported to not support `calc()` correctly in [generated content](https://stackoverflow.com/questions/31323915/internet-explorer-incorrectly-calculates-percentage-height-for-generated-content)"
},
{
"description":"IE11 does not support transitioning values set with `calc()`"
},
{
"description":"Safari & iOS Safari (both 6 and 7) does not support viewport units (`vw`, `vh`, etc) in `calc()`."
},
{
"description":"IE & Edge are reported to not support calc inside a 'flex'. (Not tested on older versions)\r\nThis example does not work: `flex: 1 1 calc(50% - 20px);`"
},
{
"description":"IE does not support `calc()` on color functions. Example: `color: hsl(calc(60 * 2), 100%, 50%)`."
},
{
"description":"Firefox <48 does not support `calc()` inside the `line-height`, `stroke-width`, `stroke-dashoffset`, and `stroke-dasharray` properties. [Bug report](https://bugzilla.mozilla.org/show_bug.cgi?id=594933)"
},
{
"description":"Firefox does not support `width: calc()` on table cells. [Bug Report](https://bugzilla.mozilla.org/show_bug.cgi?id=1297576)"
},
{
"description":"Firefox does not support `calc()` on color functions. Example: `color: hsl(calc(60 * 2), 100%, 50%)`. [Bug Report](https://bugzilla.mozilla.org/show_bug.cgi?id=984021)"
}
],
"categories":[
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"a #2",
"10":"a #3",
"11":"a #3"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"y x",
"5":"y x",
"6":"y x",
"7":"y x",
"8":"y x",
"9":"y x",
"10":"y x",
"11":"y x",
"12":"y x",
"13":"y x",
"14":"y x",
"15":"y x",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"y x",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"y x",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"a #1",
"4.4.3-4.4.4":"a #1",
"76":"y"
},
"bb":{
"7":"n",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"Support can be somewhat emulated in older versions of IE using the non-standard `expression()` syntax.\r\n\r\nDue to the way browsers handle [sub-pixel rounding](http://ejohn.org/blog/sub-pixel-problems-in-css/) differently, layouts using `calc()` expressions may have unexpected results.",
"notes_by_num":{
"1":"Partial support in Android Browser 4.4 refers to the browser lacking the ability to multiply and divide values.",
"2":"Partial support in IE9 refers to the browser crashing when used as a `background-position` value.",
"3":"Partial support in IE10/IE11 refers to calc not working properly with various use cases mentioned in known issues"
},
"usage_perc_y":94.6,
"usage_perc_a":2.02,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"csscalc",
"chrome_id":"5765241438732288",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,364 @@
{
"title":"Canvas blend modes",
"description":"Method of defining the effect resulting from overlaying two layers on a Canvas element.",
"spec":"https://www.w3.org/TR/compositing-1/#blending",
"status":"cr",
"links":[
{
"url":"http://blogs.adobe.com/webplatform/2013/01/28/blending-features-in-canvas/",
"title":"Blog post"
}
],
"bugs":[
],
"categories":[
"Canvas"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":94.41,
"usage_perc_a":0,
"ucprefix":false,
"parent":"canvas",
"keywords":"",
"ie_id":"compositingandblendingincanvas2d",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

377
node_modules/caniuse-db/features-json/canvas-text.json generated vendored Normal file
View File

@@ -0,0 +1,377 @@
{
"title":"Text API for Canvas",
"description":"Method of displaying text on Canvas elements",
"spec":"https://html.spec.whatwg.org/multipage/scripting.html#drawing-text-to-the-bitmap",
"status":"ls",
"links":[
{
"url":"https://developer.mozilla.org/en/Drawing_text_using_a_canvas#Additional_examples",
"title":"Examples by Mozilla"
},
{
"url":"http://code.google.com/p/canvas-text/",
"title":"Support library"
},
{
"url":"https://raw.github.com/phiggins42/has.js/master/detect/graphics.js#canvas-text",
"title":"has.js test"
},
{
"url":"https://www.webplatform.org/docs/apis/canvas/CanvasRenderingContext2D/fillText",
"title":"WebPlatform Docs"
}
],
"bugs":[
],
"categories":[
"Canvas",
"HTML5"
],
"stats":{
"ie":{
"5.5":"n",
"6":"p",
"7":"p",
"8":"p",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"p",
"3":"p",
"3.5":"y",
"3.6":"y",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"p",
"3.2":"p",
"4":"y",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"p",
"9.5-9.6":"p",
"10.0-10.1":"p",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"y",
"4.0-4.1":"y",
"4.2-4.3":"y",
"5.0-5.1":"y",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"y",
"2.2":"y",
"2.3":"y",
"3":"y",
"4":"y",
"4.1":"y",
"4.2-4.3":"y",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y",
"10":"y"
},
"op_mob":{
"10":"p",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":97.38,
"usage_perc_a":0,
"ucprefix":false,
"parent":"canvas",
"keywords":"",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

407
node_modules/caniuse-db/features-json/canvas.json generated vendored Normal file
View File

@@ -0,0 +1,407 @@
{
"title":"Canvas (basic support)",
"description":"Method of generating fast, dynamic graphics using JavaScript.",
"spec":"https://html.spec.whatwg.org/multipage/scripting.html#the-canvas-element",
"status":"ls",
"links":[
{
"url":"https://developer.mozilla.org/en/Canvas_tutorial",
"title":"Tutorial by Mozilla"
},
{
"url":"http://glimr.rubyforge.org/cake/canvas.html",
"title":"Animation kit"
},
{
"url":"http://diveintohtml5.info/canvas.html",
"title":"Another tutorial"
},
{
"url":"https://github.com/arv/ExplorerCanvas",
"title":"Implementation for Internet Explorer"
},
{
"url":"https://raw.github.com/phiggins42/has.js/master/detect/graphics.js#canvas",
"title":"has.js test"
},
{
"url":"https://skilled.co/html-canvas/",
"title":"Canvas Tutorial & Cheat Sheet"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API",
"title":"MDN Web Docs - Canvas API"
}
],
"bugs":[
{
"description":"The Android browser does not support clipping on HTML5 canvas. See the bug filed here: https://issuetracker.google.com/issues/36934492"
},
{
"description":"Older versions of iOS did not support video as a source for the canvas `drawImage()`, though it does appear to work as of iOS 8 [test case](https://jsfiddle.net/zL8KC/)"
},
{
"description":"Limits of `toDataURL()` for iOS:\r\n- The maximum size for decoded GIF, PNG, and TIFF images is 3 megapixels for devices with less than 256 MB RAM and 5 megapixels for devices with greater or equal than 256 MB RAM.\r\n- The maximum size for a canvas element is 3 megapixels for devices with less than 256 MB RAM and 5 megapixels for devices with greater or equal than 256 MB RAM.\r\n- JavaScript execution time is limited to 10 seconds for each top-level entry point."
},
{
"description":"In IE 11 `canvas.toDataURL()` does not work if the canvas has images with data URI sources [see bug](https://connect.microsoft.com/IE/Feedback/Details/828416)"
},
{
"description":"IE 10 canvas doesn't support `setLineDash` or `lineDashOffset` [see bug](https://social.msdn.microsoft.com/Forums/en-US/85007e72-90ad-4bd9-affd-9a24702219e6/canvasrenderingcontext2dsetlinedash-and-linedashoffset-missing?forum=winappswithhtml5) "
},
{
"description":"IE and Edge does not support globalAlpha for drawImage of SVG graphics. [see bug](https://connect.microsoft.com/IE/feedback/details/1847897/globalalpha-ignored-when-drawing-svg-to-canvas) [see testcase](https://jsfiddle.net/p7b0wmcu/)"
}
],
"categories":[
"Canvas",
"HTML5"
],
"stats":{
"ie":{
"5.5":"n",
"6":"p",
"7":"p",
"8":"p",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"a #1",
"3":"a #1",
"3.5":"a #1",
"3.6":"y",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"a #1",
"3.2":"a #1",
"4":"y",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"y",
"9.5-9.6":"y",
"10.0-10.1":"y",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"y",
"4.0-4.1":"y",
"4.2-4.3":"y",
"5.0-5.1":"y",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"a #2"
},
"android":{
"2.1":"a #1",
"2.2":"a #1",
"2.3":"a #1",
"3":"y",
"4":"y",
"4.1":"y",
"4.2-4.3":"y",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y",
"10":"y"
},
"op_mob":{
"10":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"For screen readers, IE, Chrome & Firefox support the [accessible canvas element sub-DOM](http://www.paciellogroup.com/blog/2012/06/html5-canvas-accessibility-in-firefox-13/).\r\nFirefox & Chrome also support the drawfocus ring.",
"notes_by_num":{
"1":"Does not support `toDataURL()`",
"2":"Opera Mini supports the canvas element, but is unable to play animations or run other more complex applications."
},
"usage_perc_y":97.39,
"usage_perc_a":1.59,
"ucprefix":false,
"parent":"",
"keywords":"toDataURL()",
"ie_id":"canvas",
"chrome_id":"5100084685438976",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

368
node_modules/caniuse-db/features-json/ch-unit.json generated vendored Normal file
View File

@@ -0,0 +1,368 @@
{
"title":"ch (character) unit",
"description":"Unit representing the width of the character \"0\" in the current font, of particular use in combination with monospace fonts.",
"spec":"https://www.w3.org/TR/css3-values/#ch",
"status":"cr",
"links":[
{
"url":"https://johndjameson.com/blog/making-sense-of-ch-units/",
"title":"Blog post on using ch units"
},
{
"url":"http://revoltpuppy.com/articles/89/using-ch-an-underappreciated-css-length",
"title":"Various uses for the ch unit"
}
],
"bugs":[
],
"categories":[
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"a #1",
"10":"a #1",
"11":"a #1"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"y",
"3":"y",
"3.5":"y",
"3.6":"y",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"n",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"IE supports the `ch` unit, but unlike other browsers its width is that specifically of the \"0\" glyph, not its surrounding space. As a result, 3ch for example is shorter than the width of the string \"000\" in IE."
},
"usage_perc_y":94.7,
"usage_perc_a":1.87,
"ucprefix":false,
"parent":"",
"keywords":"ch unit,character unit",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,372 @@
{
"title":"ChaCha20-Poly1305 cipher suites for TLS",
"description":"A set of cipher suites used in Transport Layer Security (TLS) protocol, using ChaCha20 for symmetric encryption and Poly1305 for authentication.",
"spec":"https://tools.ietf.org/html/rfc7905",
"status":"other",
"links":[
{
"url":"https://security.googleblog.com/2014/04/speeding-up-and-strengthening-https.html",
"title":"Chrome article"
},
{
"url":"https://www.ssllabs.com/ssltest/viewMyClient.html",
"title":"SSL/TLS Capabilities of Your Browser by Qualys SSL Labs"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/12300414-support-chacha20-poly1305-cipher-suites-in-edge-sc",
"title":"Microsoft Edge feature request on UserVoice"
}
],
"bugs":[
],
"categories":[
"Security"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"y #1",
"34":"y #1",
"35":"y #1",
"36":"y #1",
"37":"y #1",
"38":"y #1",
"39":"y #1",
"40":"y #1",
"41":"y #1",
"42":"y #1",
"43":"y #1",
"44":"y #1",
"45":"y #1",
"46":"y #1",
"47":"y #1",
"48":"y #1",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"u",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"Old versions of Chrome use non-standard code points for ChaCha20-Poly1305 cipher suites."
},
"usage_perc_y":91.05,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"chacha20,poly1305,tls,cipher",
"ie_id":"",
"chrome_id":"5355238106071040",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,368 @@
{
"title":"Channel messaging",
"description":"Method for having two-way communication between browsing contexts (using MessageChannel)",
"spec":"https://html.spec.whatwg.org/multipage/comms.html#channel-messaging",
"status":"ls",
"links":[
{
"url":"https://dev.opera.com/articles/view/window-postmessage-messagechannel/#channel",
"title":"An Introduction to HTML5 web messaging"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Channel_Messaging_API",
"title":"MDN Web Docs - Channel Messaging API"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n d #1",
"27":"n d #1",
"28":"n d #1",
"29":"n d #1",
"30":"n d #1",
"31":"n d #1",
"32":"n d #1",
"33":"n d #1",
"34":"n d #1",
"35":"n d #1",
"36":"n d #1",
"37":"n d #1",
"38":"n d #1",
"39":"n d #1",
"40":"n d #1",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"u",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"y",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"Supported in Firefox behind the `dom.messageChannel.enabled` flag. Reported to not work in web workers before version 41."
},
"usage_perc_y":96.75,
"usage_perc_a":0,
"ucprefix":false,
"parent":"x-doc-messaging",
"keywords":"",
"ie_id":"messagechannels",
"chrome_id":"6710044586409984",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,364 @@
{
"title":"ChildNode.remove()",
"description":"DOM node method to remove the node itself from the document.",
"spec":"https://dom.spec.whatwg.org/#dom-childnode-remove",
"status":"ls",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/ChildNode/remove",
"title":"MDN Web Docs - ChildNode.remove"
}
],
"bugs":[
],
"categories":[
"DOM"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"u",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"u",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"n",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":94.49,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"ChildNode,remove,delete,node,DOM",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

390
node_modules/caniuse-db/features-json/classlist.json generated vendored Normal file
View File

@@ -0,0 +1,390 @@
{
"title":"classList (DOMTokenList)",
"description":"Method of easily manipulating classes on elements, using the DOMTokenList object.",
"spec":"https://dom.spec.whatwg.org/#dom-element-classlist",
"status":"ls",
"links":[
{
"url":"https://hacks.mozilla.org/2010/01/classlist-in-firefox-3-6/",
"title":"Mozilla Hacks article"
},
{
"url":"https://github.com/eligrey/classList.js",
"title":"Polyfill script"
},
{
"url":"https://www.webplatform.org/docs/dom/Element/classList",
"title":"WebPlatform Docs"
},
{
"url":"https://www.sitepoint.com/exploring-classlist-api/",
"title":"SitePoint article"
},
{
"url":"http://aurelio.audero.it/demo/classlist-api-demo.html",
"title":"Demo using classList"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Element.classList",
"title":"MDN Web Docs - Element.classList"
}
],
"bugs":[
{
"description":"Opera (Presto) has `classList` support on SVG elements, but not on MathML elements."
}
],
"categories":[
"DOM",
"HTML5"
],
"stats":{
"ie":{
"5.5":"p",
"6":"p",
"7":"p",
"8":"p",
"9":"p",
"10":"a #1 #2 #3 #4",
"11":"a #1 #2 #3 #4"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"p",
"3":"p",
"3.5":"p",
"3.6":"a #2 #3",
"4":"a #2 #3",
"5":"a #2 #3",
"6":"a #2 #3",
"7":"a #2 #3",
"8":"a #2 #3",
"9":"a #2 #3",
"10":"a #2 #3",
"11":"a #2 #3",
"12":"a #2 #3",
"13":"a #2 #3",
"14":"a #2 #3",
"15":"a #2 #3",
"16":"a #2 #3",
"17":"a #2 #3",
"18":"a #2 #3",
"19":"a #2 #3",
"20":"a #2 #3",
"21":"a #2 #3",
"22":"a #2 #3",
"23":"a #2 #3",
"24":"a #3",
"25":"a #3",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"p",
"5":"p",
"6":"p",
"7":"p",
"8":"a #1 #2 #3",
"9":"a #1 #2 #3",
"10":"a #1 #2 #3",
"11":"a #1 #2 #3",
"12":"a #1 #2 #3",
"13":"a #1 #2 #3",
"14":"a #1 #2 #3",
"15":"a #1 #2 #3",
"16":"a #1 #2 #3",
"17":"a #1 #2 #3",
"18":"a #1 #2 #3",
"19":"a #1 #2 #3",
"20":"a #1 #2 #3",
"21":"a #1 #2 #3",
"22":"a #1 #2 #3",
"23":"a #2 #3",
"24":"a #3",
"25":"a #3",
"26":"a #3",
"27":"a #3",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"p",
"3.2":"p",
"4":"p",
"5":"p",
"5.1":"a #1 #2 #3",
"6":"a #1 #2 #3",
"6.1":"a #1 #2 #3",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"p",
"9.5-9.6":"p",
"10.0-10.1":"p",
"10.5":"p",
"10.6":"p",
"11":"p",
"11.1":"p",
"11.5":"a #1 #2 #3",
"11.6":"a #1 #2 #3",
"12":"a #1 #2 #3",
"12.1":"a #1 #2 #3",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"p",
"4.0-4.1":"p",
"4.2-4.3":"p",
"5.0-5.1":"a #1 #2 #3",
"6.0-6.1":"a #1 #2 #3",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"a #1 #2 #3"
},
"android":{
"2.1":"p",
"2.2":"p",
"2.3":"p",
"3":"a #1 #2 #3",
"4":"a #1 #2 #3",
"4.1":"a #1 #2 #3",
"4.2-4.3":"a #1 #2 #3",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"a #1 #2 #3",
"10":"y"
},
"op_mob":{
"10":"p",
"11":"p",
"11.1":"a #1 #2 #3",
"11.5":"a #1 #2 #3",
"12":"a #1 #2 #3",
"12.1":"a #1 #2 #3",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"a #1 #2 #3",
"11":"a #1 #2 #3"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"Does not have support for `classList` on SVG or MathML elements.",
"2":"Does not support the second parameter for the `toggle` method",
"3":"Does not support multiple parameters for the `add()` & `remove()` methods",
"4":"Does not support assign to `classList` or the `replace()` method"
},
"usage_perc_y":94.45,
"usage_perc_a":4.32,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,373 @@
{
"title":"Clear-Site-Data Header",
"description":"Sample description",
"spec":"https://www.w3.org/TR/clear-site-data/",
"status":"wd",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Clear-Site-Data",
"title":"MDN Clear-Site-Data"
},
{
"url":"https://bugs.chromium.org/p/chromium/issues/detail?id=607897",
"title":"Chromium #607897 Clear-Site-Data header"
},
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=1268889",
"title":"Bugzilla #1268889 Implement Clear-Site-Data response header to reset origin storage"
}
],
"bugs":[
],
"categories":[
"Other",
"Security"
],
"stats":{
"ie":{
"5.5":"u",
"6":"u",
"7":"u",
"8":"u",
"9":"u",
"10":"u",
"11":"u"
},
"edge":{
"12":"u",
"13":"u",
"14":"u",
"15":"u",
"16":"u",
"17":"u",
"18":"u",
"76":"y"
},
"firefox":{
"2":"u",
"3":"u",
"3.5":"u",
"3.6":"u",
"4":"u",
"5":"u",
"6":"u",
"7":"u",
"8":"u",
"9":"u",
"10":"u",
"11":"u",
"12":"u",
"13":"u",
"14":"u",
"15":"u",
"16":"u",
"17":"u",
"18":"u",
"19":"u",
"20":"u",
"21":"u",
"22":"u",
"23":"u",
"24":"u",
"25":"u",
"26":"u",
"27":"u",
"28":"u",
"29":"u",
"30":"u",
"31":"u",
"32":"u",
"33":"u",
"34":"u",
"35":"u",
"36":"u",
"37":"u",
"38":"u",
"39":"u",
"40":"u",
"41":"u",
"42":"u",
"43":"u",
"44":"u",
"45":"u",
"46":"u",
"47":"u",
"48":"u",
"49":"u",
"50":"u",
"51":"u",
"52":"u",
"53":"u",
"54":"u",
"55":"u",
"56":"u",
"57":"u",
"58":"u",
"59":"u",
"60":"u",
"61":"u",
"62":"u",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"u",
"5":"u",
"6":"u",
"7":"u",
"8":"u",
"9":"u",
"10":"u",
"11":"u",
"12":"u",
"13":"u",
"14":"u",
"15":"u",
"16":"u",
"17":"u",
"18":"u",
"19":"u",
"20":"u",
"21":"u",
"22":"u",
"23":"u",
"24":"u",
"25":"u",
"26":"u",
"27":"u",
"28":"u",
"29":"u",
"30":"u",
"31":"u",
"32":"u",
"33":"u",
"34":"u",
"35":"u",
"36":"u",
"37":"u",
"38":"u",
"39":"u",
"40":"u",
"41":"u",
"42":"u",
"43":"u",
"44":"u",
"45":"u",
"46":"u",
"47":"u",
"48":"u",
"49":"u",
"50":"u",
"51":"u",
"52":"u",
"53":"u",
"54":"u",
"55":"u",
"56":"u",
"57":"u",
"58":"u",
"59":"u",
"60":"u",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"u",
"3.2":"u",
"4":"u",
"5":"u",
"5.1":"u",
"6":"u",
"6.1":"u",
"7":"u",
"7.1":"u",
"8":"u",
"9":"u",
"9.1":"u",
"10":"u",
"10.1":"u",
"11":"u",
"11.1":"u",
"12":"u",
"12.1":"u",
"13":"u",
"TP":"u"
},
"opera":{
"9":"u",
"9.5-9.6":"u",
"10.0-10.1":"u",
"10.5":"u",
"10.6":"u",
"11":"u",
"11.1":"u",
"11.5":"u",
"11.6":"u",
"12":"u",
"12.1":"u",
"15":"u",
"16":"u",
"17":"u",
"18":"u",
"19":"u",
"20":"u",
"21":"u",
"22":"u",
"23":"u",
"24":"u",
"25":"u",
"26":"u",
"27":"u",
"28":"u",
"29":"u",
"30":"u",
"31":"u",
"32":"u",
"33":"u",
"34":"u",
"35":"u",
"36":"u",
"37":"u",
"38":"u",
"39":"u",
"40":"u",
"41":"u",
"42":"u",
"43":"u",
"44":"u",
"45":"u",
"46":"u",
"47":"u",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"u",
"4.0-4.1":"u",
"4.2-4.3":"u",
"5.0-5.1":"u",
"6.0-6.1":"u",
"7.0-7.1":"u",
"8":"u",
"8.1-8.4":"u",
"9.0-9.2":"u",
"9.3":"u",
"10.0-10.2":"u",
"10.3":"u",
"11.0-11.2":"u",
"11.3-11.4":"u",
"12.0-12.1":"u",
"12.2-12.3":"u",
"13":"u"
},
"op_mini":{
"all":"u"
},
"android":{
"2.1":"u",
"2.2":"u",
"2.3":"u",
"3":"u",
"4":"u",
"4.1":"u",
"4.2-4.3":"u",
"4.4":"u",
"4.4.3-4.4.4":"u",
"76":"y"
},
"bb":{
"7":"u",
"10":"u"
},
"op_mob":{
"10":"u",
"11":"u",
"11.1":"u",
"11.5":"u",
"12":"u",
"12.1":"u",
"46":"u"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"u",
"11":"u"
},
"and_uc":{
"12.12":"u"
},
"samsung":{
"4":"u",
"5.0-5.4":"u",
"6.2-6.4":"u",
"7.2-7.4":"u",
"8.2":"u",
"9.2":"u"
},
"and_qq":{
"1.2":"u"
},
"baidu":{
"7.12":"u"
},
"kaios":{
"2.5":"u"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":68.79,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"clear, site, data, header, clear-site-data, clear-site, header, webappsec",
"ie_id":"",
"chrome_id":"4713262029471744",
"firefox_id":"",
"webkit_id":"",
"shown":false
}

View File

@@ -0,0 +1,376 @@
{
"title":"Client Hints: DPR, Width, Viewport-Width",
"description":"DPR, Width, and Viewport-Width hints enable proactive content negotiation between client and server, enabling automated delivery of optimized assets - e.g. auto-negotiating image DPR resolution.",
"spec":"https://tools.ietf.org/html/draft-grigorik-http-client-hints",
"status":"other",
"links":[
{
"url":"https://developers.google.com/web/updates/2015/09/automating-resource-selection-with-client-hints",
"title":"Automating resource selection with Client Hints"
},
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=935216",
"title":"Mozilla Bug 935216 - Implement Client-Hints HTTP header"
},
{
"url":"https://bugs.webkit.org/show_bug.cgi?id=145380",
"title":"WebKit Bug 145380 - Add Content-DPR header support"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/6261321-http-client-hints",
"title":"Microsoft Edge feature request on UserVoice"
}
],
"bugs":[
],
"categories":[
"DOM"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":72.84,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"client hints, client-hints, dpr, viewport, content-dpr",
"ie_id":"httpclienthints",
"chrome_id":"5504430086553600",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

376
node_modules/caniuse-db/features-json/clipboard.json generated vendored Normal file
View File

@@ -0,0 +1,376 @@
{
"title":"Synchronous Clipboard API",
"description":"API to provide copy, cut and paste events as well as provide access to the OS clipboard.",
"spec":"https://www.w3.org/TR/clipboard-apis/",
"status":"wd",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/ClipboardEvent",
"title":"MDN Web Docs - ClipboardEvent"
},
{
"url":"https://www.lucidchart.com/techblog/2014/12/02/definitive-guide-copying-pasting-javascript/",
"title":"Guide on cross-platform clipboard access"
}
],
"bugs":[
{
"description":"Before Firefox 41, `queryCommandEnabled` and `execCommand` with arguments `cut`, `copy` or `paste` would throw errors instead of return `false`."
}
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"a #1 #2 #5",
"6":"a #1 #2 #5",
"7":"a #1 #2 #5",
"8":"a #1 #2 #5",
"9":"a #1 #2 #5",
"10":"a #1 #2 #5",
"11":"a #1 #2 #5"
},
"edge":{
"12":"a #1 #2 #5",
"13":"a #1 #2 #5",
"14":"a #1 #2 #5",
"15":"a #1 #2 #5",
"16":"a #1 #2 #5",
"17":"a #2",
"18":"a #2",
"76":"a #5 #7"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"a #2 #3",
"23":"a #2 #3",
"24":"a #2 #3",
"25":"a #2 #3",
"26":"a #2 #3",
"27":"a #2 #3",
"28":"a #2 #3",
"29":"a #2 #3",
"30":"a #2 #3",
"31":"a #2 #3",
"32":"a #2 #3",
"33":"a #2 #3",
"34":"a #2 #3",
"35":"a #2 #3",
"36":"a #2 #3",
"37":"a #2 #3",
"38":"a #2 #3",
"39":"a #2 #3",
"40":"a #2 #3",
"41":"a #6",
"42":"a #6",
"43":"a #6",
"44":"a #6",
"45":"a #6",
"46":"a #6",
"47":"a #6",
"48":"a #6",
"49":"a #6",
"50":"a #6",
"51":"a #6",
"52":"a #6",
"53":"a #6",
"54":"a #6",
"55":"a #6",
"56":"a #6",
"57":"a #6",
"58":"a #6",
"59":"a #6",
"60":"a #6",
"61":"a #6",
"62":"a #6",
"63":"a #6",
"64":"a #6",
"65":"a #6",
"66":"a #6",
"67":"a #6",
"68":"a #6",
"69":"a #6",
"70":"a #6",
"71":"a #6"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"a #3 #5",
"14":"a #3 #5",
"15":"a #3 #5",
"16":"a #3 #5",
"17":"a #3 #5",
"18":"a #3 #5",
"19":"a #3 #5",
"20":"a #3 #5",
"21":"a #3 #5",
"22":"a #3 #5",
"23":"a #3 #5",
"24":"a #3 #5",
"25":"a #3 #5",
"26":"a #3 #5",
"27":"a #3 #5",
"28":"a #3 #5",
"29":"a #3 #5",
"30":"a #3 #5",
"31":"a #3 #5",
"32":"a #3 #5",
"33":"a #3 #5",
"34":"a #3 #5",
"35":"a #3 #5",
"36":"a #3 #5",
"37":"a #3 #5",
"38":"a #3 #5",
"39":"a #3 #5",
"40":"a #3 #5",
"41":"a #3 #5",
"42":"a #3 #5",
"43":"a #5 #7",
"44":"a #5 #7",
"45":"a #5 #7",
"46":"a #5 #7",
"47":"a #5 #7",
"48":"a #5 #7",
"49":"a #5 #7",
"50":"a #5 #7",
"51":"a #5 #7",
"52":"a #5 #7",
"53":"a #5 #7",
"54":"a #5 #7",
"55":"a #5 #7",
"56":"a #5 #7",
"57":"a #5 #7",
"58":"a #5 #7",
"59":"a #5 #7",
"60":"a #5 #7",
"61":"a #5 #7",
"62":"a #5 #7",
"63":"a #5 #7",
"64":"a #5 #7",
"65":"a #5 #7",
"66":"a #5 #7",
"67":"a #5 #7",
"68":"a #5 #7",
"69":"a #5 #7",
"70":"a #5 #7",
"71":"a #5 #7",
"72":"a #5 #7",
"73":"a #5 #7",
"74":"a #5 #7",
"75":"a #5 #7",
"76":"a #5 #7",
"77":"a #5 #7",
"78":"a #5 #7",
"79":"a #5 #7",
"80":"a #5 #7"
},
"safari":{
"3.1":"u",
"3.2":"u",
"4":"a #2 #3 #5",
"5":"a #2 #3 #5",
"5.1":"a #2 #3 #5",
"6":"a #2 #3 #5",
"6.1":"a #2 #3 #5",
"7":"a #2 #3 #5",
"7.1":"a #2 #3 #5",
"8":"a #2 #3 #5",
"9":"a #2 #3 #5",
"9.1":"a #2 #3 #5",
"10":"a #2 #5",
"10.1":"a #2 #5",
"11":"a #2 #5",
"11.1":"a #2 #5",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"u",
"12.1":"a #3",
"15":"a #3 #5",
"16":"a #3 #5",
"17":"a #3 #5",
"18":"a #3 #5",
"19":"a #3 #5",
"20":"a #3 #5",
"21":"a #3 #5",
"22":"a #3 #5",
"23":"a #3 #5",
"24":"a #3 #5",
"25":"a #3 #5",
"26":"a #3 #5",
"27":"a #3 #5",
"28":"a #3 #5",
"29":"a #3 #5",
"30":"a #5 #7",
"31":"a #5 #7",
"32":"a #5 #7",
"33":"a #5 #7",
"34":"a #5 #7",
"35":"a #5 #7",
"36":"a #5 #7",
"37":"a #5 #7",
"38":"a #5 #7",
"39":"a #5 #7",
"40":"a #5 #7",
"41":"a #5 #7",
"42":"a #5 #7",
"43":"a #5 #7",
"44":"a #5 #7",
"45":"a #5 #7",
"46":"a #5 #7",
"47":"a #5 #7",
"48":"a #5 #7",
"49":"a #5 #7",
"50":"a #5 #7",
"51":"a #5 #7",
"52":"a #5 #7",
"53":"a #5 #7",
"54":"a #5 #7",
"55":"a #5 #7",
"56":"a #5 #7",
"57":"a #5 #7",
"58":"a #5 #7",
"60":"a #5 #7",
"62":"a #5 #7"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"a #2 #3 #5",
"6.0-6.1":"a #2 #3 #5",
"7.0-7.1":"a #2 #3 #5",
"8":"a #2 #3 #5",
"8.1-8.4":"a #2 #3 #5",
"9.0-9.2":"a #2 #3 #5",
"9.3":"a #2 #3 #5",
"10.0-10.2":"a #2 #3 #5",
"10.3":"a #2 #3 #5",
"11.0-11.2":"a #2 #3 #5",
"11.3-11.4":"a #2 #3 #5",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"a #2 #5",
"4.4.3-4.4.4":"a #2 #5",
"76":"a #2 #5"
},
"bb":{
"7":"n",
"10":"a #2 #5"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"u",
"46":"a #4 #5"
},
"and_chr":{
"76":"a #5"
},
"and_ff":{
"68":"a #4"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"a #2 #5",
"5.0-5.4":"a #5",
"6.2-6.4":"a #5",
"7.2-7.4":"a #5",
"8.2":"a #5",
"9.2":"a #5"
},
"and_qq":{
"1.2":"a #5 #7"
},
"baidu":{
"7.12":"a #5"
},
"kaios":{
"2.5":"a #6"
}
},
"notes":"Internet Explorer will display a security prompt for access to the OS clipboard.\r\n\r\nChrome 42+, Opera 29+ and Firefox 41+ support clipboard reading/writing only when part of a user action (click, keydown, etc).\r\n\r\nFirefox 40- users [can enable support](https://developer.mozilla.org/en-US/docs/Midas/Security_preferences) with a security preference setting.",
"notes_by_num":{
"1":"Only supports `Text` and `URL` data types and uses [a non-standard method](http://msdn.microsoft.com/en-us/library/ie/ms535220%28v=vs.85%29.aspx) of interacting with the clipboard.",
"2":"Only fires `copy` event on a valid selection and only `cut` and `paste` in focused editable fields.",
"3":"Only supports OS clipboard reading/writing via shortcut keys, not through `document.execCommand()`.",
"4":"Only supports `paste` event (on focused editable field).",
"5":"Does not support the `ClipboardEvent` constructor",
"6":"Supports `cut` & `copy` events without a focused editable field, but not `paste` (presumably for security reasons)",
"7":"Supports `cut` & `copy` events without a focused editable field, but does not fire `paste` with `document.execCommand('paste')` "
},
"usage_perc_y":11.9,
"usage_perc_a":81.56,
"ucprefix":false,
"parent":"",
"keywords":"cut,copy,paste,clipboarddata,clipboardevent",
"ie_id":"clipboardapi",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,365 @@
{
"title":"Node.compareDocumentPosition()",
"description":"Compares the relative position of two nodes to each other in the DOM tree.",
"spec":"https://dom.spec.whatwg.org/#dom-node-comparedocumentposition",
"status":"ls",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Node/compareDocumentPosition",
"title":"MDN Web Docs - Node.compareDocumentPosition"
}
],
"bugs":[
],
"categories":[
"DOM"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"u",
"3":"u",
"3.5":"u",
"3.6":"u",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"u",
"5":"u",
"6":"u",
"7":"u",
"8":"u",
"9":"u",
"10":"u",
"11":"u",
"12":"u",
"13":"u",
"14":"u",
"15":"a #1",
"16":"a #1",
"17":"a #1",
"18":"a #1",
"19":"a #1",
"20":"a #1",
"21":"a #1",
"22":"a #1",
"23":"a #1",
"24":"a #1",
"25":"a #1",
"26":"a #1",
"27":"a #1",
"28":"a #1",
"29":"a #1",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"u",
"3.2":"u",
"4":"u",
"5":"u",
"5.1":"a #2",
"6":"u",
"6.1":"a #1",
"7":"a #1",
"7.1":"a #1",
"8":"a #1",
"9":"a #1",
"9.1":"a #1",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"u",
"9.5-9.6":"u",
"10.0-10.1":"u",
"10.5":"u",
"10.6":"u",
"11":"u",
"11.1":"u",
"11.5":"u",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"a #1",
"16":"a #1",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"u",
"4.0-4.1":"a #1",
"4.2-4.3":"a #1",
"5.0-5.1":"a #1",
"6.0-6.1":"a #1",
"7.0-7.1":"a #1",
"8":"a #1",
"8.1-8.4":"a #1",
"9.0-9.2":"a #1",
"9.3":"a #1",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"y"
},
"android":{
"2.1":"u",
"2.2":"u",
"2.3":"a #1",
"3":"a #1",
"4":"a #1",
"4.1":"a #1",
"4.2-4.3":"a #1",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"a #1",
"10":"a #1"
},
"op_mob":{
"10":"u",
"11":"u",
"11.1":"u",
"11.5":"u",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"The spec requires that comparisons of nodes in different documents, and comparisons where at least one node is not in any document, must arbitrarily (but consistently) set either the `DOCUMENT_POSITION_PRECEDING` or `DOCUMENT_POSITION_FOLLOWING` bit in the result. These browser versions don't set either bit in some such cases.",
"2":"Sets neither the `DOCUMENT_POSITION_DISCONNECTED` bit nor the `DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC` bit in some cases when comparing nodes in different documents or when comparing a node which is not in any document."
},
"usage_perc_y":97.75,
"usage_perc_a":1.06,
"ucprefix":false,
"parent":"",
"keywords":"Node,compareDocumentPosition,compare,document,position,preceding,following,disconnected,before,after,contains,contained,DOM",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,377 @@
{
"title":"Basic console logging functions",
"description":"Method of outputting data to the browser's console, intended for development purposes.",
"spec":"https://console.spec.whatwg.org/",
"status":"ls",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Console",
"title":"MDN Web Docs - Console"
},
{
"url":"https://developer.chrome.com/devtools/docs/console-api",
"title":"Chrome console reference"
},
{
"url":"https://msdn.microsoft.com/en-us/library/hh772169",
"title":"Edge/Internet Explorer console reference"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"a #1",
"9":"a #1",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"y",
"3.2":"y",
"4":"y",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"y",
"4.0-4.1":"y",
"4.2-4.3":"y",
"5.0-5.1":"y",
"6.0-6.1":"y #3",
"7.0-7.1":"y #3",
"8":"y #3",
"8.1-8.4":"y #3",
"9.0-9.2":"y #3",
"9.3":"y #3",
"10.0-10.2":"y #3",
"10.3":"y #3",
"11.0-11.2":"y #3",
"11.3-11.4":"y #3",
"12.0-12.1":"y #3",
"12.2-12.3":"y #3",
"13":"y #3"
},
"op_mini":{
"all":"y #6"
},
"android":{
"2.1":"y #4",
"2.2":"y #4",
"2.3":"y #4",
"3":"y #4",
"4":"y #4",
"4.1":"y #4",
"4.2-4.3":"y #4",
"4.4":"y #4",
"4.4.3-4.4.4":"y #4",
"76":"y #4"
},
"bb":{
"7":"n #2",
"10":"n #2"
},
"op_mob":{
"10":"n",
"11":"n #2",
"11.1":"n #2",
"11.5":"n #2",
"12":"n #2",
"12.1":"n #2",
"46":"n #2"
},
"and_chr":{
"76":"y #4"
},
"and_ff":{
"68":"y #5"
},
"ie_mob":{
"10":"n #2",
"11":"n #2"
},
"and_uc":{
"12.12":"n #2"
},
"samsung":{
"4":"y #4",
"5.0-5.4":"y #4",
"6.2-6.4":"y #4",
"7.2-7.4":"y #4",
"8.2":"y #4",
"9.2":"y #4"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y #4"
},
"kaios":{
"2.5":"y"
}
},
"notes":"The basic functions that this information refers to include `console.log`, `console.info`, `console.warn`, `console.error`.",
"notes_by_num":{
"1":"Only supports console functions when developer tools are open, otherwise the `console` object is undefined and any calls will throw errors.",
"2":"Allows `console` functions to be used without throwing errors, but does not appear to output the data anywhere.",
"3":"Log output on iOS 6+ Safari can only be seen by connecting to a Mac and using the [Safari debugger](https://developer.apple.com/safari/tools/).",
"4":"Log output on older Android browsers can be retrieved via Android's `logcat` command or using Chrome Developer Tools in Android 4.4+/Chrome for Android [see details](http://developer.android.com/guide/webapps/debugging.html)",
"5":"Log output on Firefox for Android can be [accessed using WebIDE](https://developer.mozilla.org/en-US/docs/Tools/Remote_Debugging/Debugging_Firefox_for_Android_with_WebIDE)",
"6":"See [this article](https://dev.opera.com/articles/opera-mini-and-javascript/) for details on how to see console logging in Opera Mini"
},
"usage_perc_y":95.2,
"usage_perc_a":0.23,
"ucprefix":false,
"parent":"",
"keywords":"console.log,console.info,console.warn,console.error,window.console",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

364
node_modules/caniuse-db/features-json/console-time.json generated vendored Normal file
View File

@@ -0,0 +1,364 @@
{
"title":"console.time and console.timeEnd",
"description":"Functions for measuring performance",
"spec":"https://console.spec.whatwg.org/#time",
"status":"ls",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Console/time",
"title":"MDN Web Docs - Console.time"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"y",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"u",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"y",
"4.0-4.1":"y",
"4.2-4.3":"y",
"5.0-5.1":"y",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"y"
},
"android":{
"2.1":"y",
"2.2":"y",
"2.3":"y",
"3":"y",
"4":"y",
"4.1":"y",
"4.2-4.3":"y",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y",
"10":"y"
},
"op_mob":{
"10":"u",
"11":"u",
"11.1":"u",
"11.5":"u",
"12":"u",
"12.1":"u",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"`console.time()` starts a timer you can use to track how long an operation takes. You give each timer a unique name, and may have up to 10,000 timers running on a given page. When you call `console.timeEnd()` with the same name, the browser will output the time, in milliseconds, that elapsed since the timer was started. These functions are not always available in `workers`. For example, in Firefox, they are available from version `38`. More on using the `console` on mobile devices, see [here](https://caniuse.com/#feat=console-basic). ",
"notes_by_num":{
},
"usage_perc_y":98.7,
"usage_perc_a":0,
"ucprefix":false,
"parent":"console-basic",
"keywords":"console.time,console.timeEnd,window.console",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

372
node_modules/caniuse-db/features-json/const.json generated vendored Normal file
View File

@@ -0,0 +1,372 @@
{
"title":"const",
"description":"Declares a constant with block level scope",
"spec":"https://www.ecma-international.org/ecma-262/6.0/#sec-let-and-const-declarations",
"status":"other",
"links":[
{
"url":"http://generatedcontent.org/post/54444832868/variables-and-constants-in-es6",
"title":"Variables and Constants in ES6"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const",
"title":"MDN Web Docs - const"
}
],
"bugs":[
],
"categories":[
"JS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"a #5"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"a #1",
"3":"a #1",
"3.5":"a #1",
"3.6":"a #1",
"4":"a #1",
"5":"a #1",
"6":"a #1",
"7":"a #1",
"8":"a #1",
"9":"a #1",
"10":"a #1",
"11":"a #1",
"12":"a #1",
"13":"a #2",
"14":"a #2",
"15":"a #2",
"16":"a #2",
"17":"a #2",
"18":"a #2",
"19":"a #2",
"20":"a #2",
"21":"a #2",
"22":"a #2",
"23":"a #2",
"24":"a #2",
"25":"a #2",
"26":"a #2",
"27":"a #2",
"28":"a #2",
"29":"a #2",
"30":"a #2",
"31":"a #2",
"32":"a #2",
"33":"a #2",
"34":"a #2",
"35":"a #2",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"a #2",
"5":"a #2",
"6":"a #2",
"7":"a #2",
"8":"a #2",
"9":"a #2",
"10":"a #2",
"11":"a #2",
"12":"a #2",
"13":"a #2",
"14":"a #2",
"15":"a #2",
"16":"a #2",
"17":"a #2",
"18":"a #2",
"19":"a #2",
"20":"a #2",
"21":"a #2 #3",
"22":"a #2 #3",
"23":"a #2 #3",
"24":"a #2 #3",
"25":"a #2 #3",
"26":"a #2 #3",
"27":"a #2 #3",
"28":"a #2 #3",
"29":"a #2 #3",
"30":"a #2 #3",
"31":"a #2 #3",
"32":"a #2 #3",
"33":"a #2 #3",
"34":"a #2 #3",
"35":"a #2 #3",
"36":"a #2 #3",
"37":"a #2 #3",
"38":"a #2 #3",
"39":"a #2 #3",
"40":"a #2 #3",
"41":"a #4",
"42":"a #4",
"43":"a #4",
"44":"a #4",
"45":"a #4",
"46":"a #4",
"47":"a #4",
"48":"a #4",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"a #2",
"3.2":"a #2",
"4":"a #2",
"5":"a #2",
"5.1":"a #2 #3",
"6":"a #2 #3",
"6.1":"a #2 #3",
"7":"a #2 #3",
"7.1":"a #2 #3",
"8":"a #2 #3",
"9":"a #2 #3",
"9.1":"a #2 #3",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"a #1",
"10.5":"a #1",
"10.6":"a #1",
"11":"a #1",
"11.1":"a #1",
"11.5":"a #1",
"11.6":"a #1 #3",
"12":"a #1 #3",
"12.1":"a #1 #3",
"15":"a #2 #3",
"16":"a #2 #3",
"17":"a #2 #3",
"18":"a #2 #3",
"19":"a #2 #3",
"20":"a #2 #3",
"21":"a #2 #3",
"22":"a #2 #3",
"23":"a #2 #3",
"24":"a #2 #3",
"25":"a #2 #3",
"26":"a #2 #3",
"27":"a #2 #3",
"28":"a #4",
"29":"a #4",
"30":"a #4",
"31":"a #4",
"32":"a #4",
"33":"a #4",
"34":"a #4",
"35":"a #4",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"a #2",
"4.0-4.1":"a #2",
"4.2-4.3":"a #2",
"5.0-5.1":"a #2 #3",
"6.0-6.1":"a #2 #3",
"7.0-7.1":"a #2 #3",
"8":"a #2 #3",
"8.1-8.4":"a #2 #3",
"9.0-9.2":"a #2 #3",
"9.3":"a #2 #3",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"a #1 #3"
},
"android":{
"2.1":"u",
"2.2":"u",
"2.3":"a #2",
"3":"a #2 #3",
"4":"a #2 #3",
"4.1":"a #2 #3",
"4.2-4.3":"a #2 #3",
"4.4":"a #2 #3",
"4.4.3-4.4.4":"a #2 #3",
"76":"y"
},
"bb":{
"7":"a #2 #3",
"10":"a #2 #3"
},
"op_mob":{
"10":"a #1",
"11":"a #1",
"11.1":"a #1",
"11.5":"a #1",
"12":"a #1 #3",
"12.1":"a #1 #3",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"a #4",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"a #2 #3"
},
"baidu":{
"7.12":"a #4"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"const is recognized, but treated like var (no block scope, can be overwritten)",
"2":"const does not have block scope",
"3":"Only recognized when NOT in strict mode",
"4":"Supported correctly in strict mode, otherwise supported without block scope",
"5":"Not supported in for-in and for-of loops"
},
"usage_perc_y":92.73,
"usage_perc_a":6.08,
"ucprefix":false,
"parent":"",
"keywords":"ES6,constant,block,scope",
"ie_id":"",
"chrome_id":"4645595339816960",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,374 @@
{
"title":"Constraint Validation API",
"description":"API for better control over form field validation. Includes support for `checkValidity()`, `setCustomValidity()`, `reportValidity()` and validation states.",
"spec":"https://html.spec.whatwg.org/dev/form-control-infrastructure.html#the-constraint-validation-api",
"status":"ls",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5/Constraint_validation",
"title":"MDN article on constraint validation"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/14744163-support-htmlformelement-reportvalidity",
"title":"MS Edge UserVoice request for reportValidity"
},
{
"url":"https://github.com/jelmerdemaat/report-validity",
"title":"`reportValidity()` ponyfill"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"a #1 #2 #3",
"11":"a #1 #2 #3"
},
"edge":{
"12":"a #1 #2 #3",
"13":"a #1 #2 #3",
"14":"a #1 #2",
"15":"a #1 #2",
"16":"a #1 #2",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"a #1 #2 #3",
"5":"a #1 #2 #3",
"6":"a #1 #2 #3",
"7":"a #1 #2 #3",
"8":"a #1 #2 #3",
"9":"a #1 #2 #3",
"10":"a #1 #2 #3",
"11":"a #1 #2 #3",
"12":"a #1 #2 #3",
"13":"a #1 #2 #3",
"14":"a #1 #2 #3",
"15":"a #1 #2 #3",
"16":"a #1 #2 #3",
"17":"a #1 #2 #3",
"18":"a #1 #2 #3",
"19":"a #1 #2 #3",
"20":"a #1 #2 #3",
"21":"a #1 #2 #3",
"22":"a #1 #2 #3",
"23":"a #1 #2 #3",
"24":"a #1 #2 #3",
"25":"a #1 #2 #3",
"26":"a #1 #2 #3",
"27":"a #1 #2 #3",
"28":"a #1 #2 #3",
"29":"a #1 #2",
"30":"a #1 #2",
"31":"a #1 #2",
"32":"a #1 #2",
"33":"a #1 #2",
"34":"a #1 #2",
"35":"a #1 #2",
"36":"a #1 #2",
"37":"a #1 #2",
"38":"a #1 #2",
"39":"a #1 #2",
"40":"a #1 #2",
"41":"a #1 #2",
"42":"a #1 #2",
"43":"a #1 #2",
"44":"a #1 #2",
"45":"a #1 #2",
"46":"a #1 #2",
"47":"a #1 #2",
"48":"a #1 #2",
"49":"a #2",
"50":"a #2",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"u",
"5":"u",
"6":"u",
"7":"u",
"8":"u",
"9":"u",
"10":"u",
"11":"u",
"12":"u",
"13":"u",
"14":"u",
"15":"a #1 #2 #3",
"16":"a #1 #2 #3",
"17":"a #1 #2 #3",
"18":"a #1 #2 #3",
"19":"a #1 #2 #3",
"20":"a #1 #2 #3",
"21":"a #1 #2 #3",
"22":"a #1 #2 #3",
"23":"a #1 #2 #3",
"24":"a #1 #2 #3",
"25":"a #1 #2",
"26":"a #1 #2",
"27":"a #1 #2",
"28":"a #1 #2",
"29":"a #1 #2",
"30":"a #1 #2",
"31":"a #1 #2",
"32":"a #1 #2",
"33":"a #1 #2",
"34":"a #1 #2",
"35":"a #1 #2",
"36":"a #1 #2",
"37":"a #1 #2",
"38":"a #1 #2",
"39":"a #1 #2",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"u",
"3.2":"u",
"4":"u",
"5":"u",
"5.1":"a #1 #2 #3",
"6":"a #1 #2 #3",
"6.1":"a #1 #2 #3",
"7":"a #1 #2 #3",
"7.1":"a #1 #2",
"8":"a #1 #2",
"9":"a #1 #2",
"9.1":"a #1 #2",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"u",
"9.5-9.6":"u",
"10.0-10.1":"u",
"10.5":"u",
"10.6":"u",
"11":"u",
"11.1":"u",
"11.5":"u",
"11.6":"a #1 #2 #3",
"12":"a #1 #2 #3",
"12.1":"a #1 #2 #3",
"15":"a #1 #2",
"16":"a #1 #2",
"17":"a #1 #2",
"18":"a #1 #2",
"19":"a #1 #2",
"20":"a #1 #2",
"21":"a #1 #2",
"22":"a #1 #2",
"23":"a #1 #2",
"24":"a #1 #2",
"25":"a #1 #2",
"26":"a #1 #2",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"u",
"4.0-4.1":"u",
"4.2-4.3":"u",
"5.0-5.1":"a #1 #2 #3",
"6.0-6.1":"a #1 #2 #3",
"7.0-7.1":"a #1 #2",
"8":"a #1 #2",
"8.1-8.4":"a #1 #2",
"9.0-9.2":"a #1 #2",
"9.3":"a #1 #2",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"u",
"2.2":"u",
"2.3":"u",
"3":"u",
"4":"a #1 #2 #3",
"4.1":"a #1 #2 #3",
"4.2-4.3":"a #1 #2 #3",
"4.4":"a #1 #2",
"4.4.3-4.4.4":"a #1 #2",
"76":"y"
},
"bb":{
"7":"u",
"10":"a #1 #2"
},
"op_mob":{
"10":"u",
"11":"u",
"11.1":"u",
"11.5":"u",
"12":"a #1 #2 #3",
"12.1":"a #1 #2 #3",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"a #1 #2 #3",
"11":"a #1 #2 #3"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"a #1 #2"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"a #1 #2"
}
},
"notes":"",
"notes_by_num":{
"1":"Does not support `reportValidity`",
"2":"Does not support `validity.tooShort`. See also [support for `minlength`.](https://caniuse.com/#feat=input-minlength)",
"3":"Does not support `validity.badInput`"
},
"usage_perc_y":92.8,
"usage_perc_a":4.37,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,385 @@
{
"title":"contenteditable attribute (basic support)",
"description":"Method of making any HTML element editable.",
"spec":"https://html.spec.whatwg.org/multipage/interaction.html#contenteditable",
"status":"ls",
"links":[
{
"url":"http://html5demos.com/contenteditable",
"title":"Demo page"
},
{
"url":"https://blog.whatwg.org/the-road-to-html-5-contenteditable",
"title":"WHATWG blog post"
},
{
"url":"https://accessgarage.wordpress.com/2009/05/08/how-to-hack-your-app-to-make-contenteditable-work/",
"title":"Blog post on usage problems"
},
{
"url":"https://www.webplatform.org/docs/html/attributes/contentEditable",
"title":"WebPlatform Docs"
},
{
"url":"https://developer.mozilla.org/en/docs/Web/API/HTMLElement/contentEditable",
"title":"MDN Web Docs - contentEditable attribute"
}
],
"bugs":[
{
"description":"In Firefox when clicking on contenteditable nested into draggable, cursor is always positioned to the start of editable text. Still not fixed in version 18.0.1."
},
{
"description":"In Internet Explorer contenteditable cannot be applied to the TABLE, COL, COLGROUP, TBODY, TD, TFOOT, TH, THEAD, and TR elements directly, a content editable SPAN, or DIV element can be placed inside the individual table cells (See http://msdn.microsoft.com/en-us/library/ie/ms533690(v=vs.85).aspx)."
}
],
"categories":[
"HTML5"
],
"stats":{
"ie":{
"5.5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"a",
"3.5":"y",
"3.6":"y",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"y",
"3.2":"y",
"4":"y",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"y",
"9.5-9.6":"y",
"10.0-10.1":"y",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"y",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"y",
"4":"y",
"4.1":"y",
"4.2-4.3":"y",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"This support only refers to very basic editing capability, implementations vary significantly on how certain elements can be edited.",
"notes_by_num":{
},
"usage_perc_y":97.57,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"iscontenteditable",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,381 @@
{
"title":"Content Security Policy 1.0",
"description":"Mitigate cross-site scripting attacks by whitelisting allowed sources of script, style, and other resources.",
"spec":"https://www.w3.org/TR/2012/CR-CSP-20121115/",
"status":"cr",
"links":[
{
"url":"https://www.html5rocks.com/en/tutorials/security/content-security-policy/",
"title":"HTML5Rocks article"
},
{
"url":"http://content-security-policy.com/",
"title":"CSP Examples & Quick Reference"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP",
"title":"MDN Web Docs - Content Security Policy"
}
],
"bugs":[
{
"description":"Partial support in Internet Explorer 10-11 refers to the browser only supporting the 'sandbox' directive by using the `X-Content-Security-Policy` header."
},
{
"description":"Partial support in iOS Safari 5.0-5.1 refers to the browser recognizing the `X-WebKit-CSP` header but failing to handle complex cases correctly, often resulting in broken pages."
},
{
"description":"Chrome for iOS fails to render pages without a [connect-src 'self'](https://code.google.com/p/chromium/issues/detail?id=322497) policy."
}
],
"categories":[
"Security"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"a #1",
"11":"a #1"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"y #1",
"5":"y #1",
"6":"y #1",
"7":"y #1",
"8":"y #1",
"9":"y #1",
"10":"y #1",
"11":"y #1",
"12":"y #1",
"13":"y #1",
"14":"y #1",
"15":"y #1",
"16":"y #1",
"17":"y #1",
"18":"y #1",
"19":"y #1",
"20":"y #1",
"21":"y #1",
"22":"y #1",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"y #2",
"15":"y #2",
"16":"y #2",
"17":"y #2",
"18":"y #2",
"19":"y #2",
"20":"y #2",
"21":"y #2",
"22":"y #2",
"23":"y #2",
"24":"y #2",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"a #2",
"6":"y #2",
"6.1":"y #2",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"a #2",
"6.0-6.1":"y #2",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"n",
"10":"y #2"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"a #1",
"11":"a #1"
},
"and_uc":{
"12.12":"y #2"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"The standard HTTP header is `Content-Security-Policy` which is used unless otherwise noted.",
"notes_by_num":{
"1":"Supported through the `X-Content-Security-Policy` header",
"2":"Supported through the `X-WebKit-CSP` header"
},
"usage_perc_y":94.69,
"usage_perc_a":2.18,
"ucprefix":false,
"parent":"",
"keywords":"csp,security,header",
"ie_id":"contentsecuritypolicy",
"chrome_id":"5205088045891584",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,377 @@
{
"title":"Content Security Policy Level 2",
"description":"Mitigate cross-site scripting attacks by whitelisting allowed sources of script, style, and other resources. CSP 2 adds hash-source, nonce-source, and five new directives",
"spec":"https://www.w3.org/TR/CSP2/",
"status":"cr",
"links":[
{
"url":"https://www.html5rocks.com/en/tutorials/security/content-security-policy/",
"title":"HTML5Rocks article"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP",
"title":"MDN Web Docs - Content Security Policy"
}
],
"bugs":[
{
"description":"Partial support in Edge refers to [broken nonce suport](https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/13246371/) which will lead to breakages since sourced script tags with a valid nonce will get blocked."
}
],
"categories":[
"Security"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"a #9",
"16":"a #9",
"17":"a #9",
"18":"a #9",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"a #1",
"32":"a #1",
"33":"a #1",
"34":"a #1",
"35":"a #2",
"36":"a #3",
"37":"a #3",
"38":"a #3",
"39":"a #3",
"40":"a #3",
"41":"a #3",
"42":"a #3",
"43":"a #3",
"44":"a #3",
"45":"a #7",
"46":"a #7",
"47":"a #7",
"48":"a #7",
"49":"a #7",
"50":"a #7",
"51":"a #7",
"52":"a #7",
"53":"a #7",
"54":"a #7",
"55":"a #7",
"56":"a #7",
"57":"a #7",
"58":"a #7",
"59":"a #7",
"60":"a #7",
"61":"a #7",
"62":"a #7",
"63":"a #7",
"64":"a #7",
"65":"a #7",
"66":"a #7",
"67":"a #7",
"68":"a #7",
"69":"a #7",
"70":"a #7",
"71":"a #7"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"a #4",
"37":"a #4",
"38":"a #4",
"39":"a #5",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"a #4",
"24":"a #4",
"25":"a #4",
"26":"a #5",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"a #6"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"a #7"
}
},
"notes":"",
"notes_by_num":{
"1":"Firefox 31-34 is missing the plugin-types, child-src, frame-ancestors, base-uri, and form-action directives.",
"2":"Firefox 35 is missing the plugin-types, child-src, frame-ancestors, and form-action directives.",
"3":"Firefox 36-44 is missing the plugin-types and child-src directives.",
"4":"Chrome 36-38 & Opera 23-25 are missing the plugin-types, child-src, frame-ancestors, base-uri, and form-action directives.",
"5":"Chrome 39 and Opera 26 are missing the plugin-types, child-src, base-uri, and form-action directives.",
"6":"Firefox 38 on Android is missing the child-src directive.",
"7":"Firefox 45+ is missing the plugin-types directive.",
"9":"Edge has broken nonce support as it ignores nonces on sourced scripts."
},
"usage_perc_y":83.39,
"usage_perc_a":6.84,
"ucprefix":false,
"parent":"",
"keywords":"csp,header,nonce,hash",
"ie_id":"contentsecuritypolicylevel2",
"chrome_id":"4957003285790720",
"firefox_id":"",
"webkit_id":"specification-content-security-policy-level-2",
"shown":true
}

395
node_modules/caniuse-db/features-json/cors.json generated vendored Normal file
View File

@@ -0,0 +1,395 @@
{
"title":"Cross-Origin Resource Sharing",
"description":"Method of performing XMLHttpRequests across domains",
"spec":"https://fetch.spec.whatwg.org/#http-cors-protocol",
"status":"ls",
"links":[
{
"url":"https://hacks.mozilla.org/2009/07/cross-site-xmlhttprequest-with-cors/",
"title":"Mozilla Hacks blog post"
},
{
"url":"http://msdn.microsoft.com/en-us/library/cc288060(VS.85).aspx",
"title":"Alternative implementation by IE8"
},
{
"url":"https://dev.opera.com/articles/view/dom-access-control-using-cross-origin-resource-sharing/",
"title":"DOM access using CORS"
},
{
"url":"https://raw.github.com/phiggins42/has.js/master/detect/features.js#native-cors-xhr",
"title":"has.js test"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS",
"title":"MDN Web Docs - Access control CORS"
}
],
"bugs":[
{
"description":"IE10+ does not send cookies when withCredential=true ([IE Bug #759587](https://connect.microsoft.com/IE/feedback/details/759587/ie10-doesnt-support-cookies-on-cross-origin-xmlhttprequest-withcredentials-true)). A workaround is [to use a P3P policy](http://www.techrepublic.com/blog/software-engineer/craft-a-p3p-policy-to-make-ie-behave/)"
},
{
"description":"IE10+ does not make a CORS request if port is the only difference ([IE Bug #781303](http://connect.microsoft.com/IE/feedback/details/781303))"
},
{
"description":"Android and some old versions of WebKit (that may be found in various webview implementations) do not support Access-Control-Expose-Headers: https://code.google.com/p/android/issues/detail?id=56726"
},
{
"description":"IE11 does not appear to support CORS for images in the `canvas` element"
}
],
"categories":[
"JS API",
"Security"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"a #2",
"9":"a #2",
"10":"a #1",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"y",
"3.6":"y",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y #4",
"62":"y #4",
"63":"y #4",
"64":"y #4",
"65":"y #4",
"66":"y #4",
"67":"y #4",
"68":"y #4",
"69":"y #4",
"70":"y #4",
"71":"y #4"
},
"chrome":{
"4":"a #1",
"5":"a #1",
"6":"a #1",
"7":"a #1",
"8":"a #1",
"9":"a #1",
"10":"a #1",
"11":"a #1",
"12":"a #1",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"a #1 #3",
"5":"a #1 #3",
"5.1":"a #1 #3",
"6":"y #3",
"6.1":"y #3",
"7":"y #3",
"7.1":"y #3",
"8":"y #3",
"9":"y #3",
"9.1":"y #3",
"10":"y #3",
"10.1":"y #3",
"11":"y #3",
"11.1":"y #3",
"12":"y #3",
"12.1":"y #3",
"13":"y #3",
"TP":"y #3"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"a #1 #3",
"4.0-4.1":"a #1 #3",
"4.2-4.3":"a #1 #3",
"5.0-5.1":"a #1 #3",
"6.0-6.1":"y #3",
"7.0-7.1":"y #3",
"8":"y #3",
"8.1-8.4":"y #3",
"9.0-9.2":"y #3",
"9.3":"y #3",
"10.0-10.2":"y #3",
"10.3":"y #3",
"11.0-11.2":"y #3",
"11.3-11.4":"y #3",
"12.0-12.1":"y #3",
"12.2-12.3":"y #3",
"13":"y #3"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"a #1",
"2.2":"a #1",
"2.3":"a #1",
"3":"a #1",
"4":"a #1",
"4.1":"a #1",
"4.2-4.3":"a #1",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"a #1",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"a #1",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"Does not support CORS for images in `<canvas>`",
"2":"Supported somewhat in IE8 and IE9 using the XDomainRequest object (but has [limitations](http://blogs.msdn.com/b/ieinternals/archive/2010/05/13/xdomainrequest-restrictions-limitations-and-workarounds.aspx))",
"3":"Does not support CORS for `<video>` in `<canvas>`: https://bugs.webkit.org/show_bug.cgi?id=135379",
"4":"Does not support CORS for resources which redirect: https://bugzilla.mozilla.org/show_bug.cgi?id=1346749"
},
"usage_perc_y":96.54,
"usage_perc_a":0.94,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,368 @@
{
"title":"createImageBitmap",
"description":"Create image bitmap with support for resizing and adjusting quality",
"spec":"https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#dom-createimagebitmap",
"status":"ls",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/createImageBitmap",
"title":"self.createImageBitmap() - Web APIs | MDN"
}
],
"bugs":[
],
"categories":[
"JS API"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"a #4 #5",
"43":"a #4 #5",
"44":"a #4 #5",
"45":"a #4 #5",
"46":"a #4 #5",
"47":"a #4 #5",
"48":"a #4 #5",
"49":"a #4 #5",
"50":"a #4 #5",
"51":"a #4 #5",
"52":"a #4 #5",
"53":"a #4 #5",
"54":"a #4 #5",
"55":"a #4 #5",
"56":"a #4 #5",
"57":"a #4 #5",
"58":"a #4 #5",
"59":"a #4 #5",
"60":"a #4 #5",
"61":"a #4 #5",
"62":"a #4 #5",
"63":"a #4 #5",
"64":"a #4 #5",
"65":"a #4 #5",
"66":"a #4 #5",
"67":"a #4 #5",
"68":"a #4 #5",
"69":"a #4 #5",
"70":"a #4 #5",
"71":"a #4 #5"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"a #1",
"51":"a #1",
"52":"a #2",
"53":"a #2",
"54":"a #3",
"55":"a #3",
"56":"a #3",
"57":"a #3",
"58":"a #3",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"u",
"TP":"u"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"a #1",
"38":"a #1",
"39":"a #2",
"40":"a #2",
"41":"a #3",
"42":"a #3",
"43":"a #3",
"44":"a #3",
"45":"a #3",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"a #4 #5"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"u",
"5.0-5.4":"u",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"a #4 #5"
}
},
"notes":"",
"notes_by_num":{
"1":"No support for options parameter, resizeWidth, resizeHeight, resizeQuality or SVGImageElement as Source Image",
"2":"No support for resizeWidth, resizeHeight, resizeQuality or SVGImageElement as Source Image",
"3":"No support for SVGImageElement as Source Image",
"4":"No support for resizeWidth, resizeHeight and resizeQuality. See [this bug](https://bugzilla.mozilla.org/show_bug.cgi?id=1363861)",
"5":"No support for `createImageBitmap(source, options)` interface. see [this bug](https://bugzilla.mozilla.org/show_bug.cgi?id=1335594)"
},
"usage_perc_y":72.18,
"usage_perc_a":4.96,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,385 @@
{
"title":"Credential Management API",
"description":"API that provides a programmatic interface to the browser's credential manager. In short, an origin can request a user's credentials to sign them in, or can ask the browser to save credentials on the user's behalf. Both of these requests are user-mediated.",
"spec":"https://www.w3.org/TR/credential-management-1/",
"status":"wd",
"links":[
{
"url":"https://developers.google.com/web/updates/2016/04/credential-management-api",
"title":"Tutorial by Google"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Credential_Management_API",
"title":"MDN Web Docs - Credential Management API"
},
{
"url":"https://g.co/codelabs/cmapi",
"title":"Codelab"
},
{
"url":"https://credential-management-sample.appspot.com/",
"title":"Live Demo"
},
{
"url":"https://github.com/GoogleChrome/credential-management-sample",
"title":"Sample Code"
},
{
"url":"https://github.com/w3c/webappsec-credential-management",
"title":"Spec discussion"
}
],
"bugs":[
],
"categories":[
"JS API",
"Security"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n d",
"49":"n d",
"50":"n d",
"51":"y #1",
"52":"y #1",
"53":"y #1",
"54":"y #1",
"55":"y #1",
"56":"y #1",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
"1":"In Chrome 51 ~ 56, PSL matched credentials are not supported. This means you cannot use credentials set on a.example.com in b.example.com. This is supported since Chrome 57."
},
"usage_perc_y":72.24,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"credential,navigator.credentials",
"ie_id":"credentialmanagementapi",
"chrome_id":"5026422640869376",
"firefox_id":"credential-management",
"webkit_id":"",
"shown":true
}

400
node_modules/caniuse-db/features-json/cryptography.json generated vendored Normal file
View File

@@ -0,0 +1,400 @@
{
"title":"Web Cryptography",
"description":"JavaScript API for performing basic cryptographic operations in web applications",
"spec":"https://www.w3.org/TR/WebCryptoAPI/",
"status":"cr",
"links":[
{
"url":"https://www.slideshare.net/Channy/the-history-and-status-of-web-crypto-api",
"title":"The History and Status of Web Crypto API"
},
{
"url":"http://research.microsoft.com/en-us/projects/msrjscrypto/",
"title":"Microsoft Research JavaScript Cryptography Library"
},
{
"url":"http://bitwiseshiftleft.github.io/sjcl/",
"title":"Cross-browser cryptography library"
},
{
"url":"https://docs.google.com/spreadsheet/ccc?key=0AiAcidBZRLxndE9LWEs2R1oxZ0xidUVoU3FQbFFobkE#gid=1",
"title":"Support for recommended algorithms in Firefox"
},
{
"url":"https://github.com/Netflix/NfWebCrypto",
"title":"Polyfill by Netflix with partial support"
},
{
"url":"https://github.com/GlobalSign/PKI.js",
"title":"PKI.js - another crypto library for Public Key Infrastructure applications"
},
{
"url":"https://diafygi.github.io/webcrypto-examples/",
"title":"Test suite for various algorithms/methods"
},
{
"url":"https://github.com/vibornoff/webcrypto-shim",
"title":"Web Cryptography API shim for IE11 and Safari - set of bugfixes and workarounds of prefixed api implementations"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API",
"title":"MDN Web Docs - Web Crypto API"
}
],
"bugs":[
],
"categories":[
"JS API",
"Security"
],
"stats":{
"ie":{
"5.5":"n",
"6":"p",
"7":"p",
"8":"p",
"9":"p",
"10":"p",
"11":"a x #1"
},
"edge":{
"12":"y #4",
"13":"y #4",
"14":"y #4",
"15":"y #4",
"16":"y #4",
"17":"y #4",
"18":"y #4",
"76":"y"
},
"firefox":{
"2":"p",
"3":"p",
"3.5":"p",
"3.6":"p",
"4":"p",
"5":"p",
"6":"p",
"7":"p",
"8":"p",
"9":"p",
"10":"p",
"11":"p",
"12":"p",
"13":"p",
"14":"p",
"15":"p",
"16":"p",
"17":"p",
"18":"p",
"19":"p",
"20":"p",
"21":"p",
"22":"p",
"23":"p",
"24":"p",
"25":"p",
"26":"p",
"27":"p",
"28":"p",
"29":"p",
"30":"p",
"31":"p",
"32":"n d #2",
"33":"n d #2",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"p",
"5":"p",
"6":"p",
"7":"p",
"8":"p",
"9":"p",
"10":"p",
"11":"p",
"12":"p",
"13":"p",
"14":"p",
"15":"p",
"16":"p",
"17":"p",
"18":"p",
"19":"p",
"20":"p",
"21":"p",
"22":"p",
"23":"p",
"24":"p",
"25":"p",
"26":"p",
"27":"p",
"28":"p",
"29":"p",
"30":"p",
"31":"p",
"32":"p",
"33":"p",
"34":"p",
"35":"p",
"36":"p",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"p",
"3.2":"p",
"4":"p",
"5":"p",
"5.1":"p",
"6":"p",
"6.1":"p",
"7":"p",
"7.1":"y x #3",
"8":"y x #3",
"9":"y x #3",
"9.1":"y x #3",
"10":"y x #3",
"10.1":"y x #3",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"p",
"9.5-9.6":"p",
"10.0-10.1":"p",
"10.5":"p",
"10.6":"p",
"11":"p",
"11.1":"p",
"11.5":"p",
"11.6":"p",
"12":"p",
"12.1":"p",
"15":"p",
"16":"p",
"17":"p",
"18":"p",
"19":"p",
"20":"p",
"21":"p",
"22":"p",
"23":"p",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"p",
"4.0-4.1":"p",
"4.2-4.3":"p",
"5.0-5.1":"p",
"6.0-6.1":"p",
"7.0-7.1":"p",
"8":"y x #3",
"8.1-8.4":"y x #3",
"9.0-9.2":"y x #3",
"9.3":"y x #3",
"10.0-10.2":"y x #3",
"10.3":"y x #3",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"p",
"2.2":"p",
"2.3":"p",
"3":"p",
"4":"p",
"4.1":"p",
"4.2-4.3":"p",
"4.4":"p",
"4.4.3-4.4.4":"p",
"76":"y"
},
"bb":{
"7":"p",
"10":"p"
},
"op_mob":{
"10":"p",
"11":"p",
"11.1":"p",
"11.5":"p",
"12":"p",
"12.1":"p",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"p",
"11":"a x #1"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"Many browsers support the `[crypto.getRandomValues()](#feat=getrandomvalues)` method, but not actual cryptography functionality under `crypto.subtle`. \r\n\r\nFirefox also has support for [unofficial features](https://developer.mozilla.org/en-US/docs/JavaScript_crypto). \r\n\r\nIn Chrome the API is only usable over secure connections. ([corresponding bug](https://code.google.com/p/chromium/issues/detail?id=373032))",
"notes_by_num":{
"1":"Support in IE11 is based an older version of the specification.",
"2":"Supported in Firefox behind the `dom.webcrypto.enabled` flag.",
"3":"Supported in Safari using the `crypto.webkitSubtle` prefix.",
"4":"In Edge, Web Crypto is not supported in Web Workers or Service Workers."
},
"usage_perc_y":94.04,
"usage_perc_a":1.81,
"ucprefix":false,
"parent":"",
"keywords":"subtle,subtlecrypto",
"ie_id":"webcryptoapi",
"chrome_id":"5030265697075200",
"firefox_id":"",
"webkit_id":"specification-web-cryptography-api",
"shown":true
}

376
node_modules/caniuse-db/features-json/css-all.json generated vendored Normal file
View File

@@ -0,0 +1,376 @@
{
"title":"CSS all property",
"description":"A shorthand property for resetting all CSS properties except for `direction` and `unicode-bidi`.",
"spec":"https://www.w3.org/TR/css-cascade-3/#all-shorthand",
"status":"cr",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/all",
"title":"MDN Web Docs - CSS all"
},
{
"url":"http://mcc.id.au/blog/2013/10/all-unset",
"title":"Resetting styles using `all: unset`"
},
{
"url":"https://bugs.webkit.org/show_bug.cgi?id=116966",
"title":"WebKit bug 116966: [css3-cascade] Add support for `all` shorthand property"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/6511510-all-initial",
"title":"Microsoft Edge feature request on UserVoice"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":92.02,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"CSS,all,property,shorthand,reset",
"ie_id":"cssallshorthand",
"chrome_id":"6178222542684160",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,389 @@
{
"title":"CSS Animation",
"description":"Complex method of animating certain properties of an element",
"spec":"https://www.w3.org/TR/css3-animations/",
"status":"wd",
"links":[
{
"url":"http://robertnyman.com/2010/05/06/css3-animations/",
"title":"Blog post on usage"
},
{
"url":"https://www.webplatform.org/docs/css/properties/animations",
"title":"WebPlatform Docs"
}
],
"bugs":[
{
"description":"'animation-fill-mode' property is not supported in Android browser below 2.3."
},
{
"description":"iOS 6.1 and below do not support animation on pseudo-elements. iOS 7 and higher are reported to have buggy behavior with animating pseudo-elements."
},
{
"description":"@keyframes not supported in an inline or scoped stylesheet in Firefox ([bug 830056](https://bugzilla.mozilla.org/show_bug.cgi?id=830056))"
},
{
"description":"In Chrome `animation-fill-mode backwards` is wrong if `steps(x, start)` is used [see example](https://codepen.io/Fyrd/pen/jPPKpX)."
},
{
"description":"IE10 and IE11 do not support CSS keyframe blocks inside media queries. Must be defined outside of media query definitions. [example](https://codepen.io/anon/pen/ZOodVd)"
},
{
"description":"IE10 and IE11 on Windows 7 have a bug where translate transform values are always interpreted as pixels when used in animations [test case](https://codepen.io/flxsource/pen/jPYWoE)"
},
{
"description":"IE10 and IE11 will not fire Animation events for pseudo element animations. See [example here](https://codepen.io/dogoku/pen/JRwbmL)"
}
],
"categories":[
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"y x",
"6":"y x",
"7":"y x",
"8":"y x",
"9":"y x",
"10":"y x",
"11":"y x",
"12":"y x",
"13":"y x",
"14":"y x",
"15":"y x",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y x",
"5":"y x",
"6":"y x",
"7":"y x",
"8":"y x",
"9":"y x",
"10":"y x",
"11":"y x",
"12":"y x",
"13":"y x",
"14":"y x",
"15":"y x",
"16":"y x",
"17":"y x",
"18":"y x",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y x",
"31":"y x",
"32":"y x",
"33":"y x",
"34":"y x",
"35":"y x",
"36":"y x",
"37":"y x",
"38":"y x",
"39":"y x",
"40":"y x",
"41":"y x",
"42":"y x",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"a x #2",
"5":"a x #2",
"5.1":"y x",
"6":"y x",
"6.1":"y x",
"7":"y x",
"7.1":"y x",
"8":"y x",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"y x",
"12.1":"y",
"15":"y x",
"16":"y x",
"17":"y x",
"18":"y x",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"a x #1",
"4.0-4.1":"a x #1",
"4.2-4.3":"a x #1",
"5.0-5.1":"a x #1",
"6.0-6.1":"y x",
"7.0-7.1":"y x",
"8":"y x",
"8.1-8.4":"y x",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"a x #1",
"2.2":"a x #1",
"2.3":"a x #1",
"3":"a x #1",
"4":"y x",
"4.1":"y x",
"4.2-4.3":"y x",
"4.4":"y x",
"4.4.3-4.4.4":"y x",
"76":"y"
},
"bb":{
"7":"y x",
"10":"y x"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y x"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"Partial support in Android browser refers to buggy behavior in different scenarios.",
"2":"Does not support the `steps()`, `step-start` & `step-end` timing functions"
},
"usage_perc_y":97.2,
"usage_perc_a":0.03,
"ucprefix":false,
"parent":"",
"keywords":"animations,css-animations,animation-name,animation-duration,animation-delay,animation-timing-function,@keyframes,animationstart,animationend,animationiteration,css3 animation,steps,step-start,step-end,cubic-bezier",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

364
node_modules/caniuse-db/features-json/css-any-link.json generated vendored Normal file
View File

@@ -0,0 +1,364 @@
{
"title":"CSS :any-link selector",
"description":"The :any-link CSS pseudo-class matches all elements that match :link or :visited",
"spec":"https://drafts.csswg.org/selectors-4/#the-any-link-pseudo",
"status":"wd",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/:any-link",
"title":"MDN Web Docs - CSS :any-link"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y x"
},
"firefox":{
"2":"u",
"3":"u",
"3.5":"u",
"3.6":"u",
"4":"u",
"5":"u",
"6":"u",
"7":"u",
"8":"u",
"9":"u",
"10":"u",
"11":"u",
"12":"u",
"13":"u",
"14":"u",
"15":"u",
"16":"u",
"17":"u",
"18":"u",
"19":"u",
"20":"u",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y x",
"31":"y x",
"32":"y x",
"33":"y x",
"34":"y x",
"35":"y x",
"36":"y x",
"37":"y x",
"38":"y x",
"39":"y x",
"40":"y x",
"41":"y x",
"42":"y x",
"43":"y x",
"44":"y x",
"45":"y x",
"46":"y x",
"47":"y x",
"48":"y x",
"49":"y x",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"u",
"5":"u",
"6":"u",
"7":"u",
"8":"u",
"9":"u",
"10":"u",
"11":"u",
"12":"u",
"13":"u",
"14":"u",
"15":"u",
"16":"u",
"17":"u",
"18":"u",
"19":"u",
"20":"u",
"21":"u",
"22":"u",
"23":"u",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y x",
"31":"y x",
"32":"y x",
"33":"y x",
"34":"y x",
"35":"y x",
"36":"y x",
"37":"y x",
"38":"y x",
"39":"y x",
"40":"y x",
"41":"y x",
"42":"y x",
"43":"y x",
"44":"y x",
"45":"y x",
"46":"y x",
"47":"y x",
"48":"y x",
"49":"y x",
"50":"y x",
"51":"y x",
"52":"y x",
"53":"y x",
"54":"y x",
"55":"y x",
"56":"y x",
"57":"y x",
"58":"y x",
"59":"y x",
"60":"y x",
"61":"y x",
"62":"y x",
"63":"y x",
"64":"y x",
"65":"y x",
"66":"y x",
"67":"y x",
"68":"y x",
"69":"y x",
"70":"y x",
"71":"y x",
"72":"y x",
"73":"y x",
"74":"y x",
"75":"y x",
"76":"y x",
"77":"y x",
"78":"y x",
"79":"y x",
"80":"y x"
},
"safari":{
"3.1":"u",
"3.2":"u",
"4":"u",
"5":"u",
"5.1":"u",
"6":"u",
"6.1":"y x",
"7":"y x",
"7.1":"y x",
"8":"y x",
"9":"y x",
"9.1":"y x",
"10":"y x",
"10.1":"y x",
"11":"y x",
"11.1":"y x",
"12":"y x",
"12.1":"y x",
"13":"y x",
"TP":"y x"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"y x",
"16":"y x",
"17":"y x",
"18":"y x",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y x",
"31":"y x",
"32":"y x",
"33":"y x",
"34":"y x",
"35":"y x",
"36":"y x",
"37":"y x",
"38":"y x",
"39":"y x",
"40":"y x",
"41":"y x",
"42":"y x",
"43":"y x",
"44":"y x",
"45":"y x",
"46":"y x",
"47":"y x",
"48":"y x",
"49":"y x",
"50":"y x",
"51":"y x",
"52":"y x",
"53":"y x",
"54":"y x",
"55":"y x",
"56":"y x",
"57":"y x",
"58":"y x",
"60":"y x",
"62":"y x"
},
"ios_saf":{
"3.2":"u",
"4.0-4.1":"u",
"4.2-4.3":"u",
"5.0-5.1":"u",
"6.0-6.1":"y x",
"7.0-7.1":"y x",
"8":"y x",
"8.1-8.4":"y x",
"9.0-9.2":"y x",
"9.3":"y x",
"10.0-10.2":"y x",
"10.3":"y x",
"11.0-11.2":"y x",
"11.3-11.4":"y x",
"12.0-12.1":"y x",
"12.2-12.3":"y x",
"13":"y x"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"u",
"2.2":"u",
"2.3":"u",
"3":"u",
"4":"u",
"4.1":"u",
"4.2-4.3":"u",
"4.4":"u",
"4.4.3-4.4.4":"u",
"76":"y x"
},
"bb":{
"7":"u",
"10":"u"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y x"
},
"and_chr":{
"76":"y x"
},
"and_ff":{
"68":"y x"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"u"
},
"samsung":{
"4":"u",
"5.0-5.4":"y x",
"6.2-6.4":"y x",
"7.2-7.4":"y x",
"8.2":"y x",
"9.2":"y x"
},
"and_qq":{
"1.2":"y x"
},
"baidu":{
"7.12":"y x"
},
"kaios":{
"2.5":"y x"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":88.19,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"any-link,css4,selector,visited",
"ie_id":"",
"chrome_id":"5724922840088576",
"firefox_id":"",
"webkit_id":"feature-css-selector-:any-link",
"shown":false
}

View File

@@ -0,0 +1,366 @@
{
"title":"CSS Appearance",
"description":"The `appearance` property defines how elements (particularly form controls) appear by default. By setting the value to `none` the default appearance can be entirely redefined using other CSS properties.",
"spec":"https://drafts.csswg.org/css-ui-4/#appearance-switching",
"status":"wd",
"links":[
{
"url":"https://css-tricks.com/almanac/properties/a/appearance/",
"title":"CSS Tricks article"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"a #1 #2",
"13":"a #1 #2",
"14":"a #1 #2",
"15":"a #1 #2",
"16":"a #1 #2",
"17":"a #1 #2",
"18":"a #1 #2",
"76":"a x #1"
},
"firefox":{
"2":"a x #1 #3",
"3":"a x #1 #3",
"3.5":"a x #1 #3",
"3.6":"a x #1 #3",
"4":"a x #1 #3",
"5":"a x #1 #3",
"6":"a x #1 #3",
"7":"a x #1 #3",
"8":"a x #1 #3",
"9":"a x #1 #3",
"10":"a x #1 #3",
"11":"a x #1 #3",
"12":"a x #1 #3",
"13":"a x #1 #3",
"14":"a x #1 #3",
"15":"a x #1 #3",
"16":"a x #1 #3",
"17":"a x #1 #3",
"18":"a x #1 #3",
"19":"a x #1 #3",
"20":"a x #1 #3",
"21":"a x #1 #3",
"22":"a x #1 #3",
"23":"a x #1 #3",
"24":"a x #1 #3",
"25":"a x #1 #3",
"26":"a x #1 #3",
"27":"a x #1 #3",
"28":"a x #1 #3",
"29":"a x #1 #3",
"30":"a x #1 #3",
"31":"a x #1 #3",
"32":"a x #1 #3",
"33":"a x #1 #3",
"34":"a x #1 #3",
"35":"a x #1",
"36":"a x #1",
"37":"a x #1",
"38":"a x #1",
"39":"a x #1",
"40":"a x #1",
"41":"a x #1",
"42":"a x #1",
"43":"a x #1",
"44":"a x #1",
"45":"a x #1",
"46":"a x #1",
"47":"a x #1",
"48":"a x #1",
"49":"a x #1",
"50":"a x #1",
"51":"a x #1",
"52":"a x #1",
"53":"a x #1",
"54":"a x #1",
"55":"a x #1",
"56":"a x #1",
"57":"a x #1",
"58":"a x #1",
"59":"a x #1",
"60":"a x #1",
"61":"a x #1",
"62":"a x #1",
"63":"a x #1",
"64":"a x #1",
"65":"a x #1",
"66":"a x #1",
"67":"a x #1",
"68":"a x #1",
"69":"a x #1",
"70":"a x #1",
"71":"a x #1"
},
"chrome":{
"4":"a x #1",
"5":"a x #1",
"6":"a x #1",
"7":"a x #1",
"8":"a x #1",
"9":"a x #1",
"10":"a x #1",
"11":"a x #1",
"12":"a x #1",
"13":"a x #1",
"14":"a x #1",
"15":"a x #1",
"16":"a x #1",
"17":"a x #1",
"18":"a x #1",
"19":"a x #1",
"20":"a x #1",
"21":"a x #1",
"22":"a x #1",
"23":"a x #1",
"24":"a x #1",
"25":"a x #1",
"26":"a x #1",
"27":"a x #1",
"28":"a x #1",
"29":"a x #1",
"30":"a x #1",
"31":"a x #1",
"32":"a x #1",
"33":"a x #1",
"34":"a x #1",
"35":"a x #1",
"36":"a x #1",
"37":"a x #1",
"38":"a x #1",
"39":"a x #1",
"40":"a x #1",
"41":"a x #1",
"42":"a x #1",
"43":"a x #1",
"44":"a x #1",
"45":"a x #1",
"46":"a x #1",
"47":"a x #1",
"48":"a x #1",
"49":"a x #1",
"50":"a x #1",
"51":"a x #1",
"52":"a x #1",
"53":"a x #1",
"54":"a x #1",
"55":"a x #1",
"56":"a x #1",
"57":"a x #1",
"58":"a x #1",
"59":"a x #1",
"60":"a x #1",
"61":"a x #1",
"62":"a x #1",
"63":"a x #1",
"64":"a x #1",
"65":"a x #1",
"66":"a x #1",
"67":"a x #1",
"68":"a x #1",
"69":"a x #1",
"70":"a x #1",
"71":"a x #1",
"72":"a x #1",
"73":"a x #1",
"74":"a x #1",
"75":"a x #1",
"76":"a x #1",
"77":"a x #1",
"78":"a x #1",
"79":"a x #1",
"80":"a x #1"
},
"safari":{
"3.1":"a x #1",
"3.2":"a x #1",
"4":"a x #1",
"5":"a x #1",
"5.1":"a x #1",
"6":"a x #1",
"6.1":"a x #1",
"7":"a x #1",
"7.1":"a x #1",
"8":"a x #1",
"9":"a x #1",
"9.1":"a x #1",
"10":"a x #1",
"10.1":"a x #1",
"11":"a x #1",
"11.1":"a x #1",
"12":"a x #1",
"12.1":"a x #1",
"13":"a x #1",
"TP":"a x #1"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"a x #1",
"16":"a x #1",
"17":"a x #1",
"18":"a x #1",
"19":"a x #1",
"20":"a x #1",
"21":"a x #1",
"22":"a x #1",
"23":"a x #1",
"24":"a x #1",
"25":"a x #1",
"26":"a x #1",
"27":"a x #1",
"28":"a x #1",
"29":"a x #1",
"30":"a x #1",
"31":"a x #1",
"32":"a x #1",
"33":"a x #1",
"34":"a x #1",
"35":"a x #1",
"36":"a x #1",
"37":"a x #1",
"38":"a x #1",
"39":"a x #1",
"40":"a x #1",
"41":"a x #1",
"42":"a x #1",
"43":"a x #1",
"44":"a x #1",
"45":"a x #1",
"46":"a x #1",
"47":"a x #1",
"48":"a x #1",
"49":"a x #1",
"50":"a x #1",
"51":"a x #1",
"52":"a x #1",
"53":"a x #1",
"54":"a x #1",
"55":"a x #1",
"56":"a x #1",
"57":"a x #1",
"58":"a x #1",
"60":"a x #1",
"62":"a x #1"
},
"ios_saf":{
"3.2":"a x #1",
"4.0-4.1":"a x #1",
"4.2-4.3":"a x #1",
"5.0-5.1":"a x #1",
"6.0-6.1":"a x #1",
"7.0-7.1":"a x #1",
"8":"a x #1",
"8.1-8.4":"a x #1",
"9.0-9.2":"a x #1",
"9.3":"a x #1",
"10.0-10.2":"a x #1",
"10.3":"a x #1",
"11.0-11.2":"a x #1",
"11.3-11.4":"a x #1",
"12.0-12.1":"a x #1",
"12.2-12.3":"a x #1",
"13":"a x #1"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"a x #1",
"2.2":"a x #1",
"2.3":"a x #1",
"3":"a x #1",
"4":"a x #1",
"4.1":"a x #1",
"4.2-4.3":"a x #1",
"4.4":"a x #1",
"4.4.3-4.4.4":"a x #1",
"76":"a x #1"
},
"bb":{
"7":"a x #1",
"10":"a x #1"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"a x #1"
},
"and_chr":{
"76":"a x #1"
},
"and_ff":{
"68":"a x #1"
},
"ie_mob":{
"10":"n",
"11":"a #1 #2"
},
"and_uc":{
"12.12":"a x #1"
},
"samsung":{
"4":"a x #1",
"5.0-5.4":"a x #1",
"6.2-6.4":"a x #1",
"7.2-7.4":"a x #1",
"8.2":"a x #1",
"9.2":"a x #1"
},
"and_qq":{
"1.2":"a x #1"
},
"baidu":{
"7.12":"a x #1"
},
"kaios":{
"2.5":"a x #1"
}
},
"notes":"",
"notes_by_num":{
"1":"The appearance property is supported with the `none` value, but not `auto`. WebKit, Blink, and Gecko browsers also support additional vendor specific values.",
"2":"Microsoft Edge and IE Mobile support this property with the `-webkit-` prefix, rather than `-ms-` for interop reasons.",
"3":"-moz-appearance:none doesn't remove the dropdown arrow in select tag"
},
"usage_perc_y":0,
"usage_perc_a":95.45,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,364 @@
{
"title":"CSS @apply rule",
"description":"Allows a set of CSS properties to be applied using a named variable",
"spec":"https://tabatkins.github.io/specs/css-apply-rule/",
"status":"unoff",
"links":[
{
"url":"http://zeke.sikelianos.com/css-from-the-future/",
"title":"Article on CSS @apply"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"n d #1"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n d #1",
"52":"n d #1",
"53":"n d #1",
"54":"n d #1",
"55":"n d #1",
"56":"n d #1",
"57":"n d #1",
"58":"n d #1",
"59":"n d #1",
"60":"n d #1",
"61":"n d #1",
"62":"n d #1",
"63":"n d #1",
"64":"n d #1",
"65":"n d #1",
"66":"n d #1",
"67":"n d #1",
"68":"n d #1",
"69":"n d #1",
"70":"n d #1",
"71":"n d #1",
"72":"n d #1",
"73":"n d #1",
"74":"n d #1",
"75":"n d #1",
"76":"n d #1",
"77":"n d #1",
"78":"n d #1",
"79":"n d #1",
"80":"n d #1"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n d #1",
"39":"n d #1",
"40":"n d #1",
"41":"n d #1",
"42":"n d #1",
"43":"n d #1",
"44":"n d #1",
"45":"n d #1",
"46":"n d #1",
"47":"n d #1",
"48":"n d #1",
"49":"n d #1",
"50":"n d #1",
"51":"n d #1",
"52":"n d #1",
"53":"n d #1",
"54":"n d #1",
"55":"n d #1",
"56":"n d #1",
"57":"n d #1",
"58":"n d #1",
"60":"n d #1",
"62":"n d #1"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n d #1"
},
"and_chr":{
"76":"n d #1"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n d #1",
"6.2-6.4":"n d #1",
"7.2-7.4":"n d #1",
"8.2":"n d #1",
"9.2":"n d #1"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n d #1"
},
"kaios":{
"2.5":"n"
}
},
"notes":"See also support for [CSS Variables](#feat=css-variables)",
"notes_by_num":{
"1":"Can be enabled via the \"Experimental web platform features\" flag under about:flags"
},
"usage_perc_y":0,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"5753701012602880",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,364 @@
{
"title":"CSS Counter Styles",
"description":"The @counter-style CSS at-rule allows custom counter styles to be defined. A @counter-style rule defines how to convert a counter value into a string representation.",
"spec":"https://drafts.csswg.org/css-counter-styles/",
"status":"cr",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/@counter-style",
"title":"MDN Web Docs - CSS counter style"
}
],
"bugs":[
],
"categories":[
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"n"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"a #1",
"34":"a #1",
"35":"a #1",
"36":"a #1",
"37":"a #1",
"38":"a #1",
"39":"a #1",
"40":"a #1",
"41":"a #1",
"42":"a #1",
"43":"a #1",
"44":"a #1",
"45":"a #1",
"46":"a #1",
"47":"a #1",
"48":"a #1",
"49":"a #1",
"50":"a #1",
"51":"a #1",
"52":"a #1",
"53":"a #1",
"54":"a #1",
"55":"a #1",
"56":"a #1",
"57":"a #1",
"58":"a #1",
"59":"a #1",
"60":"a #1",
"61":"a #1",
"62":"a #1",
"63":"a #1",
"64":"a #1",
"65":"a #1",
"66":"a #1",
"67":"a #1",
"68":"a #1",
"69":"a #1",
"70":"a #1",
"71":"a #1"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n",
"72":"n",
"73":"n",
"74":"n",
"75":"n",
"76":"n",
"77":"n",
"78":"n",
"79":"n",
"80":"n"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"60":"n",
"62":"n"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"n"
},
"and_ff":{
"68":"a #1"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"a #1"
}
},
"notes":"",
"notes_by_num":{
"1":"Partial support in Firefox refers to lacking support for [image symbols](https://bugzilla.mozilla.org/show_bug.cgi?id=1024179)"
},
"usage_perc_y":0,
"usage_perc_a":4.67,
"ucprefix":false,
"parent":"",
"keywords":"css @counter-style, list-style",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,379 @@
{
"title":"CSS Backdrop Filter",
"description":"Method of applying filter effects (like blur, grayscale or hue) to content/elements below the target element.",
"spec":"https://drafts.fxtf.org/filter-effects-2/#BackdropFilterProperty",
"status":"unoff",
"links":[
{
"url":"http://product.voxmedia.com/til/2015/2/17/8053347/css-ios-transparency-with-webkit-backdrop-filter",
"title":"Blog post"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter",
"title":"MDN Web Docs - CSS backdrop filter"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/9160189-backdrop-filters",
"title":"Edge feature request"
}
],
"bugs":[
{
"description":"Chrome feature request: [Chromium issue #497522](https://code.google.com/p/chromium/issues/detail?id=497522)"
},
{
"description":"Firefox feature request: [Mozilla bug #1178765](https://bugzilla.mozilla.org/show_bug.cgi?id=1178765)"
}
],
"categories":[
"CSS",
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"y #2",
"18":"y #2",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n d #1",
"48":"n d #1",
"49":"n d #1",
"50":"n d #1",
"51":"n d #1",
"52":"n d #1",
"53":"n d #1",
"54":"n d #1",
"55":"n d #1",
"56":"n d #1",
"57":"n d #1",
"58":"n d #1",
"59":"n d #1",
"60":"n d #1",
"61":"n d #1",
"62":"n d #1",
"63":"n d #1",
"64":"n d #1",
"65":"n d #1",
"66":"n d #1",
"67":"n d #1",
"68":"n d #1",
"69":"n d #1",
"70":"n d #1",
"71":"n d #1",
"72":"n d #1",
"73":"n d #1",
"74":"n d #1",
"75":"n d #1",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"y x",
"9.1":"y x",
"10":"y x",
"10.1":"y x",
"11":"y x",
"11.1":"y x",
"12":"y x",
"12.1":"y x",
"13":"y x",
"TP":"y x"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n d #1",
"35":"n d #1",
"36":"n d #1",
"37":"n d #1",
"38":"n d #1",
"39":"n d #1",
"40":"n d #1",
"41":"n d #1",
"42":"n d #1",
"43":"n d #1",
"44":"n d #1",
"45":"n d #1",
"46":"n d #1",
"47":"n d #1",
"48":"n d #1",
"49":"n d #1",
"50":"n d #1",
"51":"n d #1",
"52":"n d #1",
"53":"n d #1",
"54":"n d #1",
"55":"n d #1",
"56":"n d #1",
"57":"n d #1",
"58":"n d #1",
"60":"n d #1",
"62":"n d #1"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"y x",
"9.3":"y x",
"10.0-10.2":"y x",
"10.3":"y x",
"11.0-11.2":"y x",
"11.3-11.4":"y x",
"12.0-12.1":"y x",
"12.2-12.3":"y x",
"13":"y x"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n d #1"
},
"and_chr":{
"76":"n d #1"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n d #1",
"6.2-6.4":"n d #1",
"7.2-7.4":"n d #1",
"8.2":"n d #1",
"9.2":"n d #1"
},
"and_qq":{
"1.2":"n d #1"
},
"baidu":{
"7.12":"n d #1"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
"1":"Can be enabled via the \"Experimental Web Platform Features\" flag",
"2":"Currently only supported with the `-webkit-` prefix (not -ms-)"
},
"usage_perc_y":33.47,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"blue,hue-rotate,invert,saturate,filter",
"ie_id":"backdropfilter",
"chrome_id":"5679432723333120",
"firefox_id":"css-backdrop-filter",
"webkit_id":"feature-filter-effects-backdrop-filter-property",
"shown":true
}

View File

@@ -0,0 +1,373 @@
{
"title":"CSS background-position edge offsets",
"description":"Allows CSS background images to be positioned relative to the specified edge using the 3 to 4 value syntax. For example: `background-position: right 5px bottom 5px;` for positioning 5px from the bottom-right corner.",
"spec":"https://www.w3.org/TR/css3-background/#background-position",
"status":"cr",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/background-position",
"title":"MDN Web Docs - background-position"
},
{
"url":"http://briantree.se/quick-tip-06-use-four-value-syntax-properly-position-background-images/",
"title":"Basic information"
}
],
"bugs":[
{
"description":"Safari 8 [has a bug](https://discussions.apple.com/thread/6679022) with bottom-positioned values `background-attachment: fixed;`"
},
{
"description":"Transitions to `background-position` using edge offsets in Safari requires you to set edge offsets to zero if transitioning from no offset positions.\r\nE.g. for `background-position: right bottom` ; to `background-position: right 5px bottom 5px;`\r\nSafari requires `background-position: right 0 bottom 0;`"
}
],
"categories":[
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"y"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"n",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":98.13,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"4 value syntax",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,375 @@
{
"title":"CSS background-blend-mode",
"description":"Allows blending between CSS background images, gradients, and colors.",
"spec":"https://www.w3.org/TR/compositing-1/#propdef-background-blend-mode",
"status":"cr",
"links":[
{
"url":"https://codepen.io/bennettfeely/pen/rxoAc",
"title":"codepen example"
},
{
"url":"https://medium.com/web-design-technique/6b51bf53743a",
"title":"Blog post"
},
{
"url":"http://bennettfeely.com/gradients",
"title":"Demo"
}
],
"bugs":[
{
"description":"iOS Safari is reported to not support multiple background-blend-modes"
}
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"a #2",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"a #1",
"8":"a #1",
"9":"a #1",
"9.1":"a #1",
"10":"a #1",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"a #2",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"a #1",
"8.1-8.4":"a #1",
"9.0-9.2":"a #1",
"9.3":"a #1",
"10.0-10.2":"a #1",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"a #2"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"Partial in Safari refers to not supporting the `hue`, `saturation`, `color`, and `luminosity` blend modes.",
"2":"Chrome 46 has some [serious bugs](https://code.google.com/p/chromium/issues/detail?id=543583) with multiply, difference, and exclusion blend modes"
},
"usage_perc_y":91.57,
"usage_perc_a":0.41,
"ucprefix":false,
"parent":"",
"keywords":"css blend modes,css blending modes,blending,multiply,screen,background",
"ie_id":"",
"chrome_id":"5768037999312896",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,372 @@
{
"title":"CSS box-decoration-break",
"description":"Controls whether the box's margins, borders, padding, and other decorations wrap the broken edges of the box fragments (when the box is split by a break (page/column/region/line).",
"spec":"https://www.w3.org/TR/css3-break/#break-decoration",
"status":"wd",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/box-decoration-break",
"title":"MDN Web Docs - CSS box-decoration-break"
},
{
"url":"http://jsbin.com/xojoro/edit?css,output",
"title":"Demo of effect on box border"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/6514472-box-decoration-break",
"title":"Microsoft Edge feature request on UserVoice"
}
],
"bugs":[
],
"categories":[
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"a x #1"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"a x #1",
"23":"a x #1",
"24":"a x #1",
"25":"a x #1",
"26":"a x #1",
"27":"a x #1",
"28":"a x #1",
"29":"a x #1",
"30":"a x #1",
"31":"a x #1",
"32":"a x #1",
"33":"a x #1",
"34":"a x #1",
"35":"a x #1",
"36":"a x #1",
"37":"a x #1",
"38":"a x #1",
"39":"a x #1",
"40":"a x #1",
"41":"a x #1",
"42":"a x #1",
"43":"a x #1",
"44":"a x #1",
"45":"a x #1",
"46":"a x #1",
"47":"a x #1",
"48":"a x #1",
"49":"a x #1",
"50":"a x #1",
"51":"a x #1",
"52":"a x #1",
"53":"a x #1",
"54":"a x #1",
"55":"a x #1",
"56":"a x #1",
"57":"a x #1",
"58":"a x #1",
"59":"a x #1",
"60":"a x #1",
"61":"a x #1",
"62":"a x #1",
"63":"a x #1",
"64":"a x #1",
"65":"a x #1",
"66":"a x #1",
"67":"a x #1",
"68":"a x #1",
"69":"a x #1",
"70":"a x #1",
"71":"a x #1",
"72":"a x #1",
"73":"a x #1",
"74":"a x #1",
"75":"a x #1",
"76":"a x #1",
"77":"a x #1",
"78":"a x #1",
"79":"a x #1",
"80":"a x #1"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"a x #1",
"7":"a x #1",
"7.1":"a x #1",
"8":"a x #1",
"9":"a x #1",
"9.1":"a x #1",
"10":"a x #1",
"10.1":"a x #1",
"11":"a x #1",
"11.1":"a x #1",
"12":"a x #1",
"12.1":"a x #1",
"13":"a x #1",
"TP":"a x #1"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"y #1",
"11.1":"y #1",
"11.5":"y #1",
"11.6":"y #1",
"12":"y #1",
"12.1":"y #1",
"15":"a x #1",
"16":"a x #1",
"17":"a x #1",
"18":"a x #1",
"19":"a x #1",
"20":"a x #1",
"21":"a x #1",
"22":"a x #1",
"23":"a x #1",
"24":"a x #1",
"25":"a x #1",
"26":"a x #1",
"27":"a x #1",
"28":"a x #1",
"29":"a x #1",
"30":"a x #1",
"31":"a x #1",
"32":"a x #1",
"33":"a x #1",
"34":"a x #1",
"35":"a x #1",
"36":"a x #1",
"37":"a x #1",
"38":"a x #1",
"39":"a x #1",
"40":"a x #1",
"41":"a x #1",
"42":"a x #1",
"43":"a x #1",
"44":"a x #1",
"45":"a x #1",
"46":"a x #1",
"47":"a x #1",
"48":"a x #1",
"49":"a x #1",
"50":"a x #1",
"51":"a x #1",
"52":"a x #1",
"53":"a x #1",
"54":"a x #1",
"55":"a x #1",
"56":"a x #1",
"57":"a x #1",
"58":"a x #1",
"60":"a x #1",
"62":"a x #1"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"a x #1",
"8":"a x #1",
"8.1-8.4":"a x #1",
"9.0-9.2":"a x #1",
"9.3":"a x #1",
"10.0-10.2":"a x #1",
"10.3":"a x #1",
"11.0-11.2":"a x #1",
"11.3-11.4":"a x #1",
"12.0-12.1":"a x #1",
"12.2-12.3":"a x #1",
"13":"a x #1"
},
"op_mini":{
"all":"a #1"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"a x #1",
"4.4.3-4.4.4":"a x #1",
"76":"a x #1"
},
"bb":{
"7":"n",
"10":"a x #1"
},
"op_mob":{
"10":"n",
"11":"y #1",
"11.1":"y #1",
"11.5":"y #1",
"12":"y #1",
"12.1":"y #1",
"46":"a x #1"
},
"and_chr":{
"76":"a x #1"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"a x #1",
"5.0-5.4":"a x #1",
"6.2-6.4":"a x #1",
"7.2-7.4":"a x #1",
"8.2":"a x #1",
"9.2":"a x #1"
},
"and_qq":{
"1.2":"a x #1"
},
"baidu":{
"7.12":"a x #1"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
"1":"Partial support refers to working for inline elements but not across column or page breaks."
},
"usage_perc_y":8.25,
"usage_perc_a":85.7,
"ucprefix":false,
"parent":"",
"keywords":"box-decoration,box decoration,break",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,384 @@
{
"title":"CSS3 Box-shadow",
"description":"Method of displaying an inner or outer shadow effect to elements",
"spec":"https://www.w3.org/TR/css3-background/#box-shadow",
"status":"cr",
"links":[
{
"url":"https://developer.mozilla.org/En/CSS/-moz-box-shadow",
"title":"MDN Web Docs - box-shadow"
},
{
"url":"http://westciv.com/tools/boxshadows/index.html",
"title":"Live editor"
},
{
"url":"http://tests.themasta.com/blogstuff/boxshadowdemo.html",
"title":"Demo of various effects"
},
{
"url":"https://www.webplatform.org/docs/css/properties/box-shadow",
"title":"WebPlatform Docs"
}
],
"bugs":[
{
"description":"Edge and IE up to 11 suppress box-shadow in tables with border-collapse:collapse. [test case](https://codepen.io/Fyrd/pen/oXVYyq)"
},
{
"description":"Safari 6, iOS 6 and Android 2.3 default browser don't work with a 0px value for \"blur-radius\".\r\ne.g. `-webkit-box-shadow: 5px 1px 0px 1px #f04e29;`\r\ndoesn't work, but\r\n`-webkit-box-shadow: 5px 1px 1px 1px #f04e29`\r\ndoes."
},
{
"description":"iOS 8 has a bug where the box shadow disappears when zooming in a certain amount. [test case](https://jsfiddle.net/b6aaq57z/4/)"
}
],
"categories":[
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"y x",
"3.6":"y x",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y x",
"5":"y x",
"6":"y x",
"7":"y x",
"8":"y x",
"9":"y x",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"a x #1",
"3.2":"a x #1",
"4":"a x #1",
"5":"y x",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"a x #1",
"4.0-4.1":"y x",
"4.2-4.3":"y x",
"5.0-5.1":"y",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"a x #1",
"2.2":"a x #1",
"2.3":"a x #1",
"3":"a x #1",
"4":"y",
"4.1":"y",
"4.2-4.3":"y",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y x",
"10":"y"
},
"op_mob":{
"10":"n",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"Can be partially emulated in older IE versions using the non-standard \"shadow\" filter.",
"notes_by_num":{
"1":"Partial support in Safari, iOS Safari and Android Browser refers to missing \"inset\", blur radius value, and multiple shadow support."
},
"usage_perc_y":97.38,
"usage_perc_a":0.02,
"ucprefix":false,
"parent":"",
"keywords":"box-shadows,boxshadows,box shadow,shaow",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

364
node_modules/caniuse-db/features-json/css-canvas.json generated vendored Normal file
View File

@@ -0,0 +1,364 @@
{
"title":"CSS Canvas Drawings",
"description":"Method of using HTML5 Canvas as a background image. Not currently part of any specification.",
"spec":"http://webkit.org/blog/176/css-canvas-drawing/",
"status":"unoff",
"links":[
{
"url":"http://webkit.org/blog/176/css-canvas-drawing/",
"title":"WebKit blog post"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"n"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"u",
"53":"u",
"54":"u",
"55":"u",
"56":"u",
"57":"u",
"58":"u",
"59":"u",
"60":"u",
"61":"u",
"62":"u",
"63":"u",
"64":"u",
"65":"u",
"66":"u",
"67":"u",
"68":"u",
"69":"u",
"70":"u",
"71":"u"
},
"chrome":{
"4":"y x",
"5":"y x",
"6":"y x",
"7":"y x",
"8":"y x",
"9":"y x",
"10":"y x",
"11":"y x",
"12":"y x",
"13":"y x",
"14":"y x",
"15":"y x",
"16":"y x",
"17":"y x",
"18":"y x",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y x",
"31":"y x",
"32":"y x",
"33":"y x",
"34":"y x",
"35":"y x",
"36":"y x",
"37":"y x",
"38":"y x",
"39":"y x",
"40":"y x",
"41":"y x",
"42":"y x",
"43":"y x",
"44":"y x",
"45":"y x",
"46":"y x",
"47":"y x",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n",
"72":"n",
"73":"n",
"74":"n",
"75":"n",
"76":"n",
"77":"n",
"78":"n",
"79":"n",
"80":"n"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"y x",
"5":"y x",
"5.1":"y x",
"6":"y x",
"6.1":"y x",
"7":"y x",
"7.1":"y x",
"8":"y x",
"9":"y x",
"9.1":"y x",
"10":"y x",
"10.1":"y x",
"11":"y x",
"11.1":"y x",
"12":"y x",
"12.1":"y x",
"13":"y x",
"TP":"y x"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"y x",
"16":"y x",
"17":"y x",
"18":"y x",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y x",
"31":"y x",
"32":"y x",
"33":"y x",
"34":"y x",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"60":"n",
"62":"n"
},
"ios_saf":{
"3.2":"y x",
"4.0-4.1":"y x",
"4.2-4.3":"y x",
"5.0-5.1":"y x",
"6.0-6.1":"y x",
"7.0-7.1":"y x",
"8":"y x",
"8.1-8.4":"y x",
"9.0-9.2":"y x",
"9.3":"y x",
"10.0-10.2":"y x",
"10.3":"y x",
"11.0-11.2":"y x",
"11.3-11.4":"y x",
"12.0-12.1":"y x",
"12.2-12.3":"y x",
"13":"y x"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"y x",
"2.2":"y x",
"2.3":"y x",
"3":"y x",
"4":"y x",
"4.1":"y x",
"4.2-4.3":"y x",
"4.4":"y x",
"4.4.3-4.4.4":"y x",
"76":"n"
},
"bb":{
"7":"y x",
"10":"y x"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"n"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"y x",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"y x"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"A similar effect can be achieved in Firefox 4+ using the -moz-element() background property",
"notes_by_num":{
},
"usage_perc_y":15.57,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"5722125839106048",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,372 @@
{
"title":"CSS caret-color",
"description":"The `caret-color` property allows the color to be set of the caret (blinking text insertion pointer) in an editable text area.",
"spec":"https://www.w3.org/TR/css-ui-3/#caret-color",
"status":"cr",
"links":[
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/17595823-implement-caret-color-support",
"title":"Edge UserVoice request for caret-color"
},
{
"url":"https://bugs.webkit.org/show_bug.cgi?id=166572",
"title":"WebKit support bug"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/caret-color",
"title":"MDN article"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":88.47,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"5720917787279360",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,372 @@
{
"title":"Case-insensitive CSS attribute selectors",
"description":"Including an `i` before the `]` in a CSS attribute selector causes the attribute value to be matched in an ASCII-case-insensitive manner. For example, `[b=\"xyz\" i]` would match both `<a b=\"xyz\">` and `<a b=\"XYZ\">`.",
"spec":"https://www.w3.org/TR/selectors-4/#attribute-case",
"status":"wd",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors#case-insensitive",
"title":"MDN Web Docs - CSS case-insensitive"
},
{
"url":"http://jsbin.com/zutuna/edit?html,css,output",
"title":"JS Bin testcase"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/16910512-case-insensitive-attribute-selector-i-flag",
"title":"MS Edge feature request on UserVoice"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":90.68,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"i,attribute,case,insensitive,sensitive,sensitivity,insensitivity",
"ie_id":"",
"chrome_id":"5610936115134464",
"firefox_id":"",
"webkit_id":"feature-case-insensitive-attribute-selectors",
"shown":true
}

View File

@@ -0,0 +1,376 @@
{
"title":"CSS clip-path property (for HTML)",
"description":"Method of defining the visible region of an HTML element using SVG or a shape definition.",
"spec":"https://www.w3.org/TR/css-masking-1/#the-clip-path",
"status":"cr",
"links":[
{
"url":"https://css-tricks.com/almanac/properties/c/clip/",
"title":"CSS Tricks article"
},
{
"url":"https://codepen.io/dubrod/details/myNNyW/",
"title":"Codepen Example Clipping an Image with a Polygon"
},
{
"url":"http://lab.iamvdo.me/css-svg-masks",
"title":"Visual test cases"
}
],
"bugs":[
],
"categories":[
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n d #4 #5",
"76":"a #2"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"a #1",
"3.6":"a #1",
"4":"a #1",
"5":"a #1",
"6":"a #1",
"7":"a #1",
"8":"a #1",
"9":"a #1",
"10":"a #1",
"11":"a #1",
"12":"a #1",
"13":"a #1",
"14":"a #1",
"15":"a #1",
"16":"a #1",
"17":"a #1",
"18":"a #1",
"19":"a #1",
"20":"a #1",
"21":"a #1",
"22":"a #1",
"23":"a #1",
"24":"a #1",
"25":"a #1",
"26":"a #1",
"27":"a #1",
"28":"a #1",
"29":"a #1",
"30":"a #1",
"31":"a #1",
"32":"a #1",
"33":"a #1",
"34":"a #1",
"35":"a #1",
"36":"a #1",
"37":"a #1",
"38":"a #1",
"39":"a #1",
"40":"a #1",
"41":"a #1",
"42":"a #1",
"43":"a #1",
"44":"a #1",
"45":"a #1",
"46":"a #1",
"47":"a #1 #3",
"48":"a #1 #3",
"49":"a #1 #3",
"50":"a #1 #3",
"51":"a #1 #3",
"52":"a #1 #3",
"53":"a #1 #3",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"a x #2",
"25":"a x #2",
"26":"a x #2",
"27":"a x #2",
"28":"a x #2",
"29":"a x #2",
"30":"a x #2",
"31":"a x #2",
"32":"a x #2",
"33":"a x #2",
"34":"a x #2",
"35":"a x #2",
"36":"a x #2",
"37":"a x #2",
"38":"a x #2",
"39":"a x #2",
"40":"a x #2",
"41":"a x #2",
"42":"a x #2",
"43":"a x #2",
"44":"a x #2",
"45":"a x #2",
"46":"a x #2",
"47":"a x #2",
"48":"a x #2",
"49":"a x #2",
"50":"a x #2",
"51":"a x #2",
"52":"a x #2",
"53":"a x #2",
"54":"a x #2",
"55":"a #2",
"56":"a #2",
"57":"a #2",
"58":"a #2",
"59":"a #2",
"60":"a #2",
"61":"a #2",
"62":"a #2",
"63":"a #2",
"64":"a #2",
"65":"a #2",
"66":"a #2",
"67":"a #2",
"68":"a #2",
"69":"a #2",
"70":"a #2",
"71":"a #2",
"72":"a #2",
"73":"a #2",
"74":"a #2",
"75":"a #2",
"76":"a #2",
"77":"a #2",
"78":"a #2",
"79":"a #2",
"80":"a #2"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"a x #2",
"7.1":"a x #2",
"8":"a x #2",
"9":"a x #2",
"9.1":"a x #2",
"10":"a x #2",
"10.1":"a x #2",
"11":"a x #2",
"11.1":"a x #2",
"12":"a x #2",
"12.1":"a x #2",
"13":"a x #2",
"TP":"a x #2"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"a x #2",
"16":"a x #2",
"17":"a x #2",
"18":"a x #2",
"19":"a x #2",
"20":"a x #2",
"21":"a x #2",
"22":"a x #2",
"23":"a x #2",
"24":"a x #2",
"25":"a x #2",
"26":"a x #2",
"27":"a x #2",
"28":"a x #2",
"29":"a x #2",
"30":"a x #2",
"31":"a x #2",
"32":"a x #2",
"33":"a x #2",
"34":"a x #2",
"35":"a x #2",
"36":"a x #2",
"37":"a x #2",
"38":"a x #2",
"39":"a x #2",
"40":"a x #2",
"41":"a x #2",
"42":"a #2",
"43":"a #2",
"44":"a #2",
"45":"a #2",
"46":"a #2",
"47":"a #2",
"48":"a #2",
"49":"a #2",
"50":"a #2",
"51":"a #2",
"52":"a #2",
"53":"a #2",
"54":"a #2",
"55":"a #2",
"56":"a #2",
"57":"a #2",
"58":"a #2",
"60":"a #2",
"62":"a #2"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"a x #2",
"8":"a x #2",
"8.1-8.4":"a x #2",
"9.0-9.2":"a x #2",
"9.3":"a x #2",
"10.0-10.2":"a x #2",
"10.3":"a x #2",
"11.0-11.2":"a x #2",
"11.3-11.4":"a x #2",
"12.0-12.1":"a x #2",
"12.2-12.3":"a x #2",
"13":"a x #2"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"a x #2",
"4.4.3-4.4.4":"a x #2",
"76":"a #2"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"a x #2"
},
"and_chr":{
"76":"a #2"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"a x #2"
},
"samsung":{
"4":"a x #2",
"5.0-5.4":"a x #2",
"6.2-6.4":"a x #2",
"7.2-7.4":"a x #2",
"8.2":"a x #2",
"9.2":"a x #2"
},
"and_qq":{
"1.2":"a x #2"
},
"baidu":{
"7.12":"a #2"
},
"kaios":{
"2.5":"a #1 #3"
}
},
"notes":"Support refers to the `clip-path` CSS property on HTML elements specifically. Support for `clip-path` in SVG is supported in all browsers with [basic SVG](#feat=svg) support.",
"notes_by_num":{
"1":"Partial support refers to only supporting the `url()` syntax.",
"2":"Partial support refers to supporting shapes and the `url(#foo)` syntax for inline SVG, but not shapes in external SVGs.",
"3":"Supports shapes behind the `layout.css.clip-path-shapes.enabled` flag",
"4":"Partial support can be enabled on MS Edge with the Enable CSS Clip-Path Flag",
"5":"While Edge doesn't seem to recognize any `<basic-shape>` function, it does allow you to use `polygon()` in HTML and SVG"
},
"usage_perc_y":3.93,
"usage_perc_a":88.56,
"ucprefix":false,
"parent":"css-masks",
"keywords":"clippath",
"ie_id":"",
"chrome_id":"",
"firefox_id":"css-clip-path",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,378 @@
{
"title":"CSS color-adjust",
"description":"The `color-adjust` (or `-webkit-print-color-adjust` as prefixed in WebKit/Blink browsers) property is a non-standard CSS extension that can be used to force printing of background colors and images.",
"spec":"https://drafts.csswg.org/css-color-4/#color-adjust",
"status":"unoff",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-print-color-adjust",
"title":"MDN web docs - -webkit-print-color-adjust"
},
{
"url":"https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/12399195/",
"title":"Edge issue with color-adjust"
},
{
"url":"https://bugs.chromium.org/p/chromium/issues/detail?id=131054",
"title":"Chromium bug with color-adjust property"
},
{
"url":"https://codepen.io/yuriyalekseyev/pen/XEpJLr",
"title":"Codepen demo of color-adjust usage"
}
],
"bugs":[
{
"description":"Chrome and Safari do not print backgrounds of the `<body>` element. If this property is set to exact for the `<body>` element, it will apply only to its descendants. [test case](https://jsfiddle.net/soul_wish/8tw09dd0/)"
}
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y x"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"u",
"5":"u",
"6":"u",
"7":"u",
"8":"u",
"9":"u",
"10":"u",
"11":"u",
"12":"u",
"13":"u",
"14":"u",
"15":"u",
"16":"u",
"17":"u",
"18":"u",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y x",
"31":"y x",
"32":"y x",
"33":"y x",
"34":"y x",
"35":"y x",
"36":"y x",
"37":"y x",
"38":"y x",
"39":"y x",
"40":"y x",
"41":"y x",
"42":"y x",
"43":"y x",
"44":"y x",
"45":"y x",
"46":"y x",
"47":"y x",
"48":"y x",
"49":"y x",
"50":"y x",
"51":"y x",
"52":"y x",
"53":"y x",
"54":"y x",
"55":"y x",
"56":"y x",
"57":"y x",
"58":"y x",
"59":"y x",
"60":"y x",
"61":"y x",
"62":"y x",
"63":"y x",
"64":"y x",
"65":"y x",
"66":"y x",
"67":"y x",
"68":"y x",
"69":"y x",
"70":"y x",
"71":"y x",
"72":"y x",
"73":"y x",
"74":"y x",
"75":"y x",
"76":"y x",
"77":"y x",
"78":"y x",
"79":"y x",
"80":"y x"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"y x",
"6.1":"y x",
"7":"y x",
"7.1":"y x",
"8":"y x",
"9":"y x",
"9.1":"y x",
"10":"y x",
"10.1":"y x",
"11":"y x",
"11.1":"y x",
"12":"y x",
"12.1":"y x",
"13":"y x",
"TP":"y x"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"y x",
"16":"y x",
"17":"y x",
"18":"y x",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y x",
"31":"y x",
"32":"y x",
"33":"y x",
"34":"y x",
"35":"y x",
"36":"y x",
"37":"y x",
"38":"y x",
"39":"y x",
"40":"y x",
"41":"y x",
"42":"y x",
"43":"y x",
"44":"y x",
"45":"y x",
"46":"y x",
"47":"y x",
"48":"y x",
"49":"y x",
"50":"y x",
"51":"y x",
"52":"y x",
"53":"y x",
"54":"y x",
"55":"y x",
"56":"y x",
"57":"y x",
"58":"y x",
"60":"y x",
"62":"y x"
},
"ios_saf":{
"3.2":"u",
"4.0-4.1":"u",
"4.2-4.3":"u",
"5.0-5.1":"u",
"6.0-6.1":"u",
"7.0-7.1":"u",
"8":"u",
"8.1-8.4":"u",
"9.0-9.2":"u",
"9.3":"u",
"10.0-10.2":"u",
"10.3":"u",
"11.0-11.2":"u",
"11.3-11.4":"u",
"12.0-12.1":"u",
"12.2-12.3":"u",
"13":"u"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"u",
"2.2":"u",
"2.3":"u",
"3":"u",
"4":"u",
"4.1":"u",
"4.2-4.3":"u",
"4.4":"u",
"4.4.3-4.4.4":"u",
"76":"u"
},
"bb":{
"7":"u",
"10":"u"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"u"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"u",
"11":"u"
},
"and_uc":{
"12.12":"u"
},
"samsung":{
"4":"u",
"5.0-5.4":"u",
"6.2-6.4":"u",
"7.2-7.4":"u",
"8.2":"u",
"9.2":"u"
},
"and_qq":{
"1.2":"u"
},
"baidu":{
"7.12":"u"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":37.33,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"color-adjust,print-color-adjust,color adjust,print color adjust,coloradjust,printcoloradjust",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,377 @@
{
"title":"CSS Conical Gradients",
"description":"Method of defining a conical or repeating conical color gradient as a CSS image.",
"spec":"https://www.w3.org/TR/css-images-4/#conic-gradients",
"status":"wd",
"links":[
{
"url":"https://leaverou.github.io/conic-gradient/",
"title":"Client-side polyfill"
},
{
"url":"https://github.com/jonathantneal/postcss-conic-gradient",
"title":"Server-side polyfill (PostCSS)"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/8471413-implement-conic-gradients-from-css-image-values-le",
"title":"Microsoft Edge feature request on UserVoice"
},
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=1175958",
"title":"Mozilla bug #1175958: Implement conic gradients from CSS Image Values Level 4"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n d #1",
"60":"n d #1",
"61":"n d #1",
"62":"n d #1",
"63":"n d #1",
"64":"n d #1",
"65":"n d #1",
"66":"n d #1",
"67":"n d #1",
"68":"n d #1",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n d #1",
"47":"n d #1",
"48":"n d #1",
"49":"n d #1",
"50":"n d #1",
"51":"n d #1",
"52":"n d #1",
"53":"n d #1",
"54":"n d #1",
"55":"n d #1",
"56":"n d #1",
"57":"n d #1",
"58":"n d #1",
"60":"n d #1",
"62":"n d #1"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
"1":"Can be enabled via the \"Experimental Web Platform Features\" flag",
"2":"Does not support multi-position color stops"
},
"usage_perc_y":74.17,
"usage_perc_a":0,
"ucprefix":false,
"parent":"css-gradients",
"keywords":"conical-gradient,repeating-conical-gradient,gradient,conical",
"ie_id":"conicgradients",
"chrome_id":"5706155347148800",
"firefox_id":"",
"webkit_id":"feature-conic-gradients",
"shown":true
}

View File

@@ -0,0 +1,369 @@
{
"title":"CSS Containment",
"description":"The CSS `contain` property lets developers limit the scope of the browser's styles, layout and paint work for faster and more efficient rendering.",
"spec":"https://www.w3.org/TR/css-contain-1/#contain-property",
"status":"cr",
"links":[
{
"url":"https://developers.google.com/web/updates/2016/06/css-containment",
"title":"Google Developers article"
},
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=1150081",
"title":"Firefox bug"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n d #2",
"42":"n d #2",
"43":"n d #2",
"44":"n d #2",
"45":"n d #2",
"46":"n d #2",
"47":"n d #2",
"48":"n d #2",
"49":"n d #2",
"50":"n d #2",
"51":"n d #2",
"52":"u d #2",
"53":"u d #2",
"54":"u d #2",
"55":"u d #2",
"56":"u d #2",
"57":"u d #2",
"58":"u d #2",
"59":"u d #2",
"60":"u d #2",
"61":"u d #2",
"62":"u d #2",
"63":"u d #2",
"64":"u d #2",
"65":"u d #2",
"66":"u d #2",
"67":"u d #2",
"68":"u d #2",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n d #1",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n d #1",
"39":"n d #1",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"n d #2"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n d #2"
}
},
"notes":"",
"notes_by_num":{
"1":"Enabled via the \"Experimental Web Platform features\" flag",
"2":"Partially supported in Firefox by enabling \"layout.css.contain.enabled\" in about:config"
},
"usage_perc_y":72.39,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"csscontainment",
"chrome_id":"6522186978295808",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

372
node_modules/caniuse-db/features-json/css-counters.json generated vendored Normal file
View File

@@ -0,0 +1,372 @@
{
"title":"CSS Counters",
"description":"Method of controlling number values in generated content, using the `counter-reset` and `counter-increment` properties.",
"spec":"https://www.w3.org/TR/CSS21/generate.html#counters",
"status":"rec",
"links":[
{
"url":"http://onwebdev.blogspot.com/2012/02/css-counters-tutorial.html",
"title":"Tutorial and information"
},
{
"url":"https://developer.mozilla.org/en/CSS_Counters",
"title":"MDN Web Docs - CSS Counters"
},
{
"url":"https://www.webplatform.org/docs/css/properties/counter-reset",
"title":"WebPlatform Docs"
}
],
"bugs":[
],
"categories":[
"CSS2"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"y",
"9":"y",
"10":"y",
"11":"y"
},
"edge":{
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"76":"y"
},
"firefox":{
"2":"y",
"3":"y",
"3.5":"y",
"3.6":"y",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"y",
"3.2":"y",
"4":"y",
"5":"y",
"5.1":"y",
"6":"y",
"6.1":"y",
"7":"y",
"7.1":"y",
"8":"y",
"9":"y",
"9.1":"y",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"y",
"9.5-9.6":"y",
"10.0-10.1":"y",
"10.5":"y",
"10.6":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"11.6":"y",
"12":"y",
"12.1":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"y",
"4.0-4.1":"y",
"4.2-4.3":"y",
"5.0-5.1":"y",
"6.0-6.1":"y",
"7.0-7.1":"y",
"8":"y",
"8.1-8.4":"y",
"9.0-9.2":"y",
"9.3":"y",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"y"
},
"android":{
"2.1":"y",
"2.2":"y",
"2.3":"y",
"3":"y",
"4":"y",
"4.1":"y",
"4.2-4.3":"y",
"4.4":"y",
"4.4.3-4.4.4":"y",
"76":"y"
},
"bb":{
"7":"y",
"10":"y"
},
"op_mob":{
"10":"y",
"11":"y",
"11.1":"y",
"11.5":"y",
"12":"y",
"12.1":"y",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"y",
"11":"y"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"y"
},
"kaios":{
"2.5":"y"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":99.12,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,384 @@
{
"title":"Crisp edges/pixelated images",
"description":"Scales images with an algorithm that preserves edges and contrast, without smoothing colors or introducing blur. This is intended for images such as pixel art. Official values that accomplish this for the `image-rendering` property are `crisp-edges` and `pixelated`.",
"spec":"https://drafts.csswg.org/css-images-3/#valdef-image-rendering-crisp-edges",
"status":"unoff",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/image-rendering",
"title":"MDN Web Docs - CSS Image rendering"
},
{
"url":"http://updates.html5rocks.com/2015/01/pixelated",
"title":"HTML5Rocks article"
},
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=856337",
"title":"Firefox bug #856337: Implement image-rendering: pixelated"
},
{
"url":"https://bugs.chromium.org/p/chromium/issues/detail?id=317991",
"title":"Chrome bug #317991: Implement image-rendering:crisp-edges"
}
],
"bugs":[
{
"description":"`image-rendering:-webkit-optimize-contrast;` and `-ms-interpolation-mode:nearest-neighbor` do not affect CSS images."
}
],
"categories":[
"CSS",
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"a x #2 #5",
"8":"a x #2 #5",
"9":"a x #2 #5",
"10":"a x #2 #5",
"11":"a x #2 #5"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y #4"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"y x #3",
"4":"y x #3",
"5":"y x #3",
"6":"y x #3",
"7":"y x #3",
"8":"y x #3",
"9":"y x #3",
"10":"y x #3",
"11":"y x #3",
"12":"y x #3",
"13":"y x #3",
"14":"y x #3",
"15":"y x #3",
"16":"y x #3",
"17":"y x #3",
"18":"y x #3",
"19":"y x #3",
"20":"y x #3",
"21":"y x #3",
"22":"y x #3",
"23":"y x #3",
"24":"y x #3",
"25":"y x #3",
"26":"y x #3",
"27":"y x #3",
"28":"y x #3",
"29":"y x #3",
"30":"y x #3",
"31":"y x #3",
"32":"y x #3",
"33":"y x #3",
"34":"y x #3",
"35":"y x #3",
"36":"y x #3",
"37":"y x #3",
"38":"y x #3",
"39":"y x #3",
"40":"y x #3",
"41":"y x #3",
"42":"y x #3",
"43":"y x #3",
"44":"y x #3",
"45":"y x #3",
"46":"y x #3",
"47":"y x #3",
"48":"y x #3",
"49":"y x #3",
"50":"y x #3",
"51":"y x #3",
"52":"y x #3",
"53":"y x #3",
"54":"y x #3",
"55":"y x #3",
"56":"y x #3",
"57":"y x #3",
"58":"y x #3",
"59":"y x #3",
"60":"y x #3",
"61":"y x #3",
"62":"y x #3",
"63":"y x #3",
"64":"y x #3",
"65":"y #3",
"66":"y #3",
"67":"y #3",
"68":"y #3",
"69":"y #3",
"70":"y #3",
"71":"y #3"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"y #4",
"42":"y #4",
"43":"y #4",
"44":"y #4",
"45":"y #4",
"46":"y #4",
"47":"y #4",
"48":"y #4",
"49":"y #4",
"50":"y #4",
"51":"y #4",
"52":"y #4",
"53":"y #4",
"54":"y #4",
"55":"y #4",
"56":"y #4",
"57":"y #4",
"58":"y #4",
"59":"y #4",
"60":"y #4",
"61":"y #4",
"62":"y #4",
"63":"y #4",
"64":"y #4",
"65":"y #4",
"66":"y #4",
"67":"y #4",
"68":"y #4",
"69":"y #4",
"70":"y #4",
"71":"y #4",
"72":"y #4",
"73":"y #4",
"74":"y #4",
"75":"y #4",
"76":"y #4",
"77":"y #4",
"78":"y #4",
"79":"y #4",
"80":"y #4"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"a x #1",
"6.1":"a x #3 #6",
"7":"a x #3 #6",
"7.1":"a x #3 #6",
"8":"a x #3 #6",
"9":"a x #3 #6",
"9.1":"a x #3 #6",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"y x #3",
"12":"y x #3",
"12.1":"y x #3",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"y #4",
"29":"y #4",
"30":"y #4",
"31":"y #4",
"32":"y #4",
"33":"y #4",
"34":"y #4",
"35":"y #4",
"36":"y #4",
"37":"y #4",
"38":"y #4",
"39":"y #4",
"40":"y #4",
"41":"y #4",
"42":"y #4",
"43":"y #4",
"44":"y #4",
"45":"y #4",
"46":"y #4",
"47":"y #4",
"48":"y #4",
"49":"y #4",
"50":"y #4",
"51":"y #4",
"52":"y #4",
"53":"y #4",
"54":"y #4",
"55":"y #4",
"56":"y #4",
"57":"y #4",
"58":"y #4",
"60":"y #4",
"62":"y #4"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"a x #1 #6",
"6.0-6.1":"a x #1 #6",
"7.0-7.1":"a x #3 #6",
"8":"a x #3 #6",
"8.1-8.4":"a x #3 #6",
"9.0-9.2":"a x #3 #6",
"9.3":"a x #3 #6",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y #4"
},
"bb":{
"7":"n",
"10":"a x #1 #6"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"y x #3",
"12.1":"y x #3",
"46":"y #4"
},
"and_chr":{
"76":"y #4"
},
"and_ff":{
"68":"y x #3"
},
"ie_mob":{
"10":"a x #2 #5",
"11":"a x #2 #5"
},
"and_uc":{
"12.12":"y"
},
"samsung":{
"4":"y #4",
"5.0-5.4":"y #4",
"6.2-6.4":"y #4",
"7.2-7.4":"y #4",
"8.2":"y #4",
"9.2":"y #4"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"y #4"
},
"kaios":{
"2.5":"y #6"
}
},
"notes":"Note that prefixes apply to the value (e.g. `-moz-crisp-edges`), not the `image-rendering` property.",
"notes_by_num":{
"1":"Supported using the non-standard value `-webkit-optimize-contrast`",
"2":"Internet Explorer accomplishes support using the non-standard declaration `-ms-interpolation-mode: nearest-neighbor`",
"3":"Supports the `crisp-edges` value, but not `pixelated`.",
"4":"Supports the `pixelated` value, but not `crisp-edges`.",
"5":"Only works on `<img>`, not CSS backgrounds or `<canvas>`.",
"6":"Only works on `<img>` and CSS backgrounds, _not_ `<canvas>`. "
},
"usage_perc_y":91.54,
"usage_perc_a":2.47,
"ucprefix":false,
"parent":"",
"keywords":"image-rendering,crisp-edges",
"ie_id":"imagerendering",
"chrome_id":"5118058116939776",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,364 @@
{
"title":"CSS Cross-Fade Function",
"description":"Image function to create a \"crossfade\" between images. This allows one image to transition (fade) into another based on a percentage value.",
"spec":"https://drafts.csswg.org/css-images-3/#cross-fade-function",
"status":"unoff",
"links":[
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=546052",
"title":"Firefox bug #546052: Implement cross-fade()"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y x"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"y x",
"18":"y x",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y x",
"31":"y x",
"32":"y x",
"33":"y x",
"34":"y x",
"35":"y x",
"36":"y x",
"37":"y x",
"38":"y x",
"39":"y x",
"40":"y x",
"41":"y x",
"42":"y x",
"43":"y x",
"44":"y x",
"45":"y x",
"46":"y x",
"47":"y x",
"48":"y x",
"49":"y x",
"50":"y x",
"51":"y x",
"52":"y x",
"53":"y x",
"54":"y x",
"55":"y x",
"56":"y x",
"57":"y x",
"58":"y x",
"59":"y x",
"60":"y x",
"61":"y x",
"62":"y x",
"63":"y x",
"64":"y x",
"65":"y x",
"66":"y x",
"67":"y x",
"68":"y x",
"69":"y x",
"70":"y x",
"71":"y x",
"72":"y x",
"73":"y x",
"74":"y x",
"75":"y x",
"76":"y x",
"77":"y x",
"78":"y x",
"79":"y x",
"80":"y x"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"y x",
"6":"y x",
"6.1":"y x",
"7":"y x",
"7.1":"y x",
"8":"y x",
"9":"y x",
"9.1":"y x",
"10":"y",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"y x",
"16":"y x",
"17":"y x",
"18":"y x",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y x",
"31":"y x",
"32":"y x",
"33":"y x",
"34":"y x",
"35":"y x",
"36":"y x",
"37":"y x",
"38":"y x",
"39":"y x",
"40":"y x",
"41":"y x",
"42":"y x",
"43":"y x",
"44":"y x",
"45":"y x",
"46":"y x",
"47":"y x",
"48":"y x",
"49":"y x",
"50":"y x",
"51":"y x",
"52":"y x",
"53":"y x",
"54":"y x",
"55":"y x",
"56":"y x",
"57":"y x",
"58":"y x",
"60":"y x",
"62":"y x"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"y x",
"6.0-6.1":"y x",
"7.0-7.1":"y x",
"8":"y x",
"8.1-8.4":"y x",
"9.0-9.2":"y x",
"9.3":"y x",
"10.0-10.2":"y",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"y x",
"4.4.3-4.4.4":"y x",
"76":"y x"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"y x"
},
"and_chr":{
"76":"y x"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"y x"
},
"samsung":{
"4":"y x",
"5.0-5.4":"y x",
"6.2-6.4":"y x",
"7.2-7.4":"y x",
"8.2":"y x",
"9.2":"y x"
},
"and_qq":{
"1.2":"y x"
},
"baidu":{
"7.12":"y x"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":87.99,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"css,image,crossfade",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,381 @@
{
"title":":default CSS pseudo-class",
"description":"The `:default` pseudo-class matches checkboxes and radio buttons which are checked by default, `<option>`s with the `selected` attribute, and the default submit button (if any) of a form.",
"spec":"https://drafts.csswg.org/selectors-4/#the-default-pseudo",
"status":"unoff",
"links":[
{
"url":"https://html.spec.whatwg.org/multipage/scripting.html#selector-default",
"title":"HTML specification for `:default`"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/:default",
"title":"MDN Web Docs - CSS :default"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/13311459--default-pseudo-class-from-selectors-level-4",
"title":"MS Edge feature request on UserVoice"
},
{
"url":"http://jsbin.com/hiyada/edit?html,css,output",
"title":"JS Bin testcase"
},
{
"url":"https://bugs.webkit.org/show_bug.cgi?id=156230",
"title":"WebKit bug 156230 - `:default` CSS pseudo-class should match checkboxes+radios with a `checked` attribute"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"u",
"3":"u",
"3.5":"u",
"3.6":"u",
"4":"y",
"5":"y",
"6":"y",
"7":"y",
"8":"y",
"9":"y",
"10":"y",
"11":"y",
"12":"y",
"13":"y",
"14":"y",
"15":"y",
"16":"y",
"17":"y",
"18":"y",
"19":"y",
"20":"y",
"21":"y",
"22":"y",
"23":"y",
"24":"y",
"25":"y",
"26":"y",
"27":"y",
"28":"y",
"29":"y",
"30":"y",
"31":"y",
"32":"y",
"33":"y",
"34":"y",
"35":"y",
"36":"y",
"37":"y",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"u",
"5":"u",
"6":"u",
"7":"u",
"8":"u",
"9":"u",
"10":"u",
"11":"u",
"12":"u",
"13":"u",
"14":"u",
"15":"a #1",
"16":"a #1",
"17":"a #1",
"18":"a #1",
"19":"a #1",
"20":"a #1",
"21":"a #1",
"22":"a #1",
"23":"a #1",
"24":"a #1",
"25":"a #1",
"26":"a #1",
"27":"a #1",
"28":"a #1",
"29":"a #1",
"30":"a #1",
"31":"a #1",
"32":"a #1",
"33":"a #1",
"34":"a #1",
"35":"a #1",
"36":"a #1",
"37":"a #1",
"38":"a #1",
"39":"a #1",
"40":"a #1",
"41":"a #1",
"42":"a #1",
"43":"a #1",
"44":"a #1",
"45":"a #1",
"46":"a #1",
"47":"a #1",
"48":"a #1",
"49":"a #1",
"50":"a #1",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"u",
"3.2":"u",
"4":"u",
"5":"u",
"5.1":"a #1",
"6":"a #1",
"6.1":"a #1",
"7":"a #1",
"7.1":"a #1",
"8":"a #1",
"9":"a #1",
"9.1":"a #1",
"10":"a #1",
"10.1":"y",
"11":"y",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"u",
"9.5-9.6":"u",
"10.0-10.1":"u",
"10.5":"u",
"10.6":"u",
"11":"u",
"11.1":"u",
"11.5":"u",
"11.6":"a #2",
"12":"a #2",
"12.1":"a #2",
"15":"a #1",
"16":"a #1",
"17":"a #1",
"18":"a #1",
"19":"a #1",
"20":"a #1",
"21":"a #1",
"22":"a #1",
"23":"a #1",
"24":"a #1",
"25":"a #1",
"26":"a #1",
"27":"a #1",
"28":"a #1",
"29":"a #1",
"30":"a #1",
"31":"a #1",
"32":"a #1",
"33":"a #1",
"34":"a #1",
"35":"a #1",
"36":"a #1",
"37":"a #1",
"38":"y",
"39":"y",
"40":"y",
"41":"y",
"42":"y",
"43":"y",
"44":"y",
"45":"y",
"46":"y",
"47":"y",
"48":"y",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"u",
"4.0-4.1":"u",
"4.2-4.3":"u",
"5.0-5.1":"u",
"6.0-6.1":"u",
"7.0-7.1":"a #1",
"8":"a #1",
"8.1-8.4":"a #1",
"9.0-9.2":"a #1",
"9.3":"a #1",
"10.0-10.2":"a #1",
"10.3":"y",
"11.0-11.2":"y",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"a #2"
},
"android":{
"2.1":"u",
"2.2":"u",
"2.3":"u",
"3":"u",
"4":"a #1",
"4.1":"a #1",
"4.2-4.3":"a #1",
"4.4":"a #1",
"4.4.3-4.4.4":"a #1",
"76":"y"
},
"bb":{
"7":"u",
"10":"a #1"
},
"op_mob":{
"10":"u",
"11":"u",
"11.1":"u",
"11.5":"u",
"12":"u",
"12.1":"a #2",
"46":"y"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"a #1"
},
"samsung":{
"4":"a #1",
"5.0-5.4":"y",
"6.2-6.4":"y",
"7.2-7.4":"y",
"8.2":"y",
"9.2":"y"
},
"and_qq":{
"1.2":"y"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"y"
}
},
"notes":"Whether `<option selected>` matches `:default` (per the spec) was not tested since `<select>`s and `<option>`s are generally not styleable, which makes it hard to formulate a test for this.",
"notes_by_num":{
"1":"Does not match `<input type=\"checkbox\" checked>` or `<input type=\"radio\" checked>`",
"2":"Does not match the default submit button of a form"
},
"usage_perc_y":86.93,
"usage_perc_a":7.78,
"ucprefix":false,
"parent":"",
"keywords":":default,default",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,376 @@
{
"title":"Explicit descendant combinator >>",
"description":"An explicit, non-whitespace spelling of the descendant combinator. `A >> B` is equivalent to `A B`.",
"spec":"https://drafts.csswg.org/selectors-4/#descendant-combinators",
"status":"unoff",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/Descendant_selectors",
"title":"MDN Web Docs - Descendant selectors"
},
{
"url":"http://jsbin.com/qipekof/edit?html,css,output",
"title":"JS Bin testcase"
},
{
"url":"https://bugs.chromium.org/p/chromium/issues/detail?id=446050",
"title":"Chrome issue #446050: Implement Descendant Combinator \">>\""
},
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=1266283",
"title":"Mozilla bug #1266283 - Implement CSS4 descendant combinator `>>`"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"u"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n",
"72":"n",
"73":"n",
"74":"n",
"75":"n",
"76":"n",
"77":"n",
"78":"u",
"79":"u",
"80":"u"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"y",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"60":"n",
"62":"n"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"n"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":0.05,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,385 @@
{
"title":"CSS Device Adaptation",
"description":"A standard way to override the size of viewport in web page using the `@viewport` rule, standardizing and replacing Apple's own popular `<meta>` viewport implementation.",
"spec":"https://www.w3.org/TR/css-device-adapt/",
"status":"wd",
"links":[
{
"url":"https://dev.opera.com/articles/view/an-introduction-to-meta-viewport-and-viewport/",
"title":"Introduction to meta viewport and @viewport in Opera Mobile"
},
{
"url":"http://msdn.microsoft.com/en-us/library/ie/hh708740(v=vs.85).aspx",
"title":"Device adaptation in Internet Explorer 10"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/6777420-unprefix-and-support-all-viewport-properties",
"title":"Microsoft Edge feature request on UserVoice"
},
{
"url":"https://code.google.com/p/chromium/issues/detail?id=155477",
"title":"Chrome tracking bug"
},
{
"url":"https://bugs.webkit.org/show_bug.cgi?id=95959",
"title":"WebKit tracking bug"
},
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=747754",
"title":"Mozilla tracking bug"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"a x #1",
"11":"a x #1"
},
"edge":{
"12":"a x #1",
"13":"a x #1",
"14":"a x #1",
"15":"a x #1",
"16":"a x #1",
"17":"a x #1",
"18":"a x #1",
"76":"n d"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n d",
"30":"n d",
"31":"n d",
"32":"n d",
"33":"n d",
"34":"n d",
"35":"n d",
"36":"n d",
"37":"n d",
"38":"n d",
"39":"n d",
"40":"n d",
"41":"n d",
"42":"n d",
"43":"n d",
"44":"n d",
"45":"n d",
"46":"n d",
"47":"n d",
"48":"n d",
"49":"n d",
"50":"n d",
"51":"n d",
"52":"n d",
"53":"n d",
"54":"n d",
"55":"n d",
"56":"n d",
"57":"n d",
"58":"n d",
"59":"n d",
"60":"n d",
"61":"n d",
"62":"n d",
"63":"n d",
"64":"n d",
"65":"n d",
"66":"n d",
"67":"n d",
"68":"n d",
"69":"n d",
"70":"n d",
"71":"n d",
"72":"n d",
"73":"n d",
"74":"n d",
"75":"n d",
"76":"n d",
"77":"n d",
"78":"n d",
"79":"n d",
"80":"n d"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n d",
"41":"n d",
"42":"n d",
"43":"n d",
"44":"n d",
"45":"n d",
"46":"n d",
"47":"n d",
"48":"n d",
"49":"n d",
"50":"n d",
"51":"n d",
"52":"n d",
"53":"n d",
"54":"n d",
"55":"n d",
"56":"n d",
"57":"n d",
"58":"n d",
"60":"n d",
"62":"n d"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"a x #2"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"a x #2",
"11.1":"a x #2",
"11.5":"a x #2",
"12":"a x #2",
"12.1":"a x #2",
"46":"n"
},
"and_chr":{
"76":"n"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"a x #1",
"11":"a x #1"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n d"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
"1":"IE only supports the 'width' and 'height' properties.",
"2":"Opera Mobile and Opera Mini only support the 'orientation' property."
},
"usage_perc_y":0,
"usage_perc_a":5.55,
"ucprefix":false,
"parent":"",
"keywords":"viewport",
"ie_id":"cssdeviceadaptation",
"chrome_id":"4737164243894272",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,384 @@
{
"title":":dir() CSS pseudo-class",
"description":"Matches elements based on their directionality. `:dir(ltr)` matches elements which are Left-to-Right. `:dir(rtl)` matches elements which are Right-to-Left.",
"spec":"https://www.w3.org/TR/selectors4/#the-dir-pseudo",
"status":"wd",
"links":[
{
"url":"https://html.spec.whatwg.org/multipage/scripting.html#selector-ltr",
"title":"HTML specification for `:dir()`"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/:dir",
"title":"MDN Web Docs - CSS :dir"
},
{
"url":"https://bugs.chromium.org/p/chromium/issues/detail?id=576815",
"title":"Chrome issue #576815: CSS4 pseudo-class :dir()"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/12299532--dir",
"title":"Microsoft Edge feature request on UserVoice"
},
{
"url":"https://bugs.webkit.org/show_bug.cgi?id=64861",
"title":"WebKit bug #64861: Need support for :dir() pseudo-class"
},
{
"url":"http://jsbin.com/celuye/edit?html,css,output",
"title":"JS Bin testcase"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"n"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"y x",
"18":"y x",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y x",
"31":"y x",
"32":"y x",
"33":"y x",
"34":"y x",
"35":"y x",
"36":"y x",
"37":"y x",
"38":"y x",
"39":"y x",
"40":"y x",
"41":"y x",
"42":"y x",
"43":"y x",
"44":"y x",
"45":"y x",
"46":"y x",
"47":"y x",
"48":"y x",
"49":"y",
"50":"y",
"51":"y",
"52":"y",
"53":"y",
"54":"y",
"55":"y",
"56":"y",
"57":"y",
"58":"y",
"59":"y",
"60":"y",
"61":"y",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n",
"72":"n",
"73":"n",
"74":"n",
"75":"n",
"76":"n",
"77":"n",
"78":"n",
"79":"n",
"80":"n"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"60":"n",
"62":"n"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"n"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"y x"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":4.77,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":":dir,dir,direction,ltr,rtl,left,right",
"ie_id":"",
"chrome_id":"5751531651465216",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,380 @@
{
"title":"CSS display: contents",
"description":"`display: contents` causes an element's children to appear as if they were direct children of the element's parent, ignoring the element itself. This can be useful when a wrapper element should be ignored when using CSS grid or similar layout techniques.",
"spec":"https://drafts.csswg.org/css-display/",
"status":"wd",
"links":[
{
"url":"https://rachelandrew.co.uk/archives/2016/01/29/vanishing-boxes-with-display-contents/",
"title":"Vanishing boxes with display contents"
},
{
"url":"https://bugs.chromium.org/p/chromium/issues/detail?id=657748",
"title":"Chrome support bug"
},
{
"url":"https://bugs.webkit.org/show_bug.cgi?id=157477",
"title":"WebKit support bug"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/10938981-implement-the-box-generation-keywords-from-css-dis",
"title":"Edge UserVoice support request"
}
],
"bugs":[
{
"description":"iOS Safari 10 and 11, and Safari 11 renders `display:contents` as `display:inline`. @supports will also report as true."
}
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"a #2"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"a #2",
"38":"a #2",
"39":"a #2",
"40":"a #2",
"41":"a #2",
"42":"a #2",
"43":"a #2",
"44":"a #2",
"45":"a #2",
"46":"a #2",
"47":"a #2",
"48":"a #2",
"49":"a #2",
"50":"a #2",
"51":"a #2",
"52":"a #2",
"53":"a #2",
"54":"a #2",
"55":"a #2",
"56":"a #2",
"57":"a #2",
"58":"a #2",
"59":"a #2",
"60":"a #2",
"61":"a #2",
"62":"y",
"63":"y",
"64":"y",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n d #1",
"59":"n d #1",
"60":"n d #1",
"61":"n d #1",
"62":"n d #1",
"63":"n d #1",
"64":"n d #1",
"65":"a #2",
"66":"a #2",
"67":"a #2",
"68":"a #2",
"69":"a #2",
"70":"a #2",
"71":"a #2",
"72":"a #2",
"73":"a #2",
"74":"a #2",
"75":"a #2",
"76":"a #2",
"77":"a #2",
"78":"a #2",
"79":"a #2",
"80":"a #2"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"a #2 #3",
"12":"a #2 #3",
"12.1":"a #2 #3",
"13":"a #2 #3",
"TP":"a #2 #3"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"a #2",
"53":"a #2",
"54":"a #2",
"55":"a #2",
"56":"a #2",
"57":"a #2",
"58":"a #2",
"60":"a #2",
"62":"a #2"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"a #2",
"12.0-12.1":"a #2",
"12.2-12.3":"a #2",
"13":"a #2"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"a #2"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"a #2"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"a #2"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"a #2"
}
},
"notes":"",
"notes_by_num":{
"1":"Enabled in Chrome through the \"experimental Web Platform features\" flag in chrome://flags",
"2":"Partial support refers to [severe implementation bug](https://hiddedevries.nl/en/blog/2018-04-21-more-accessible-markup-with-display-contents) that renders the content inaccessible.",
"3":"Safari support is buggy, see [WebKit bug 188259](https://bugs.webkit.org/show_bug.cgi?id=188259) & [WebKit bug 193567](https://bugs.webkit.org/show_bug.cgi?id=193567)"
},
"usage_perc_y":3.61,
"usage_perc_a":80.85,
"ucprefix":false,
"parent":"",
"keywords":"",
"ie_id":"",
"chrome_id":"5663606012116992",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,369 @@
{
"title":"CSS element() function",
"description":"This function renders a live image generated from an arbitrary HTML element",
"spec":"https://www.w3.org/TR/css4-images/#element-notation",
"status":"wd",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/element",
"title":"MDN Web Docs - CSS element"
}
],
"bugs":[
{
"description":"Chromium [bug #108972](https://code.google.com/p/chromium/issues/detail?id=108972)"
},
{
"description":"WebKit [bug #44650](https://bugs.webkit.org/show_bug.cgi?id=44650)"
}
],
"categories":[
"CSS3"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"n"
},
"firefox":{
"2":"a x #1",
"3":"a x #1",
"3.5":"a x #1",
"3.6":"a x #1",
"4":"y x",
"5":"y x",
"6":"y x",
"7":"y x",
"8":"y x",
"9":"y x",
"10":"y x",
"11":"y x",
"12":"y x",
"13":"y x",
"14":"y x",
"15":"y x",
"16":"y x",
"17":"y x",
"18":"y x",
"19":"y x",
"20":"y x",
"21":"y x",
"22":"y x",
"23":"y x",
"24":"y x",
"25":"y x",
"26":"y x",
"27":"y x",
"28":"y x",
"29":"y x",
"30":"y x",
"31":"y x",
"32":"y x",
"33":"y x",
"34":"y x",
"35":"y x",
"36":"y x",
"37":"y x",
"38":"y x",
"39":"y x",
"40":"y x",
"41":"y x",
"42":"y x",
"43":"y x",
"44":"y x",
"45":"y x",
"46":"y x",
"47":"y x",
"48":"y x",
"49":"y x",
"50":"y x",
"51":"y x",
"52":"y x",
"53":"y x",
"54":"y x",
"55":"y x",
"56":"y x",
"57":"y x",
"58":"y x",
"59":"y x",
"60":"y x",
"61":"y x",
"62":"y x",
"63":"y x",
"64":"y x",
"65":"y x",
"66":"y x",
"67":"y x",
"68":"y x",
"69":"y x",
"70":"y x",
"71":"y x"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n",
"72":"n",
"73":"n",
"74":"n",
"75":"n",
"76":"n",
"77":"n",
"78":"n",
"79":"n",
"80":"n"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"60":"n",
"62":"n"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"n"
},
"and_ff":{
"68":"y x"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"y x"
}
},
"notes":"",
"notes_by_num":{
"1":"In Firefox < 4, usage limited to the background and background-image CSS properties"
},
"usage_perc_y":4.85,
"usage_perc_a":0.02,
"ucprefix":false,
"parent":"",
"keywords":"element, function",
"ie_id":"",
"chrome_id":"",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,376 @@
{
"title":"CSS Environment Variables env()",
"description":"Usage of environment variables like `safe-area-inset-top`.",
"spec":"https://drafts.csswg.org/css-env-1/#env-function",
"status":"unoff",
"links":[
{
"url":"https://jsfiddle.net/mrd3h90w/",
"title":"JSFiddle test case"
},
{
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/env",
"title":"The env() CSS Function - MDN Web Docs"
},
{
"url":"https://webkit.org/blog/7929/designing-websites-for-iphone-x/",
"title":"Designing Websites for iPhone X - WebKit Blog"
},
{
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/34589707-css-environment-variables",
"title":"Microsoft Edge feature suggestion"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n"
},
"edge":{
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"76":"y"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"y",
"66":"y",
"67":"y",
"68":"y",
"69":"y",
"70":"y",
"71":"y"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"y",
"70":"y",
"71":"y",
"72":"y",
"73":"y",
"74":"y",
"75":"y",
"76":"y",
"77":"y",
"78":"y",
"79":"y",
"80":"y"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"a #1",
"11.1":"y",
"12":"y",
"12.1":"y",
"13":"y",
"TP":"y"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"y",
"57":"y",
"58":"y",
"60":"y",
"62":"y"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"a #1",
"11.3-11.4":"y",
"12.0-12.1":"y",
"12.2-12.3":"y",
"13":"y"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"y"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"y"
},
"and_ff":{
"68":"y"
},
"ie_mob":{
"10":"n",
"11":"n"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
"1":"Supported as `constant()` instead of `env()`"
},
"usage_perc_y":80.18,
"usage_perc_a":0.27,
"ucprefix":false,
"parent":"",
"keywords":"css env(),css constant(),css variables,safe-area-inset-top,safe-area-inset-right,safe-area-inset-bottom,safe-area-inset-left",
"ie_id":"",
"chrome_id":"5710044637167616",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

View File

@@ -0,0 +1,372 @@
{
"title":"CSS Exclusions Level 1",
"description":"Exclusions defines how inline content flows around elements. It extends the content wrapping ability of floats to any block-level element.",
"spec":"https://www.w3.org/TR/css3-exclusions/",
"status":"wd",
"links":[
{
"url":"https://msdn.microsoft.com/en-us/library/ie/hh673558(v=vs.85).aspx",
"title":"CSS Exclusions"
},
{
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=674804",
"title":"Firefox tracking bug"
},
{
"url":"https://bugs.webkit.org/show_bug.cgi?id=57311",
"title":"WebKit tracking bug"
}
],
"bugs":[
],
"categories":[
"CSS"
],
"stats":{
"ie":{
"5.5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"y x",
"11":"y x"
},
"edge":{
"12":"y x",
"13":"y x",
"14":"y x",
"15":"y x",
"16":"y x",
"17":"y x",
"18":"y x",
"76":"n"
},
"firefox":{
"2":"n",
"3":"n",
"3.5":"n",
"3.6":"n",
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n"
},
"chrome":{
"4":"n",
"5":"n",
"6":"n",
"7":"n",
"8":"n",
"9":"n",
"10":"n",
"11":"n",
"12":"n",
"13":"n",
"14":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"59":"n",
"60":"n",
"61":"n",
"62":"n",
"63":"n",
"64":"n",
"65":"n",
"66":"n",
"67":"n",
"68":"n",
"69":"n",
"70":"n",
"71":"n",
"72":"n",
"73":"n",
"74":"n",
"75":"n",
"76":"n",
"77":"n",
"78":"n",
"79":"n",
"80":"n"
},
"safari":{
"3.1":"n",
"3.2":"n",
"4":"n",
"5":"n",
"5.1":"n",
"6":"n",
"6.1":"n",
"7":"n",
"7.1":"n",
"8":"n",
"9":"n",
"9.1":"n",
"10":"n",
"10.1":"n",
"11":"n",
"11.1":"n",
"12":"n",
"12.1":"n",
"13":"n",
"TP":"n"
},
"opera":{
"9":"n",
"9.5-9.6":"n",
"10.0-10.1":"n",
"10.5":"n",
"10.6":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"11.6":"n",
"12":"n",
"12.1":"n",
"15":"n",
"16":"n",
"17":"n",
"18":"n",
"19":"n",
"20":"n",
"21":"n",
"22":"n",
"23":"n",
"24":"n",
"25":"n",
"26":"n",
"27":"n",
"28":"n",
"29":"n",
"30":"n",
"31":"n",
"32":"n",
"33":"n",
"34":"n",
"35":"n",
"36":"n",
"37":"n",
"38":"n",
"39":"n",
"40":"n",
"41":"n",
"42":"n",
"43":"n",
"44":"n",
"45":"n",
"46":"n",
"47":"n",
"48":"n",
"49":"n",
"50":"n",
"51":"n",
"52":"n",
"53":"n",
"54":"n",
"55":"n",
"56":"n",
"57":"n",
"58":"n",
"60":"n",
"62":"n"
},
"ios_saf":{
"3.2":"n",
"4.0-4.1":"n",
"4.2-4.3":"n",
"5.0-5.1":"n",
"6.0-6.1":"n",
"7.0-7.1":"n",
"8":"n",
"8.1-8.4":"n",
"9.0-9.2":"n",
"9.3":"n",
"10.0-10.2":"n",
"10.3":"n",
"11.0-11.2":"n",
"11.3-11.4":"n",
"12.0-12.1":"n",
"12.2-12.3":"n",
"13":"n"
},
"op_mini":{
"all":"n"
},
"android":{
"2.1":"n",
"2.2":"n",
"2.3":"n",
"3":"n",
"4":"n",
"4.1":"n",
"4.2-4.3":"n",
"4.4":"n",
"4.4.3-4.4.4":"n",
"76":"n"
},
"bb":{
"7":"n",
"10":"n"
},
"op_mob":{
"10":"n",
"11":"n",
"11.1":"n",
"11.5":"n",
"12":"n",
"12.1":"n",
"46":"n"
},
"and_chr":{
"76":"n"
},
"and_ff":{
"68":"n"
},
"ie_mob":{
"10":"y x",
"11":"y x"
},
"and_uc":{
"12.12":"n"
},
"samsung":{
"4":"n",
"5.0-5.4":"n",
"6.2-6.4":"n",
"7.2-7.4":"n",
"8.2":"n",
"9.2":"n"
},
"and_qq":{
"1.2":"n"
},
"baidu":{
"7.12":"n"
},
"kaios":{
"2.5":"n"
}
},
"notes":"",
"notes_by_num":{
},
"usage_perc_y":4,
"usage_perc_a":0,
"ucprefix":false,
"parent":"",
"keywords":"floats,exclusions,wrap-flow,wrap-through",
"ie_id":"exclusions",
"chrome_id":"6296903092273152",
"firefox_id":"",
"webkit_id":"",
"shown":true
}

Some files were not shown because too many files have changed in this diff Show More