first commit
This commit is contained in:
8
build/node_modules/caniuse-db/.editorconfig
generated
vendored
Normal file
8
build/node_modules/caniuse-db/.editorconfig
generated
vendored
Normal 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
|
||||
8
build/node_modules/caniuse-db/.npmignore
generated
vendored
Normal file
8
build/node_modules/caniuse-db/.npmignore
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
.gitignore
|
||||
.gitattributes
|
||||
|
||||
.travis.yml
|
||||
validator/
|
||||
|
||||
Contributing.md
|
||||
sample-data.json
|
||||
103
build/node_modules/caniuse-db/CONTRIBUTING.md
generated
vendored
Normal file
103
build/node_modules/caniuse-db/CONTRIBUTING.md
generated
vendored
Normal 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](http://caniuse.com/issue-list) of votes.
|
||||
|
||||
## Caniuse data
|
||||
|
||||
The `features-json` directory includes JSON files for every feature found on [the caniuse.com website](http://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, don’t 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 [status.modern.ie](http://status.modern.ie) - Each ID is the string in the feature's URL
|
||||
* **chrome_id** — Comma separated IDs used by [chromestatus.com](http://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.html](http://www.webkit.org/status.html) - 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](http://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 http://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
|
||||
|
||||
`node validator/validate-jsons.js`
|
||||
|
||||
If something is wrong, it will throw an error.
|
||||
Everything is ok otherwise.
|
||||
396
build/node_modules/caniuse-db/LICENSE
generated
vendored
Normal file
396
build/node_modules/caniuse-db/LICENSE
generated
vendored
Normal 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.
|
||||
|
||||
15
build/node_modules/caniuse-db/README.md
generated
vendored
Normal file
15
build/node_modules/caniuse-db/README.md
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||

|
||||
|
||||
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
build/node_modules/caniuse-db/data.json
generated
vendored
Normal file
1
build/node_modules/caniuse-db/data.json
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
313
build/node_modules/caniuse-db/features-json/aac.json
generated
vendored
Normal file
313
build/node_modules/caniuse-db/features-json/aac.json
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"a #1"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"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":88.59,
|
||||
"usage_perc_a":5.97,
|
||||
"ucprefix":false,
|
||||
"parent":"audio",
|
||||
"keywords":"audio/aac",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
313
build/node_modules/caniuse-db/features-json/ac3-ec3.json
generated
vendored
Normal file
313
build/node_modules/caniuse-db/features-json/ac3-ec3.json
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"a #1"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Claims \"probably\" support, actual playback is untested"
|
||||
},
|
||||
"usage_perc_y":1.99,
|
||||
"usage_perc_a":18.12,
|
||||
"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
|
||||
}
|
||||
322
build/node_modules/caniuse-db/features-json/addeventlistener.json
generated
vendored
Normal file
322
build/node_modules/caniuse-db/features-json/addeventlistener.json
generated
vendored
Normal file
@@ -0,0 +1,322 @@
|
||||
{
|
||||
"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 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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"y",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":97.96,
|
||||
"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
|
||||
}
|
||||
326
build/node_modules/caniuse-db/features-json/alternate-stylesheet.json
generated
vendored
Normal file
326
build/node_modules/caniuse-db/features-json/alternate-stylesheet.json
generated
vendored
Normal file
@@ -0,0 +1,326 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"u",
|
||||
"10":"u"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"u",
|
||||
"11":"u",
|
||||
"11.1":"u",
|
||||
"11.5":"u",
|
||||
"12":"u",
|
||||
"12.1":"u",
|
||||
"37":"u"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"u"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"u"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"u",
|
||||
"11":"u"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"u"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"u",
|
||||
"5":"u",
|
||||
"6.2":"u"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"u"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":9.76,
|
||||
"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
|
||||
}
|
||||
326
build/node_modules/caniuse-db/features-json/ambient-light.json
generated
vendored
Normal file
326
build/node_modules/caniuse-db/features-json/ambient-light.json
generated
vendored
Normal file
@@ -0,0 +1,326 @@
|
||||
{
|
||||
"title":"Ambient Light API",
|
||||
"description":"Defines events that provide information about the ambient light level, as measured by a device's light sensor.",
|
||||
"spec":"https://www.w3.org/TR/ambient-light/",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://aurelio.audero.it/demo/ambient-light-api-demo.html",
|
||||
"title":"Demo"
|
||||
},
|
||||
{
|
||||
"url":"http://modernweb.com/2014/05/27/introduction-to-the-ambient-light-api/",
|
||||
"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":"y",
|
||||
"15":"y",
|
||||
"16":"y",
|
||||
"17":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Partial support in desktop Firefox refers to support being limited to Mac OS X. [Support for Windows 7 is in progress](https://bugzilla.mozilla.org/show_bug.cgi?id=754199)",
|
||||
"2":"Available by enabling the \"Experimental Web Platform Features\" experimental flag in `about:flags`"
|
||||
},
|
||||
"usage_perc_y":2.27,
|
||||
"usage_perc_a":5.6,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"ambientlightsensorapi",
|
||||
"chrome_id":"5298357018820608",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
337
build/node_modules/caniuse-db/features-json/apng.json
generated
vendored
Normal file
337
build/node_modules/caniuse-db/features-json/apng.json
generated
vendored
Normal file
@@ -0,0 +1,337 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"y",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"Where support for APNG is missing, only the first frame is displayed",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":72.43,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"6691520493125632",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
317
build/node_modules/caniuse-db/features-json/arrow-functions.json
generated
vendored
Normal file
317
build/node_modules/caniuse-db/features-json/arrow-functions.json
generated
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":77.74,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"ES6,JavaScript,fat,arrow,function,lexical,this",
|
||||
"ie_id":"arrowfunctiones6",
|
||||
"chrome_id":"5047308127305728",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"feature-arrow-functions",
|
||||
"shown":true
|
||||
}
|
||||
328
build/node_modules/caniuse-db/features-json/asmjs.json
generated
vendored
Normal file
328
build/node_modules/caniuse-db/features-json/asmjs.json
generated
vendored
Normal file
@@ -0,0 +1,328 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"a #1"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"a #1"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"a #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"a #1",
|
||||
"6.2":"a #1"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"a #1"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"a #1"
|
||||
}
|
||||
},
|
||||
"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":7.93,
|
||||
"usage_perc_a":58.96,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"asm,asm.js,asmjs,WebAssembly",
|
||||
"ie_id":"asmjs",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"asmjs",
|
||||
"webkit_id":"specification-webassembly",
|
||||
"shown":true
|
||||
}
|
||||
318
build/node_modules/caniuse-db/features-json/async-functions.json
generated
vendored
Normal file
318
build/node_modules/caniuse-db/features-json/async-functions.json
generated
vendored
Normal file
@@ -0,0 +1,318 @@
|
||||
{
|
||||
"title":"Async functions",
|
||||
"description":"Async function 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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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":"y",
|
||||
"11":"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"
|
||||
},
|
||||
"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":"y",
|
||||
"11.0-11.2":"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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."
|
||||
},
|
||||
"usage_perc_y":73.32,
|
||||
"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
|
||||
}
|
||||
323
build/node_modules/caniuse-db/features-json/atob-btoa.json
generated
vendored
Normal file
323
build/node_modules/caniuse-db/features-json/atob-btoa.json
generated
vendored
Normal file
@@ -0,0 +1,323 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"u",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":97.77,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"atob,btoa",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
331
build/node_modules/caniuse-db/features-json/audio-api.json
generated
vendored
Normal file
331
build/node_modules/caniuse-db/features-json/audio-api.json
generated
vendored
Normal file
@@ -0,0 +1,331 @@
|
||||
{
|
||||
"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":[
|
||||
{
|
||||
"description":"Safari does not appear to support `createMediaElementSource`"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":80.86,
|
||||
"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
|
||||
}
|
||||
349
build/node_modules/caniuse-db/features-json/audio.json
generated
vendored
Normal file
349
build/node_modules/caniuse-db/features-json/audio.json
generated
vendored
Normal file
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"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":"Chrome on Android does [not support autoplay](https://code.google.com/p/chromium/issues/detail?id=178297) as advised by the specification."
|
||||
},
|
||||
{
|
||||
"description":"Chrome on Android does [not support changing playbackrate](https://developer.mozilla.org/en-US/Apps/Build/Audio_and_video_delivery/WebAudio_playbackRate_explained) as advised by the specification."
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":94.96,
|
||||
"usage_perc_a":0.11,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"<audio>",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
313
build/node_modules/caniuse-db/features-json/audiotracks.json
generated
vendored
Normal file
313
build/node_modules/caniuse-db/features-json/audiotracks.json
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Supported in Firefox by enabling \"media.track.enabled\" in about:config"
|
||||
},
|
||||
"usage_perc_y":18.33,
|
||||
"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
|
||||
}
|
||||
319
build/node_modules/caniuse-db/features-json/autofocus.json
generated
vendored
Normal file
319
build/node_modules/caniuse-db/features-json/autofocus.json
generated
vendored
Normal file
@@ -0,0 +1,319 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"While not supported in iOS Safari, it does work in iOS WebViews.",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":76.48,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
326
build/node_modules/caniuse-db/features-json/aux-click.json
generated
vendored
Normal file
326
build/node_modules/caniuse-db/features-json/aux-click.json
generated
vendored
Normal file
@@ -0,0 +1,326 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"u"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"u"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"u",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"u"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"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":61.23,
|
||||
"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":false
|
||||
}
|
||||
321
build/node_modules/caniuse-db/features-json/background-attachment.json
generated
vendored
Normal file
321
build/node_modules/caniuse-db/features-json/background-attachment.json
generated
vendored
Normal file
@@ -0,0 +1,321 @@
|
||||
{
|
||||
"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. "
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"a #1"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"a #4",
|
||||
"6.2":"a #4"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"a #4"
|
||||
}
|
||||
},
|
||||
"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":71.81,
|
||||
"usage_perc_a":21.21,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
334
build/node_modules/caniuse-db/features-json/background-img-opts.json
generated
vendored
Normal file
334
build/node_modules/caniuse-db/features-json/background-img-opts.json
generated
vendored
Normal file
@@ -0,0 +1,334 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"y",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"Firefox, Chrome and Safari support the unofficial `-webkit-background-clip: text` (only with prefix)",
|
||||
"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":94.33,
|
||||
"usage_perc_a":3.6,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
329
build/node_modules/caniuse-db/features-json/background-position-x-y.json
generated
vendored
Normal file
329
build/node_modules/caniuse-db/features-json/background-position-x-y.json
generated
vendored
Normal file
@@ -0,0 +1,329 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"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":94.63,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
317
build/node_modules/caniuse-db/features-json/background-repeat-round-space.json
generated
vendored
Normal file
317
build/node_modules/caniuse-db/features-json/background-repeat-round-space.json
generated
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"IE9 does not appear to render \"background-repeat: round\" correctly."
|
||||
},
|
||||
"usage_perc_y":96.06,
|
||||
"usage_perc_a":0.16,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"4 value syntax,background-repeat: round,background-repeat: space",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
317
build/node_modules/caniuse-db/features-json/battery-status.json
generated
vendored
Normal file
317
build/node_modules/caniuse-db/features-json/battery-status.json
generated
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
{
|
||||
"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://www.smartjava.org/examples/webapi-battery/",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"a #1"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":60.63,
|
||||
"usage_perc_a":8.52,
|
||||
"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
|
||||
}
|
||||
315
build/node_modules/caniuse-db/features-json/beacon.json
generated
vendored
Normal file
315
build/node_modules/caniuse-db/features-json/beacon.json
generated
vendored
Normal file
@@ -0,0 +1,315 @@
|
||||
{
|
||||
"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."
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":75.8,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"beacon",
|
||||
"chrome_id":"5517433905348608",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"specification-beacon-api",
|
||||
"shown":true
|
||||
}
|
||||
322
build/node_modules/caniuse-db/features-json/beforeafterprint.json
generated
vendored
Normal file
322
build/node_modules/caniuse-db/features-json/beforeafterprint.json
generated
vendored
Normal file
@@ -0,0 +1,322 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"u",
|
||||
"10":"u"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"u",
|
||||
"11":"u"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"u"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"u",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"Due to its wider support, consider using `window.matchMedia('print')` where possible.",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":12,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"print,printer,printing,beforeprint,afterprint",
|
||||
"ie_id":"",
|
||||
"chrome_id":"5700595042222080",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
317
build/node_modules/caniuse-db/features-json/blobbuilder.json
generated
vendored
Normal file
317
build/node_modules/caniuse-db/features-json/blobbuilder.json
generated
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"Partial support refers to only supporting the now deprecated BlobBuilder to create blobs.",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":92.96,
|
||||
"usage_perc_a":1.53,
|
||||
"ucprefix":true,
|
||||
"parent":"fileapi",
|
||||
"keywords":"",
|
||||
"ie_id":"blob",
|
||||
"chrome_id":"5328783104016384",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
318
build/node_modules/caniuse-db/features-json/bloburls.json
generated
vendored
Normal file
318
build/node_modules/caniuse-db/features-json/bloburls.json
generated
vendored
Normal file
@@ -0,0 +1,318 @@
|
||||
{
|
||||
"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)"
|
||||
}
|
||||
],
|
||||
"categories":[
|
||||
"JS API"
|
||||
],
|
||||
"stats":{
|
||||
"ie":{
|
||||
"5.5":"n",
|
||||
"6":"n",
|
||||
"7":"n",
|
||||
"8":"n",
|
||||
"9":"n",
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"edge":{
|
||||
"12":"y #1",
|
||||
"13":"y #1",
|
||||
"14":"y #1",
|
||||
"15":"y #1",
|
||||
"16":"y #1",
|
||||
"17":"y #1"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Created blob url can't be used in object or iframe (see [issue](https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/5411066/))"
|
||||
},
|
||||
"usage_perc_y":94.41,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"fileapi",
|
||||
"keywords":"createobjecturl,revokeobjecturl",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
325
build/node_modules/caniuse-db/features-json/border-image.json
generated
vendored
Normal file
325
build/node_modules/caniuse-db/features-json/border-image.json
generated
vendored
Normal file
@@ -0,0 +1,325 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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":"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"
|
||||
},
|
||||
"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",
|
||||
"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":"a #2",
|
||||
"44":"a #2",
|
||||
"45":"a #2",
|
||||
"46":"a #2",
|
||||
"47":"a #2",
|
||||
"48":"a #2",
|
||||
"49":"a #2",
|
||||
"50":"a #2"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"a #1 #2"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"a #2"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"a #1 #2"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a #1 #2",
|
||||
"5":"a #2",
|
||||
"6.2":"a #2"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"a #2"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":23.09,
|
||||
"usage_perc_a":74.47,
|
||||
"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
|
||||
}
|
||||
341
build/node_modules/caniuse-db/features-json/border-radius.json
generated
vendored
Normal file
341
build/node_modules/caniuse-db/features-json/border-radius.json
generated
vendored
Normal file
@@ -0,0 +1,341 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"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":95.09,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"roundedcorners, border radius,-moz-border-radius",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
313
build/node_modules/caniuse-db/features-json/broadcastchannel.json
generated
vendored
Normal file
313
build/node_modules/caniuse-db/features-json/broadcastchannel.json
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":60.7,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"broadcast,channel,messaging",
|
||||
"ie_id":"",
|
||||
"chrome_id":"4585496197988352",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
327
build/node_modules/caniuse-db/features-json/brotli.json
generated
vendored
Normal file
327
build/node_modules/caniuse-db/features-json/brotli.json
generated
vendored
Normal file
@@ -0,0 +1,327 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y #2"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"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":72.39,
|
||||
"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
|
||||
}
|
||||
357
build/node_modules/caniuse-db/features-json/calc.json
generated
vendored
Normal file
357
build/node_modules/caniuse-db/features-json/calc.json
generated
vendored
Normal file
@@ -0,0 +1,357 @@
|
||||
{
|
||||
"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":"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":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"edge":{
|
||||
"12":"y",
|
||||
"13":"y",
|
||||
"14":"y",
|
||||
"15":"y",
|
||||
"16":"y",
|
||||
"17":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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."
|
||||
},
|
||||
"usage_perc_y":92.97,
|
||||
"usage_perc_a":1.24,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"csscalc",
|
||||
"chrome_id":"5765241438732288",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
313
build/node_modules/caniuse-db/features-json/canvas-blending.json
generated
vendored
Normal file
313
build/node_modules/caniuse-db/features-json/canvas-blending.json
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":89.91,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"canvas",
|
||||
"keywords":"",
|
||||
"ie_id":"compositingandblendingincanvas2d",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
326
build/node_modules/caniuse-db/features-json/canvas-text.json
generated
vendored
Normal file
326
build/node_modules/caniuse-db/features-json/canvas-text.json
generated
vendored
Normal file
@@ -0,0 +1,326 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"p",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":95.07,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"canvas",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
356
build/node_modules/caniuse-db/features-json/canvas.json
generated
vendored
Normal file
356
build/node_modules/caniuse-db/features-json/canvas.json
generated
vendored
Normal file
@@ -0,0 +1,356 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"y",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":95.08,
|
||||
"usage_perc_a":2.87,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"toDataURL()",
|
||||
"ie_id":"canvas",
|
||||
"chrome_id":"5100084685438976",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
317
build/node_modules/caniuse-db/features-json/ch-unit.json
generated
vendored
Normal file
317
build/node_modules/caniuse-db/features-json/ch-unit.json
generated
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":90.49,
|
||||
"usage_perc_a":3.65,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"ch unit,character unit",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
321
build/node_modules/caniuse-db/features-json/chacha20-poly1305.json
generated
vendored
Normal file
321
build/node_modules/caniuse-db/features-json/chacha20-poly1305.json
generated
vendored
Normal file
@@ -0,0 +1,321 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Old versions of Chrome use non-standard code points for ChaCha20-Poly1305 cipher suites."
|
||||
},
|
||||
"usage_perc_y":65.47,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"chacha20,poly1305,tls,cipher",
|
||||
"ie_id":"",
|
||||
"chrome_id":"5355238106071040",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
317
build/node_modules/caniuse-db/features-json/channel-messaging.json
generated
vendored
Normal file
317
build/node_modules/caniuse-db/features-json/channel-messaging.json
generated
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":94.13,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"x-doc-messaging",
|
||||
"keywords":"",
|
||||
"ie_id":"messagechannels",
|
||||
"chrome_id":"6710044586409984",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
313
build/node_modules/caniuse-db/features-json/childnode-remove.json
generated
vendored
Normal file
313
build/node_modules/caniuse-db/features-json/childnode-remove.json
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":90.1,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"ChildNode,remove,delete,node,DOM",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
339
build/node_modules/caniuse-db/features-json/classlist.json
generated
vendored
Normal file
339
build/node_modules/caniuse-db/features-json/classlist.json
generated
vendored
Normal file
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"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",
|
||||
"11":"a #1 #2 #3 #4"
|
||||
},
|
||||
"edge":{
|
||||
"12":"y",
|
||||
"13":"y",
|
||||
"14":"y",
|
||||
"15":"y",
|
||||
"16":"y",
|
||||
"17":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a #1 #2 #3",
|
||||
"11":"a #1 #2 #3"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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`"
|
||||
},
|
||||
"usage_perc_y":90.06,
|
||||
"usage_perc_a":7.48,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
325
build/node_modules/caniuse-db/features-json/client-hints-dpr-width-viewport.json
generated
vendored
Normal file
325
build/node_modules/caniuse-db/features-json/client-hints-dpr-width-viewport.json
generated
vendored
Normal file
@@ -0,0 +1,325 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":58.3,
|
||||
"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
|
||||
}
|
||||
325
build/node_modules/caniuse-db/features-json/clipboard.json
generated
vendored
Normal file
325
build/node_modules/caniuse-db/features-json/clipboard.json
generated
vendored
Normal file
@@ -0,0 +1,325 @@
|
||||
{
|
||||
"title":"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 #1 #2 #5"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"TP":"a #2 #5"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"a #4 #5"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"a #5"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"a #4"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a #2 #5",
|
||||
"5":"a #5",
|
||||
"6.2":"a #5"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"a #5 #7"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"a #5"
|
||||
}
|
||||
},
|
||||
"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":0,
|
||||
"usage_perc_a":86.17,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"cut,copy,paste,clipboarddata,clipboardevent",
|
||||
"ie_id":"clipboardapi",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
314
build/node_modules/caniuse-db/features-json/comparedocumentposition.json
generated
vendored
Normal file
314
build/node_modules/caniuse-db/features-json/comparedocumentposition.json
generated
vendored
Normal file
@@ -0,0 +1,314 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":95.7,
|
||||
"usage_perc_a":2.08,
|
||||
"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
|
||||
}
|
||||
330
build/node_modules/caniuse-db/features-json/console-basic.json
generated
vendored
Normal file
330
build/node_modules/caniuse-db/features-json/console-basic.json
generated
vendored
Normal file
@@ -0,0 +1,330 @@
|
||||
{
|
||||
"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://developer.apple.com/library/mac/documentation/AppleApplications/Conceptual/Safari_Developer_Guide/Console/Console.html",
|
||||
"title":"Safari 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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"n #2"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y #4"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y #5"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n #2",
|
||||
"11":"n #2"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n #2"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y #4",
|
||||
"5":"y #4",
|
||||
"6.2":"y #4"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y #4"
|
||||
}
|
||||
},
|
||||
"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":89.13,
|
||||
"usage_perc_a":0.44,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"console.log,console.info,console.warn,console.error,window.console",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
313
build/node_modules/caniuse-db/features-json/console-time.json
generated
vendored
Normal file
313
build/node_modules/caniuse-db/features-json/console-time.json
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"u",
|
||||
"11":"u",
|
||||
"11.1":"u",
|
||||
"11.5":"u",
|
||||
"12":"u",
|
||||
"12.1":"u",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":97.46,
|
||||
"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
|
||||
}
|
||||
320
build/node_modules/caniuse-db/features-json/const.json
generated
vendored
Normal file
320
build/node_modules/caniuse-db/features-json/const.json
generated
vendored
Normal file
@@ -0,0 +1,320 @@
|
||||
{
|
||||
"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":"y"
|
||||
},
|
||||
"edge":{
|
||||
"12":"y",
|
||||
"13":"y",
|
||||
"14":"y",
|
||||
"15":"y",
|
||||
"16":"y",
|
||||
"17":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"a #2 #3"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a #4",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"a #2 #3"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"a #4"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"usage_perc_y":80.95,
|
||||
"usage_perc_a":16.62,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"ES6,constant,block,scope",
|
||||
"ie_id":"",
|
||||
"chrome_id":"4645595339816960",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
319
build/node_modules/caniuse-db/features-json/constraint-validation.json
generated
vendored
Normal file
319
build/node_modules/caniuse-db/features-json/constraint-validation.json
generated
vendored
Normal file
@@ -0,0 +1,319 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
],
|
||||
"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":"a #1 #2"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a #1 #2 #3",
|
||||
"11":"a #1 #2 #3"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"a #1 #2"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"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":84.75,
|
||||
"usage_perc_a":9.86,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
334
build/node_modules/caniuse-db/features-json/contenteditable.json
generated
vendored
Normal file
334
build/node_modules/caniuse-db/features-json/contenteditable.json
generated
vendored
Normal file
@@ -0,0 +1,334 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":95.27,
|
||||
"usage_perc_a":0.01,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"iscontenteditable",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
330
build/node_modules/caniuse-db/features-json/contentsecuritypolicy.json
generated
vendored
Normal file
330
build/node_modules/caniuse-db/features-json/contentsecuritypolicy.json
generated
vendored
Normal file
@@ -0,0 +1,330 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"y #2"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a #1",
|
||||
"11":"a #1"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y #2"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":90.34,
|
||||
"usage_perc_a":3.89,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"csp,security,header",
|
||||
"ie_id":"contentsecuritypolicy",
|
||||
"chrome_id":"5205088045891584",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
323
build/node_modules/caniuse-db/features-json/contentsecuritypolicy2.json
generated
vendored
Normal file
323
build/node_modules/caniuse-db/features-json/contentsecuritypolicy2.json
generated
vendored
Normal file
@@ -0,0 +1,323 @@
|
||||
{
|
||||
"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/CSP/",
|
||||
"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":[
|
||||
|
||||
],
|
||||
"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":"y",
|
||||
"16":"y",
|
||||
"17":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"a #6"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"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."
|
||||
},
|
||||
"usage_perc_y":73.21,
|
||||
"usage_perc_a":6.08,
|
||||
"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
|
||||
}
|
||||
343
build/node_modules/caniuse-db/features-json/cors.json
generated
vendored
Normal file
343
build/node_modules/caniuse-db/features-json/cors.json
generated
vendored
Normal file
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"a #1",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a #1",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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"
|
||||
},
|
||||
"usage_perc_y":93.95,
|
||||
"usage_perc_a":1.35,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
334
build/node_modules/caniuse-db/features-json/credential-management.json
generated
vendored
Normal file
334
build/node_modules/caniuse-db/features-json/credential-management.json
generated
vendored
Normal file
@@ -0,0 +1,334 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":54.98,
|
||||
"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
|
||||
}
|
||||
348
build/node_modules/caniuse-db/features-json/cryptography.json
generated
vendored
Normal file
348
build/node_modules/caniuse-db/features-json/cryptography.json
generated
vendored
Normal file
@@ -0,0 +1,348 @@
|
||||
{
|
||||
"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",
|
||||
"13":"y",
|
||||
"14":"y",
|
||||
"15":"y",
|
||||
"16":"y",
|
||||
"17":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"p",
|
||||
"10":"p"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"p",
|
||||
"11":"p",
|
||||
"11.1":"p",
|
||||
"11.5":"p",
|
||||
"12":"p",
|
||||
"12.1":"p",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"p"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"p",
|
||||
"11":"a x #1"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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."
|
||||
},
|
||||
"usage_perc_y":88.07,
|
||||
"usage_perc_a":3.54,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"subtle,subtlecrypto",
|
||||
"ie_id":"webcryptoapi",
|
||||
"chrome_id":"5030265697075200",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"specification-web-cryptography-api",
|
||||
"shown":true
|
||||
}
|
||||
325
build/node_modules/caniuse-db/features-json/css-all.json
generated
vendored
Normal file
325
build/node_modules/caniuse-db/features-json/css-all.json
generated
vendored
Normal file
@@ -0,0 +1,325 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":86.59,
|
||||
"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
|
||||
}
|
||||
338
build/node_modules/caniuse-db/features-json/css-animation.json
generated
vendored
Normal file
338
build/node_modules/caniuse-db/features-json/css-animation.json
generated
vendored
Normal file
@@ -0,0 +1,338 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y x"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":94.66,
|
||||
"usage_perc_a":0.18,
|
||||
"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
|
||||
}
|
||||
313
build/node_modules/caniuse-db/features-json/css-any-link.json
generated
vendored
Normal file
313
build/node_modules/caniuse-db/features-json/css-any-link.json
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y x"
|
||||
},
|
||||
"bb":{
|
||||
"7":"u",
|
||||
"10":"u"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y x"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y x"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y x"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"u"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"u",
|
||||
"5":"y x",
|
||||
"6.2":"y x"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y x"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y x"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":77.59,
|
||||
"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
|
||||
}
|
||||
315
build/node_modules/caniuse-db/features-json/css-appearance.json
generated
vendored
Normal file
315
build/node_modules/caniuse-db/features-json/css-appearance.json
generated
vendored
Normal file
@@ -0,0 +1,315 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"a x #1"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"a x #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"a x #1"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"a #1 #2"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"a x #1"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a x #1",
|
||||
"5":"a x #1",
|
||||
"6.2":"a x #1"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"a x #1"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":91.3,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
313
build/node_modules/caniuse-db/features-json/css-apply-rule.json
generated
vendored
Normal file
313
build/node_modules/caniuse-db/features-json/css-apply-rule.json
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"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":"u",
|
||||
"16":"u",
|
||||
"17":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n d #1"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n d #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n d #1",
|
||||
"6.2":"n d #1"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n d #1"
|
||||
}
|
||||
},
|
||||
"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
|
||||
}
|
||||
313
build/node_modules/caniuse-db/features-json/css-at-counter-style.json
generated
vendored
Normal file
313
build/node_modules/caniuse-db/features-json/css-at-counter-style.json
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"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":"http://dev.w3.org/csswg/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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"a #1"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"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":5.9,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"css @counter-style, list-style",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
327
build/node_modules/caniuse-db/features-json/css-backdrop-filter.json
generated
vendored
Normal file
327
build/node_modules/caniuse-db/features-json/css-backdrop-filter.json
generated
vendored
Normal file
@@ -0,0 +1,327 @@
|
||||
{
|
||||
"title":"CSS Backdrop Filter",
|
||||
"description":"Method of applying filter effects (like blur, grayscale or hue) to content/elements below the target element.",
|
||||
"spec":"http://dev.w3.org/fxtf/filters-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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n d #1"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n d #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n d #1",
|
||||
"6.2":"n d #1"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n d #1"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n d #1"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Can be enabled via the \"Experimental Web Platform Features\" flag"
|
||||
},
|
||||
"usage_perc_y":12.3,
|
||||
"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
|
||||
}
|
||||
322
build/node_modules/caniuse-db/features-json/css-background-offsets.json
generated
vendored
Normal file
322
build/node_modules/caniuse-db/features-json/css-background-offsets.json
generated
vendored
Normal file
@@ -0,0 +1,322 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":97.02,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"4 value syntax",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
324
build/node_modules/caniuse-db/features-json/css-backgroundblendmode.json
generated
vendored
Normal file
324
build/node_modules/caniuse-db/features-json/css-backgroundblendmode.json
generated
vendored
Normal file
@@ -0,0 +1,324 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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":"a #1",
|
||||
"11":"a #1",
|
||||
"TP":"a #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":"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"
|
||||
},
|
||||
"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":"a #1",
|
||||
"11.0-11.2":"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"a #2"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":74.02,
|
||||
"usage_perc_a":12.52,
|
||||
"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
|
||||
}
|
||||
321
build/node_modules/caniuse-db/features-json/css-boxdecorationbreak.json
generated
vendored
Normal file
321
build/node_modules/caniuse-db/features-json/css-boxdecorationbreak.json
generated
vendored
Normal file
@@ -0,0 +1,321 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"a x #1"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"a x #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a x #1",
|
||||
"5":"a x #1",
|
||||
"6.2":"a x #1"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"a x #1"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"a x #1"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Partial support refers to working for inline elements but not across column or page breaks."
|
||||
},
|
||||
"usage_perc_y":14.23,
|
||||
"usage_perc_a":76.81,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"box-decoration,box decoration,break",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
333
build/node_modules/caniuse-db/features-json/css-boxshadow.json
generated
vendored
Normal file
333
build/node_modules/caniuse-db/features-json/css-boxshadow.json
generated
vendored
Normal file
@@ -0,0 +1,333 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y x",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":95.07,
|
||||
"usage_perc_a":0.01,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"box-shadows,boxshadows,box shadow,shaow",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
313
build/node_modules/caniuse-db/features-json/css-canvas.json
generated
vendored
Normal file
313
build/node_modules/caniuse-db/features-json/css-canvas.json
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y x",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y x"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"A similar effect can be achieved in Firefox 4+ using the -moz-element() background property",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":24.82,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
321
build/node_modules/caniuse-db/features-json/css-caret-color.json
generated
vendored
Normal file
321
build/node_modules/caniuse-db/features-json/css-caret-color.json
generated
vendored
Normal file
@@ -0,0 +1,321 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":59,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"5720917787279360",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
321
build/node_modules/caniuse-db/features-json/css-case-insensitive.json
generated
vendored
Normal file
321
build/node_modules/caniuse-db/features-json/css-case-insensitive.json
generated
vendored
Normal file
@@ -0,0 +1,321 @@
|
||||
{
|
||||
"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://drafts.csswg.org/selectors-4/#attribute-case",
|
||||
"status":"unoff",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":76.02,
|
||||
"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
|
||||
}
|
||||
323
build/node_modules/caniuse-db/features-json/css-clip-path.json
generated
vendored
Normal file
323
build/node_modules/caniuse-db/features-json/css-clip-path.json
generated
vendored
Normal file
@@ -0,0 +1,323 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"a #2"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"a x #2"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"a #2"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"a x #2"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a x #2",
|
||||
"5":"a x #2",
|
||||
"6.2":"a x #2"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"a x #2"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"a #2"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"usage_perc_y":4.74,
|
||||
"usage_perc_a":83.43,
|
||||
"ucprefix":false,
|
||||
"parent":"css-masks",
|
||||
"keywords":"clippath",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"css-clip-path",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
325
build/node_modules/caniuse-db/features-json/css-conic-gradients.json
generated
vendored
Normal file
325
build/node_modules/caniuse-db/features-json/css-conic-gradients.json
generated
vendored
Normal file
@@ -0,0 +1,325 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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 d #1",
|
||||
"47":"n d #1",
|
||||
"48":"n d #1",
|
||||
"49":"n d #1",
|
||||
"50":"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n d #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Can be enabled via the \"Experimental Web Platform Features\" flag"
|
||||
},
|
||||
"usage_perc_y":0,
|
||||
"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
|
||||
}
|
||||
317
build/node_modules/caniuse-db/features-json/css-containment.json
generated
vendored
Normal file
317
build/node_modules/caniuse-db/features-json/css-containment.json
generated
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
{
|
||||
"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://drafts.csswg.org/css-containment/#style-containment",
|
||||
"status":"unoff",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Enabled via the \"Experimental Web Platform features\" flag"
|
||||
},
|
||||
"usage_perc_y":56.25,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"csscontainment",
|
||||
"chrome_id":"6522186978295808",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
321
build/node_modules/caniuse-db/features-json/css-counters.json
generated
vendored
Normal file
321
build/node_modules/caniuse-db/features-json/css-counters.json
generated
vendored
Normal file
@@ -0,0 +1,321 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"y",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":98.23,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
333
build/node_modules/caniuse-db/features-json/css-crisp-edges.json
generated
vendored
Normal file
333
build/node_modules/caniuse-db/features-json/css-crisp-edges.json
generated
vendored
Normal file
@@ -0,0 +1,333 @@
|
||||
{
|
||||
"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":"http://dev.w3.org/csswg/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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"y #4"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y #4"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y x #3"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a x #2 #5",
|
||||
"11":"a x #2 #5"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"a x #1 #6"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y #4",
|
||||
"5":"y #4",
|
||||
"6.2":"y #4"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y #4"
|
||||
}
|
||||
},
|
||||
"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":77.28,
|
||||
"usage_perc_a":13.71,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"image-rendering,crisp-edges",
|
||||
"ie_id":"imagerendering",
|
||||
"chrome_id":"5118058116939776",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
313
build/node_modules/caniuse-db/features-json/css-cross-fade.json
generated
vendored
Normal file
313
build/node_modules/caniuse-db/features-json/css-cross-fade.json
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y x"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y x"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y x"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y x",
|
||||
"5":"y x",
|
||||
"6.2":"y x"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y x"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y x"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":82.33,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"css,image,crossfade",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
330
build/node_modules/caniuse-db/features-json/css-default-pseudo.json
generated
vendored
Normal file
330
build/node_modules/caniuse-db/features-json/css-default-pseudo.json
generated
vendored
Normal file
@@ -0,0 +1,330 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"a #1"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"a #1"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a #1",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"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":73.51,
|
||||
"usage_perc_a":18.17,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":":default,default",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
325
build/node_modules/caniuse-db/features-json/css-descendant-gtgt.json
generated
vendored
Normal file
325
build/node_modules/caniuse-db/features-json/css-descendant-gtgt.json
generated
vendored
Normal file
@@ -0,0 +1,325 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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":"u",
|
||||
"65":"u",
|
||||
"66":"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":1.43,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
334
build/node_modules/caniuse-db/features-json/css-deviceadaptation.json
generated
vendored
Normal file
334
build/node_modules/caniuse-db/features-json/css-deviceadaptation.json
generated
vendored
Normal file
@@ -0,0 +1,334 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"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",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a x #1",
|
||||
"11":"a x #1"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n d"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"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":8.58,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"viewport",
|
||||
"ie_id":"cssdeviceadaptation",
|
||||
"chrome_id":"4737164243894272",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
333
build/node_modules/caniuse-db/features-json/css-dir-pseudo.json
generated
vendored
Normal file
333
build/node_modules/caniuse-db/features-json/css-dir-pseudo.json
generated
vendored
Normal file
@@ -0,0 +1,333 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":5.99,
|
||||
"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
|
||||
}
|
||||
325
build/node_modules/caniuse-db/features-json/css-display-contents.json
generated
vendored
Normal file
325
build/node_modules/caniuse-db/features-json/css-display-contents.json
generated
vendored
Normal file
@@ -0,0 +1,325 @@
|
||||
{
|
||||
"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":[
|
||||
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Enabled in Chrome through the \"experimental Web Platform features\" flag in chrome://flags"
|
||||
},
|
||||
"usage_perc_y":5.86,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"5663606012116992",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
318
build/node_modules/caniuse-db/features-json/css-element-function.json
generated
vendored
Normal file
318
build/node_modules/caniuse-db/features-json/css-element-function.json
generated
vendored
Normal file
@@ -0,0 +1,318 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y x"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"In Firefox < 4, usage limited to the background and background-image CSS properties"
|
||||
},
|
||||
"usage_perc_y":6.07,
|
||||
"usage_perc_a":0.03,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"element, function",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
321
build/node_modules/caniuse-db/features-json/css-exclusions.json
generated
vendored
Normal file
321
build/node_modules/caniuse-db/features-json/css-exclusions.json
generated
vendored
Normal file
@@ -0,0 +1,321 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y x",
|
||||
"11":"y x"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":5.74,
|
||||
"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
|
||||
}
|
||||
330
build/node_modules/caniuse-db/features-json/css-featurequeries.json
generated
vendored
Normal file
330
build/node_modules/caniuse-db/features-json/css-featurequeries.json
generated
vendored
Normal file
@@ -0,0 +1,330 @@
|
||||
{
|
||||
"title":"CSS Feature Queries",
|
||||
"description":"CSS Feature Queries allow authors to condition rules based on whether particular property declarations are supported in CSS using the @supports at rule.",
|
||||
"spec":"https://www.w3.org/TR/css3-conditional/#at-supports",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/@supports",
|
||||
"title":"MDN Web Docs - CSS @supports"
|
||||
},
|
||||
{
|
||||
"url":"http://mcc.id.au/blog/2012/08/supports",
|
||||
"title":"@supports in Firefox"
|
||||
},
|
||||
{
|
||||
"url":"http://dabblet.com/gist/3895764",
|
||||
"title":"Test case"
|
||||
},
|
||||
{
|
||||
"url":"https://www.webplatform.org/docs/css/atrules/@supports",
|
||||
"title":"WebPlatform Docs"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"Using @supports on Chrome 28-29 and Opera 15-16 breaks following :not selectors. [crbug.com/257695](https://bugs.chromium.org/p/chromium/issues/detail?id=257695)"
|
||||
},
|
||||
{
|
||||
"description":"Safari claims to support certain font-feature-settings it actually does not. [This JS module](https://github.com/kennethormandy/font-feature-fibbing) helps to provide accurate support for this."
|
||||
}
|
||||
],
|
||||
"categories":[
|
||||
"CSS3"
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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":"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"See also the [CSS.supports() DOM API](#feat=css-supports-api)",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":92.62,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"supports,conditional",
|
||||
"ie_id":"conditionalrules",
|
||||
"chrome_id":"4993981813358592",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
316
build/node_modules/caniuse-db/features-json/css-filter-function.json
generated
vendored
Normal file
316
build/node_modules/caniuse-db/features-json/css-filter-function.json
generated
vendored
Normal file
@@ -0,0 +1,316 @@
|
||||
{
|
||||
"title":"CSS filter() function",
|
||||
"description":"This function filters a CSS input image with a set of filter functions (like blur, grayscale or hue)",
|
||||
"spec":"https://www.w3.org/TR/filter-effects/#FilterCSSImageValue",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://iamvdo.me/en/blog/advanced-css-filters#filter",
|
||||
"title":"Blog post"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"Firefox feature request: [Mozilla bug #1191043](https://bugzilla.mozilla.org/show_bug.cgi?id=1191043)"
|
||||
}
|
||||
],
|
||||
"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":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"10":"y",
|
||||
"10.1":"y",
|
||||
"11":"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"
|
||||
},
|
||||
"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",
|
||||
"10.3":"y",
|
||||
"11.0-11.2":"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":12.3,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"filter, function",
|
||||
"ie_id":"cssfilterimagefunction",
|
||||
"chrome_id":"5425136400334848",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
329
build/node_modules/caniuse-db/features-json/css-filters.json
generated
vendored
Normal file
329
build/node_modules/caniuse-db/features-json/css-filters.json
generated
vendored
Normal file
@@ -0,0 +1,329 @@
|
||||
{
|
||||
"title":"CSS Filter Effects",
|
||||
"description":"Method of applying filter effects (like blur, grayscale, brightness, contrast and hue) to elements, previously only possible by using SVG.",
|
||||
"spec":"https://www.w3.org/TR/filter-effects-1/",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://html5-demos.appspot.com/static/css/filters/index.html",
|
||||
"title":"Demo file for WebKit browsers"
|
||||
},
|
||||
{
|
||||
"url":"https://www.html5rocks.com/en/tutorials/filters/understanding-css/",
|
||||
"title":"HTML5Rocks article"
|
||||
},
|
||||
{
|
||||
"url":"http://dl.dropbox.com/u/3260327/angular/CSS3ImageManipulation.html",
|
||||
"title":"Filter editor"
|
||||
},
|
||||
{
|
||||
"url":"http://bennettfeely.com/filters/",
|
||||
"title":"Filter Playground"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"categories":[
|
||||
"CSS",
|
||||
"CSS3"
|
||||
],
|
||||
"stats":{
|
||||
"ie":{
|
||||
"5.5":"n",
|
||||
"6":"n",
|
||||
"7":"n",
|
||||
"8":"n",
|
||||
"9":"n",
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"edge":{
|
||||
"12":"n d #2 #4",
|
||||
"13":"a #4",
|
||||
"14":"a #4",
|
||||
"15":"a #4",
|
||||
"16":"a #4",
|
||||
"17":"a #4"
|
||||
},
|
||||
"firefox":{
|
||||
"2":"n",
|
||||
"3":"n",
|
||||
"3.5":"n",
|
||||
"3.6":"a #3",
|
||||
"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":"a #3",
|
||||
"16":"a #3",
|
||||
"17":"a #3",
|
||||
"18":"a #3",
|
||||
"19":"a #3",
|
||||
"20":"a #3",
|
||||
"21":"a #3",
|
||||
"22":"a #3",
|
||||
"23":"a #3",
|
||||
"24":"a #3",
|
||||
"25":"a #3",
|
||||
"26":"a #3",
|
||||
"27":"a #3",
|
||||
"28":"a #3",
|
||||
"29":"a #3",
|
||||
"30":"a #3",
|
||||
"31":"a #3",
|
||||
"32":"a #3",
|
||||
"33":"a #3",
|
||||
"34":"a d #1",
|
||||
"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"
|
||||
},
|
||||
"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":"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",
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"10":"y",
|
||||
"10.1":"y",
|
||||
"11":"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",
|
||||
"41":"y",
|
||||
"42":"y",
|
||||
"43":"y",
|
||||
"44":"y",
|
||||
"45":"y",
|
||||
"46":"y",
|
||||
"47":"y",
|
||||
"48":"y",
|
||||
"49":"y",
|
||||
"50":"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",
|
||||
"10.0-10.2":"y",
|
||||
"10.3":"y",
|
||||
"11.0-11.2":"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"y x"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y x"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y x",
|
||||
"5":"y x",
|
||||
"6.2":"y x"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y x"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y x"
|
||||
}
|
||||
},
|
||||
"notes":"Note that this property is significantly different from and incompatible with Microsoft's [older \"filter\" property](http://msdn.microsoft.com/en-us/library/ie/ms530752%28v=vs.85%29.aspx).",
|
||||
"notes_by_num":{
|
||||
"1":"Supported in Firefox under the `layout.css.filters.enabled` flag.",
|
||||
"2":"Supported in MS Edge under the \"Enable CSS filter property\" flag.",
|
||||
"3":"Partial support in Firefox before version 34 [only implemented the url() function of the filter property](https://developer.mozilla.org/en-US/docs/Web/CSS/filter#Browser_compatibility)",
|
||||
"4":"Partial support refers to supporting filter functions, but not the `url` function."
|
||||
},
|
||||
"usage_perc_y":88.13,
|
||||
"usage_perc_a":2.16,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"sepia,hue-rotate,invert,saturate,filter:blur",
|
||||
"ie_id":"filters",
|
||||
"chrome_id":"5822463824887808",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
321
build/node_modules/caniuse-db/features-json/css-first-letter.json
generated
vendored
Normal file
321
build/node_modules/caniuse-db/features-json/css-first-letter.json
generated
vendored
Normal file
@@ -0,0 +1,321 @@
|
||||
{
|
||||
"title":"::first-letter CSS pseudo-element selector",
|
||||
"description":"CSS pseudo-element that allows styling only the first \"letter\" of text within an element. Useful for implementing initial caps or drop caps styling.",
|
||||
"spec":"https://www.w3.org/TR/css3-selectors/#first-letter",
|
||||
"status":"rec",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/::first-letter",
|
||||
"title":"MDN Web Docs - :first-letter"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"In webkit-based browsers first character of text inside elements, styled with `::first-letter`, is not highlighted while selecting the text. [See bug](https://bugs.webkit.org/show_bug.cgi?id=6185)"
|
||||
},
|
||||
{
|
||||
"description":"Firefox appears to incorrectly cut off the top & bottom of a `::first-letter` character in certain cases [see Firefox bug #1233271](https://bugzilla.mozilla.org/show_bug.cgi?id=1233271)"
|
||||
}
|
||||
],
|
||||
"categories":[
|
||||
"CSS"
|
||||
],
|
||||
"stats":{
|
||||
"ie":{
|
||||
"5.5":"u",
|
||||
"6":"a #3 #4",
|
||||
"7":"a #3 #4",
|
||||
"8":"a #3",
|
||||
"9":"y",
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"edge":{
|
||||
"12":"y",
|
||||
"13":"y",
|
||||
"14":"y",
|
||||
"15":"y",
|
||||
"16":"y",
|
||||
"17":"y"
|
||||
},
|
||||
"firefox":{
|
||||
"2":"a #2",
|
||||
"3":"a #1",
|
||||
"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"
|
||||
},
|
||||
"chrome":{
|
||||
"4":"a #1",
|
||||
"5":"u",
|
||||
"6":"u",
|
||||
"7":"u",
|
||||
"8":"u",
|
||||
"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"
|
||||
},
|
||||
"safari":{
|
||||
"3.1":"u",
|
||||
"3.2":"a #1",
|
||||
"4":"a #1",
|
||||
"5":"u",
|
||||
"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",
|
||||
"TP":"y"
|
||||
},
|
||||
"opera":{
|
||||
"9":"u",
|
||||
"9.5-9.6":"u",
|
||||
"10.0-10.1":"a #2",
|
||||
"10.5":"a #2",
|
||||
"10.6":"a #2",
|
||||
"11":"a #2",
|
||||
"11.1":"a #2",
|
||||
"11.5":"a #2",
|
||||
"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"
|
||||
},
|
||||
"ios_saf":{
|
||||
"3.2":"u",
|
||||
"4.0-4.1":"u",
|
||||
"4.2-4.3":"u",
|
||||
"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"
|
||||
},
|
||||
"op_mini":{
|
||||
"all":"y"
|
||||
},
|
||||
"android":{
|
||||
"2.1":"u",
|
||||
"2.2":"u",
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"a #2",
|
||||
"11":"a #2",
|
||||
"11.1":"a #2",
|
||||
"11.5":"a #2",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"The spec says that both letters of digraphs which are always capitalized together (such as \"IJ\" in Dutch) should be matched by ::first-letter, but no browser has ever implemented this.",
|
||||
"notes_by_num":{
|
||||
"1":"Excludes punctuation immediately after the first letter from the match. (The spec says it should be included in the match.)",
|
||||
"2":"Acts like the first character is always a letter even when it's not. For example, given \"!,X;\", \"!,\" is matched instead of the entire string.",
|
||||
"3":"Only recognizes the deprecated :first-letter pseudo-class, not the ::first-letter pseudo-element.",
|
||||
"4":"Only matches the very first character. The spec says that surrounding punctuation should also match."
|
||||
},
|
||||
"usage_perc_y":97.69,
|
||||
"usage_perc_a":0.37,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"first,letter,pseudo,element,class,selector",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
317
build/node_modules/caniuse-db/features-json/css-first-line.json
generated
vendored
Normal file
317
build/node_modules/caniuse-db/features-json/css-first-line.json
generated
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
{
|
||||
"title":"CSS first-line pseudo-element",
|
||||
"description":"Allows styling specifically for the first line of text using the `::first-line` pseudo-element. Note that only a limited set of properties can be applied.",
|
||||
"spec":"https://drafts.csswg.org/selectors-3/#first-line",
|
||||
"status":"rec",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/::first-line",
|
||||
"title":"MDN Web Docs - ::first-line"
|
||||
},
|
||||
{
|
||||
"url":"https://css-tricks.com/almanac/selectors/f/first-line/",
|
||||
"title":"CSS tricks article"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"categories":[
|
||||
"CSS3"
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"y",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"IE8 only supports the single-colon CSS 2.1 syntax (i.e. `:first-line`). It does not support the double-colon CSS3 syntax (i.e. `::first-line`)."
|
||||
},
|
||||
"usage_perc_y":97.96,
|
||||
"usage_perc_a":0.31,
|
||||
"ucprefix":false,
|
||||
"parent":"css-sel3",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
329
build/node_modules/caniuse-db/features-json/css-fixed.json
generated
vendored
Normal file
329
build/node_modules/caniuse-db/features-json/css-fixed.json
generated
vendored
Normal file
@@ -0,0 +1,329 @@
|
||||
{
|
||||
"title":"CSS position:fixed",
|
||||
"description":"Method of keeping an element in a fixed location regardless of scroll position",
|
||||
"spec":"https://www.w3.org/TR/CSS21/visuren.html#fixed-positioning",
|
||||
"status":"rec",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://www.css-101.org/fixed-positioning/05.php",
|
||||
"title":"Workaround for IE6"
|
||||
},
|
||||
{
|
||||
"url":"http://bradfrostweb.com/blog/mobile/fixed-position/",
|
||||
"title":"Article on mobile support"
|
||||
},
|
||||
{
|
||||
"url":"https://www.webplatform.org/docs/css/properties/position",
|
||||
"title":"WebPlatform Docs"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"in iOS Safari 5-7, position:fixed will move to center of window with focus event on child text input field."
|
||||
},
|
||||
{
|
||||
"description":"In Android 4.0-4.3 `position:fixed` inside an iframe will cause unexpected behviour."
|
||||
}
|
||||
],
|
||||
"categories":[
|
||||
"CSS"
|
||||
],
|
||||
"stats":{
|
||||
"ie":{
|
||||
"5.5":"n",
|
||||
"6":"p",
|
||||
"7":"y",
|
||||
"8":"y",
|
||||
"9":"y",
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"edge":{
|
||||
"12":"y",
|
||||
"13":"y",
|
||||
"14":"y",
|
||||
"15":"y",
|
||||
"16":"y",
|
||||
"17":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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 #4",
|
||||
"10":"y",
|
||||
"10.1":"y",
|
||||
"11":"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"
|
||||
},
|
||||
"ios_saf":{
|
||||
"3.2":"n",
|
||||
"4.0-4.1":"n",
|
||||
"4.2-4.3":"n",
|
||||
"5.0-5.1":"a #1",
|
||||
"6.0-6.1":"a #1",
|
||||
"7.0-7.1":"a #1",
|
||||
"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"
|
||||
},
|
||||
"op_mini":{
|
||||
"all":"n"
|
||||
},
|
||||
"android":{
|
||||
"2.1":"a #2",
|
||||
"2.2":"a #2",
|
||||
"2.3":"a #2",
|
||||
"3":"y",
|
||||
"4":"y #3",
|
||||
"4.1":"y #3",
|
||||
"4.2-4.3":"y #3",
|
||||
"4.4":"y",
|
||||
"4.4.3-4.4.4":"y",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"y",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Partial support in older iOS Safari refers to [buggy behavior](http://remysharp.com/2012/05/24/issues-with-position-fixed-scrolling-on-ios/).",
|
||||
"2":"Only works in Android 2.1 thru 2.3 by using the following meta tag: <meta name=\"viewport\" content=\"width=device-width, user-scalable=no\">.",
|
||||
"3":"Android 4.0-4.3 [ignore transforms and margin:auto on position:fixed elements](https://codepen.io/mattiacci/pen/mPRKZY).",
|
||||
"4":"in Safari 9.1, having a `position:fixed`-element inside an animated element, [may cause the `position:fixed`-element to not appear](https://jsbin.com/fuxipax)."
|
||||
},
|
||||
"usage_perc_y":95.15,
|
||||
"usage_perc_a":0.1,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
325
build/node_modules/caniuse-db/features-json/css-focus-ring.json
generated
vendored
Normal file
325
build/node_modules/caniuse-db/features-json/css-focus-ring.json
generated
vendored
Normal file
@@ -0,0 +1,325 @@
|
||||
{
|
||||
"title":":focus-ring CSS pseudo-class",
|
||||
"description":"The `:focus-ring` pseudo-class applies while an element matches the `:focus` pseudo-class, and the UA determines via heuristics that the focus should be specially indicated on the element (typically via a \u201cfocus ring\u201d).",
|
||||
"spec":"https://drafts.csswg.org/selectors-4/#the-focusring-pseudo",
|
||||
"status":"unoff",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://github.com/WICG/focus-ring",
|
||||
"title":"Prototype for `:focus-ring`"
|
||||
},
|
||||
{
|
||||
"url":"https://bugs.webkit.org/show_bug.cgi?id=140144",
|
||||
"title":"WebKit bug #140144: Add support for `-webkit-focusring` CSS pseudo class"
|
||||
},
|
||||
{
|
||||
"url":"https://bugs.chromium.org/p/chromium/issues/detail?id=271023",
|
||||
"title":"Chromium issue #271023: Outline should not appear on elements focused by mouse"
|
||||
},
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-focusring",
|
||||
"title":"Mozilla Developer Network (MDN) documentation - :-moz-focusring"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"firefox":{
|
||||
"2":"n",
|
||||
"3":"n",
|
||||
"3.5":"n",
|
||||
"3.6":"n",
|
||||
"4":"y x #1",
|
||||
"5":"y x #1",
|
||||
"6":"y x #1",
|
||||
"7":"y x #1",
|
||||
"8":"y x #1",
|
||||
"9":"y x #1",
|
||||
"10":"y x #1",
|
||||
"11":"y x #1",
|
||||
"12":"y x #1",
|
||||
"13":"y x #1",
|
||||
"14":"y x #1",
|
||||
"15":"y x #1",
|
||||
"16":"y x #1",
|
||||
"17":"y x #1",
|
||||
"18":"y x #1",
|
||||
"19":"y x #1",
|
||||
"20":"y x #1",
|
||||
"21":"y x #1",
|
||||
"22":"y x #1",
|
||||
"23":"y x #1",
|
||||
"24":"y x #1",
|
||||
"25":"y x #1",
|
||||
"26":"y x #1",
|
||||
"27":"y x #1",
|
||||
"28":"y x #1",
|
||||
"29":"y x #1",
|
||||
"30":"y x #1",
|
||||
"31":"y x #1",
|
||||
"32":"y x #1",
|
||||
"33":"y x #1",
|
||||
"34":"y x #1",
|
||||
"35":"y x #1",
|
||||
"36":"y x #1",
|
||||
"37":"y x #1",
|
||||
"38":"y x #1",
|
||||
"39":"y x #1",
|
||||
"40":"y x #1",
|
||||
"41":"y x #1",
|
||||
"42":"y x #1",
|
||||
"43":"y x #1",
|
||||
"44":"y x #1",
|
||||
"45":"y x #1",
|
||||
"46":"y x #1",
|
||||
"47":"y x #1",
|
||||
"48":"y x #1",
|
||||
"49":"y x #1",
|
||||
"50":"y x #1",
|
||||
"51":"y x #1",
|
||||
"52":"y x #1",
|
||||
"53":"y x #1",
|
||||
"54":"y x #1",
|
||||
"55":"y x #1",
|
||||
"56":"y x #1",
|
||||
"57":"y x #1",
|
||||
"58":"y x #1",
|
||||
"59":"y x #1",
|
||||
"60":"y x #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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y x #1"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"As `-moz-focusring`"
|
||||
},
|
||||
"usage_perc_y":6.07,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"focus,ring,focusring,focus-ring,pseudo",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
341
build/node_modules/caniuse-db/features-json/css-focus-within.json
generated
vendored
Normal file
341
build/node_modules/caniuse-db/features-json/css-focus-within.json
generated
vendored
Normal file
@@ -0,0 +1,341 @@
|
||||
{
|
||||
"title":":focus-within CSS pseudo-class",
|
||||
"description":"The `:focus-within` pseudo-class matches elements that either themselves match `:focus` or that have descendants which match `:focus`.",
|
||||
"spec":"https://drafts.csswg.org/selectors-4/#the-focus-within-pseudo",
|
||||
"status":"unoff",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://www.sitepoint.com/future-generation-css-selectors-level-4/#generalized-input-focus-pseudo-class-focus-within",
|
||||
"title":"The Future Generation of CSS Selectors: Level 4: Generalized Input Focus Pseudo-class"
|
||||
},
|
||||
{
|
||||
"url":"http://allyjs.io/api/style/focus-within.html",
|
||||
"title":"ally.style.focusWithin Polyfill, part of ally.js"
|
||||
},
|
||||
{
|
||||
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/11725071-implement-focus-within-from-selectors-4",
|
||||
"title":"Microsoft Edge feature request on UserVoice"
|
||||
},
|
||||
{
|
||||
"url":"https://bugs.webkit.org/show_bug.cgi?id=140144",
|
||||
"title":"WebKit bug #140144: Add support for CSS4 `:focus-within` pseudo"
|
||||
},
|
||||
{
|
||||
"url":"https://bugs.chromium.org/p/chromium/issues/detail?id=617371",
|
||||
"title":"Chromium issue #617371: Implement `:focus-within` pseudo-class from Selectors Level 4"
|
||||
},
|
||||
{
|
||||
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=1176997",
|
||||
"title":"Mozilla bug #1176997: Add support for pseudo class `:focus-within`"
|
||||
},
|
||||
{
|
||||
"url":"http://jsbin.com/qevoqa/edit?html,css,output",
|
||||
"title":"JS Bin testcase"
|
||||
},
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within",
|
||||
"title":"MDN Web Docs - :focus-within"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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":"y",
|
||||
"61":"y",
|
||||
"62":"y",
|
||||
"63":"y",
|
||||
"64":"y",
|
||||
"65":"y",
|
||||
"66":"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":"y",
|
||||
"11":"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":"y",
|
||||
"48":"y",
|
||||
"49":"y",
|
||||
"50":"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":"y",
|
||||
"11.0-11.2":"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Can be enabled via the \"Experimental Web Platform Features\" flag"
|
||||
},
|
||||
"usage_perc_y":69.12,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"focus,within,focus-within,pseudo",
|
||||
"ie_id":"",
|
||||
"chrome_id":"5363834508279808",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"feature-css-selector-:focus-within",
|
||||
"shown":true
|
||||
}
|
||||
326
build/node_modules/caniuse-db/features-json/css-font-rendering-controls.json
generated
vendored
Normal file
326
build/node_modules/caniuse-db/features-json/css-font-rendering-controls.json
generated
vendored
Normal file
@@ -0,0 +1,326 @@
|
||||
{
|
||||
"title":"CSS font-rendering controls",
|
||||
"description":"`@font-face` descriptor (currently defined as `font-display`) that allows control over how a downloadable font renders before it is fully loaded.",
|
||||
"spec":"https://tabatkins.github.io/specs/css-font-display/",
|
||||
"status":"unoff",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developers.google.com/web/updates/2016/02/font-display",
|
||||
"title":"Google Developers article"
|
||||
},
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display",
|
||||
"title":"MDN Web Docs - font-display"
|
||||
},
|
||||
{
|
||||
"url":"https://css-tricks.com/font-display-masses/",
|
||||
"title":"CSS tricks article"
|
||||
},
|
||||
{
|
||||
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/14653365-prevent-fout-and-control-font-loading-with-css-fon",
|
||||
"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"
|
||||
},
|
||||
"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 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":"y",
|
||||
"59":"y",
|
||||
"60":"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":"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":"y",
|
||||
"61":"y",
|
||||
"62":"y",
|
||||
"63":"y",
|
||||
"64":"y",
|
||||
"65":"y",
|
||||
"66":"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",
|
||||
"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 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":"y",
|
||||
"48":"y",
|
||||
"49":"y",
|
||||
"50":"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n d #1"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n d #1",
|
||||
"6.2":"n d #1"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n d #1"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Can be enabled via the \"Experimental Web Platform features\" flag",
|
||||
"2":"Can be enabled in Firefox through the `layout.css.font-display.enabled` flag at about:config"
|
||||
},
|
||||
"usage_perc_y":53.52,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"4799947908055040",
|
||||
"firefox_id":"css-font-display",
|
||||
"webkit_id":"specification-css-font-display",
|
||||
"shown":true
|
||||
}
|
||||
317
build/node_modules/caniuse-db/features-json/css-font-stretch.json
generated
vendored
Normal file
317
build/node_modules/caniuse-db/features-json/css-font-stretch.json
generated
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
{
|
||||
"title":"CSS font-stretch",
|
||||
"description":"If a font has multiple types of variations based on the width of characters, the `font-stretch` property allows the appropriate one to be selected. The property in itself does not cause the browser to stretch to a font.",
|
||||
"spec":"https://www.w3.org/TR/css-fonts-3/#font-stretch-prop",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/font-stretch",
|
||||
"title":"MDN Web Docs - font-stretch"
|
||||
},
|
||||
{
|
||||
"url":"https://css-tricks.com/almanac/properties/f/font-stretch/",
|
||||
"title":"CSS Tricks article"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"categories":[
|
||||
"CSS"
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"firefox":{
|
||||
"2":"n",
|
||||
"3":"n",
|
||||
"3.5":"n",
|
||||
"3.6":"n",
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6":"n",
|
||||
"7":"n",
|
||||
"8":"n",
|
||||
"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"
|
||||
},
|
||||
"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":"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"
|
||||
},
|
||||
"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",
|
||||
"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":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":71.53,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"font stretch",
|
||||
"ie_id":"cssfontstretch",
|
||||
"chrome_id":"4598830058176512",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
330
build/node_modules/caniuse-db/features-json/css-gencontent.json
generated
vendored
Normal file
330
build/node_modules/caniuse-db/features-json/css-gencontent.json
generated
vendored
Normal file
@@ -0,0 +1,330 @@
|
||||
{
|
||||
"title":"CSS Generated content for pseudo-elements",
|
||||
"description":"Method of displaying text or images before or after the given element's contents using the ::before and ::after pseudo-elements. All browsers with support also support the `attr()` notation in the `content` property. ",
|
||||
"spec":"https://www.w3.org/TR/CSS21/generate.html",
|
||||
"status":"rec",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://www.westciv.com/style_master/academy/css_tutorial/advanced/generated_content.html",
|
||||
"title":"Guide on usage"
|
||||
},
|
||||
{
|
||||
"url":"https://dev.opera.com/articles/view/css-generated-content-techniques/",
|
||||
"title":"Dev.Opera article"
|
||||
},
|
||||
{
|
||||
"url":"https://www.webplatform.org/docs/css/generated_and_replaced_content",
|
||||
"title":"WebPlatform Docs"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"Chrome supports CSS transitions on generated content as of v. 26. Safari v6 and below do not support transitions or animations on pseudo elements."
|
||||
},
|
||||
{
|
||||
"description":"IE9, IE10, IE11 ignore CSS rem units in the line-height property. [Bug report](https://connect.microsoft.com/IE/feedback/details/776744/css3-using-rem-to-set-line-height-in-before-after-pseudo-elements-doesnt-work)."
|
||||
},
|
||||
{
|
||||
"description":"Firefox & Edge do not support `:after` and `:before` for input fields"
|
||||
}
|
||||
],
|
||||
"categories":[
|
||||
"CSS2",
|
||||
"CSS3"
|
||||
],
|
||||
"stats":{
|
||||
"ie":{
|
||||
"5.5":"n",
|
||||
"6":"n",
|
||||
"7":"n",
|
||||
"8":"a #1",
|
||||
"9":"y",
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"edge":{
|
||||
"12":"y",
|
||||
"13":"y",
|
||||
"14":"y",
|
||||
"15":"y",
|
||||
"16":"y",
|
||||
"17":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"y",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"y",
|
||||
"11":"y",
|
||||
"11.1":"y",
|
||||
"11.5":"y",
|
||||
"12":"y",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"For content to appear in pseudo-elements, the `content` property must be set (but may be an empty string).",
|
||||
"notes_by_num":{
|
||||
"1":"IE8 only supports the single-colon CSS 2.1 syntax (i.e. :pseudo-class). It does not support the double-colon CSS3 syntax (i.e. ::pseudo-element)."
|
||||
},
|
||||
"usage_perc_y":97.96,
|
||||
"usage_perc_a":0.27,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"before,after",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
321
build/node_modules/caniuse-db/features-json/css-gradients.json
generated
vendored
Normal file
321
build/node_modules/caniuse-db/features-json/css-gradients.json
generated
vendored
Normal file
@@ -0,0 +1,321 @@
|
||||
{
|
||||
"title":"CSS Gradients",
|
||||
"description":"Method of defining a linear or radial color gradient as a CSS image.",
|
||||
"spec":"https://www.w3.org/TR/css3-images/",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://www.colorzilla.com/gradient-editor/",
|
||||
"title":"Cross-browser editor"
|
||||
},
|
||||
{
|
||||
"url":"http://css3pie.com/",
|
||||
"title":"Tool to emulate support in IE"
|
||||
},
|
||||
{
|
||||
"url":"https://www.webplatform.org/docs/css/functions/linear-gradient",
|
||||
"title":"WebPlatform Docs"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"firefox":{
|
||||
"2":"n",
|
||||
"3":"n",
|
||||
"3.5":"n",
|
||||
"3.6":"y x",
|
||||
"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"
|
||||
},
|
||||
"chrome":{
|
||||
"4":"a x",
|
||||
"5":"a x",
|
||||
"6":"a x",
|
||||
"7":"a x",
|
||||
"8":"a x",
|
||||
"9":"a 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",
|
||||
"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"
|
||||
},
|
||||
"safari":{
|
||||
"3.1":"n",
|
||||
"3.2":"n",
|
||||
"4":"a x",
|
||||
"5":"a x",
|
||||
"5.1":"y x",
|
||||
"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",
|
||||
"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":"a x #1",
|
||||
"11.5":"a x #1",
|
||||
"11.6":"y x",
|
||||
"12":"y x",
|
||||
"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"
|
||||
},
|
||||
"ios_saf":{
|
||||
"3.2":"a x",
|
||||
"4.0-4.1":"a x",
|
||||
"4.2-4.3":"a x",
|
||||
"5.0-5.1":"y x",
|
||||
"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"
|
||||
},
|
||||
"op_mini":{
|
||||
"all":"n"
|
||||
},
|
||||
"android":{
|
||||
"2.1":"a x",
|
||||
"2.2":"a x",
|
||||
"2.3":"a x",
|
||||
"3":"a x",
|
||||
"4":"y x",
|
||||
"4.1":"y x",
|
||||
"4.2-4.3":"y x",
|
||||
"4.4":"y",
|
||||
"4.4.3-4.4.4":"y",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"a x",
|
||||
"10":"y"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"a x #1",
|
||||
"11.5":"a x #1",
|
||||
"12":"y x",
|
||||
"12.1":"y",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y",
|
||||
"5":"y",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"y"
|
||||
}
|
||||
},
|
||||
"notes":"Syntax used by browsers with prefixed support may be incompatible with that for proper support.\r\n\r\nSupport can be somewhat emulated in older IE versions using the non-standard \"gradient\" filter. \r\n\r\nFirefox 10+, Opera 11.6+, Chrome 26+ and IE10+ also support the new \"to (side)\" syntax.",
|
||||
"notes_by_num":{
|
||||
"1":"Partial support in Opera 11.10 and 11.50 also refers to only having support for linear gradients."
|
||||
},
|
||||
"usage_perc_y":94.66,
|
||||
"usage_perc_a":0.22,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"linear,linear-gradient,gradiant",
|
||||
"ie_id":"gradients",
|
||||
"chrome_id":"5785905063264256",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
350
build/node_modules/caniuse-db/features-json/css-grid.json
generated
vendored
Normal file
350
build/node_modules/caniuse-db/features-json/css-grid.json
generated
vendored
Normal file
@@ -0,0 +1,350 @@
|
||||
{
|
||||
"title":"CSS Grid Layout",
|
||||
"description":"Method of using a grid concept to lay out content, providing a mechanism for authors to divide available space for layout into columns and rows using a set of predictable sizing behaviors. Includes support for all `grid-*` properties and the `fr` unit.",
|
||||
"spec":"https://www.w3.org/TR/css3-grid-layout/",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://blogs.msdn.com/b/ie/archive/2011/04/14/ie10-platform-preview-and-css-features-for-adaptive-layouts.aspx",
|
||||
"title":"IE Blog post"
|
||||
},
|
||||
{
|
||||
"url":"https://bugs.webkit.org/show_bug.cgi?id=60731",
|
||||
"title":"WebKit (Chrome, Safari, etc.) feature request"
|
||||
},
|
||||
{
|
||||
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=616605",
|
||||
"title":"Mozilla (Firefox) feature request"
|
||||
},
|
||||
{
|
||||
"url":"https://github.com/codler/Grid-Layout-Polyfill",
|
||||
"title":"Polyfill based on old spec"
|
||||
},
|
||||
{
|
||||
"url":"https://github.com/FremyCompany/css-grid-polyfill/",
|
||||
"title":"Polyfill based on new spec"
|
||||
},
|
||||
{
|
||||
"url":"https://webkit.org/blog/7434/css-grid-layout-a-new-layout-module-for-the-web/",
|
||||
"title":"WebKit Blog post"
|
||||
},
|
||||
{
|
||||
"url":"https://gridbyexample.com/",
|
||||
"title":"Css Grid By Example: Everything you need to learn CSS Grid Layout"
|
||||
},
|
||||
{
|
||||
"url":"https://mozilladevelopers.github.io/playground/",
|
||||
"title":"Mozilla: Introduction to CSS Grid Layout"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"[GridBugs](https://github.com/rachelandrew/gridbugs): aims to be a community curated list of CSS Grid Layout bugs"
|
||||
},
|
||||
{
|
||||
"description":"Safari does not yet support intrinsic and extrinsic sizing with grid properties such as `grid-template-rows`"
|
||||
}
|
||||
],
|
||||
"categories":[
|
||||
"CSS"
|
||||
],
|
||||
"stats":{
|
||||
"ie":{
|
||||
"5.5":"n",
|
||||
"6":"n",
|
||||
"7":"n",
|
||||
"8":"n",
|
||||
"9":"p",
|
||||
"10":"a x #2",
|
||||
"11":"a x #2"
|
||||
},
|
||||
"edge":{
|
||||
"12":"a x #2",
|
||||
"13":"a x #2",
|
||||
"14":"a x #2",
|
||||
"15":"a x #2",
|
||||
"16":"y",
|
||||
"17":"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":"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":"p",
|
||||
"38":"p",
|
||||
"39":"p",
|
||||
"40":"p d #3",
|
||||
"41":"p d #3",
|
||||
"42":"p d #3",
|
||||
"43":"p d #3",
|
||||
"44":"p d #3",
|
||||
"45":"p d #3",
|
||||
"46":"p d #3",
|
||||
"47":"p d #3",
|
||||
"48":"p d #3",
|
||||
"49":"p d #3",
|
||||
"50":"p d #3",
|
||||
"51":"p d #3",
|
||||
"52":"y #4",
|
||||
"53":"y #4",
|
||||
"54":"y",
|
||||
"55":"y",
|
||||
"56":"y",
|
||||
"57":"y",
|
||||
"58":"y",
|
||||
"59":"y",
|
||||
"60":"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":"p",
|
||||
"26":"p",
|
||||
"27":"p",
|
||||
"28":"p",
|
||||
"29":"p d #1",
|
||||
"30":"p d #1",
|
||||
"31":"p d #1",
|
||||
"32":"p d #1",
|
||||
"33":"p d #1",
|
||||
"34":"p d #1",
|
||||
"35":"p d #1",
|
||||
"36":"p d #1",
|
||||
"37":"p d #1",
|
||||
"38":"p d #1",
|
||||
"39":"p d #1",
|
||||
"40":"p d #1",
|
||||
"41":"p d #1",
|
||||
"42":"p d #1",
|
||||
"43":"p d #1",
|
||||
"44":"p d #1",
|
||||
"45":"p d #1",
|
||||
"46":"p d #1",
|
||||
"47":"p d #1",
|
||||
"48":"p d #1",
|
||||
"49":"p d #1",
|
||||
"50":"p d #1",
|
||||
"51":"p d #1",
|
||||
"52":"p d #1",
|
||||
"53":"p d #1",
|
||||
"54":"p d #1",
|
||||
"55":"p d #1",
|
||||
"56":"p d #1",
|
||||
"57":"y #4",
|
||||
"58":"y",
|
||||
"59":"y",
|
||||
"60":"y",
|
||||
"61":"y",
|
||||
"62":"y",
|
||||
"63":"y",
|
||||
"64":"y",
|
||||
"65":"y",
|
||||
"66":"y"
|
||||
},
|
||||
"safari":{
|
||||
"3.1":"n",
|
||||
"3.2":"n",
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"5.1":"n",
|
||||
"6":"p",
|
||||
"6.1":"p",
|
||||
"7":"p",
|
||||
"7.1":"p",
|
||||
"8":"p",
|
||||
"9":"p",
|
||||
"9.1":"p",
|
||||
"10":"p",
|
||||
"10.1":"y",
|
||||
"11":"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":"p d #1",
|
||||
"29":"p d #1",
|
||||
"30":"p d #1",
|
||||
"31":"p d #1",
|
||||
"32":"p d #1",
|
||||
"33":"p d #1",
|
||||
"34":"p d #1",
|
||||
"35":"p d #1",
|
||||
"36":"p d #1",
|
||||
"37":"p d #1",
|
||||
"38":"p d #1",
|
||||
"39":"p d #1",
|
||||
"40":"p d #1",
|
||||
"41":"p d #1",
|
||||
"42":"p d #1",
|
||||
"43":"p d #1",
|
||||
"44":"y",
|
||||
"45":"y",
|
||||
"46":"y",
|
||||
"47":"y",
|
||||
"48":"y",
|
||||
"49":"y",
|
||||
"50":"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":"p",
|
||||
"7.0-7.1":"p",
|
||||
"8":"p",
|
||||
"8.1-8.4":"p",
|
||||
"9.0-9.2":"p",
|
||||
"9.3":"p",
|
||||
"10.0-10.2":"p",
|
||||
"10.3":"y",
|
||||
"11.0-11.2":"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":"p",
|
||||
"4.4":"p",
|
||||
"4.4.3-4.4.4":"p",
|
||||
"62":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"p"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a x #2",
|
||||
"11":"a x #2"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"p",
|
||||
"5":"n",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"p d #1"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Enabled in Chrome through the \"experimental Web Platform features\" flag in chrome://flags",
|
||||
"2":"Partial support in IE refers to supporting an [older version](https://www.w3.org/TR/2011/WD-css3-grid-layout-20110407/) of the specification.",
|
||||
"3":"Enabled in Firefox through the `layout.css.grid.enabled ` flag",
|
||||
"4":"There are some bugs with overflow ([1356820](https://bugzilla.mozilla.org/show_bug.cgi?id=1356820), [1348857](https://bugzilla.mozilla.org/show_bug.cgi?id=1348857), [1350925](https://bugzilla.mozilla.org/show_bug.cgi?id=1350925))",
|
||||
"5":"Enabled in Edge through the \"Enable Unprefixed CSS Grid Layout\" flag in about:flags"
|
||||
},
|
||||
"usage_perc_y":71.42,
|
||||
"usage_perc_a":5.5,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"grids,grid-row,grid-column,grid-template,display:grid,inline-grid,fr unit,fractional unit",
|
||||
"ie_id":"cssgridlayout",
|
||||
"chrome_id":"4589636412243968",
|
||||
"firefox_id":"css-grid-layout",
|
||||
"webkit_id":"specification-css-grid-layout-level-1",
|
||||
"shown":true
|
||||
}
|
||||
317
build/node_modules/caniuse-db/features-json/css-hanging-punctuation.json
generated
vendored
Normal file
317
build/node_modules/caniuse-db/features-json/css-hanging-punctuation.json
generated
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
{
|
||||
"title":"CSS hanging-punctuation",
|
||||
"description":"Allows some punctuation characters from start (or the end) of text elements to be placed \"outside\" of the box in order to preserve the reading flow.",
|
||||
"spec":"https://drafts.csswg.org/css-text-3/#hanging-punctuation-property",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://css-tricks.com/almanac/properties/h/hanging-punctuation/",
|
||||
"title":"CSS tricks article"
|
||||
},
|
||||
{
|
||||
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=1253615",
|
||||
"title":"Firefox bug #1253615"
|
||||
}
|
||||
],
|
||||
"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":"u",
|
||||
"16":"u",
|
||||
"17":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":11.44,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"hanging punctuation,force-end,allow-end",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
317
build/node_modules/caniuse-db/features-json/css-has.json
generated
vendored
Normal file
317
build/node_modules/caniuse-db/features-json/css-has.json
generated
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
{
|
||||
"title":":has() CSS relational pseudo-class",
|
||||
"description":"Only select elements containing specified content. For example, `a:has(>img)` selects all `<a>` elements that contain an `<img>` child.",
|
||||
"spec":"https://drafts.csswg.org/selectors-4/#relational",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/:has",
|
||||
"title":"MDN Web Docs - :has"
|
||||
},
|
||||
{
|
||||
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=418039",
|
||||
"title":"Firefox support 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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"n"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6.2":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":0,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"children,parent,selector",
|
||||
"ie_id":"cssrelationalpseudoclasshas",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
313
build/node_modules/caniuse-db/features-json/css-hyphenate.json
generated
vendored
Normal file
313
build/node_modules/caniuse-db/features-json/css-hyphenate.json
generated
vendored
Normal file
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"title":"CSS4 Hyphenation",
|
||||
"description":"Control the spacing and characters used when hyphenating",
|
||||
"spec":"https://www.w3.org/TR/css-text-4/#hyphenation",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://webdesign.about.com/od/fonts/a/hyphenation-in-css3.htm",
|
||||
"title":"Hyphenation in CSS3"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"categories":[
|
||||
"CSS"
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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":"y",
|
||||
"56":"y",
|
||||
"57":"y",
|
||||
"58":"y",
|
||||
"59":"y",
|
||||
"60":"y",
|
||||
"61":"y",
|
||||
"62":"y",
|
||||
"63":"y",
|
||||
"64":"y",
|
||||
"65":"y",
|
||||
"66":"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",
|
||||
"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":"u",
|
||||
"49":"u",
|
||||
"50":"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"
|
||||
},
|
||||
"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",
|
||||
"62":"u"
|
||||
},
|
||||
"bb":{
|
||||
"7":"u",
|
||||
"10":"u"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"u",
|
||||
"11":"u",
|
||||
"11.1":"u",
|
||||
"11.5":"u",
|
||||
"12":"u",
|
||||
"12.1":"u",
|
||||
"37":"u"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"u"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"u"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"u",
|
||||
"11":"u"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"u"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"u",
|
||||
"5":"u",
|
||||
"6.2":"u"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"u"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"u"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":""
|
||||
},
|
||||
"usage_perc_y":26.53,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"hyphenate-character,hyphenate-limit-zone,hyphenate-limit-chars,hyphenate-limit-lines,hyphenate-limit-last",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":false
|
||||
}
|
||||
325
build/node_modules/caniuse-db/features-json/css-hyphens.json
generated
vendored
Normal file
325
build/node_modules/caniuse-db/features-json/css-hyphens.json
generated
vendored
Normal file
@@ -0,0 +1,325 @@
|
||||
{
|
||||
"title":"CSS Hyphenation",
|
||||
"description":"Method of controlling when words at the end of lines should be hyphenated using the \"hyphens\" property.",
|
||||
"spec":"https://www.w3.org/TR/css3-text/#hyphenation",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en/CSS/hyphens",
|
||||
"title":"MDN Web Docs - CSS hyphens"
|
||||
},
|
||||
{
|
||||
"url":"http://blog.fontdeck.com/post/9037028497/hyphens",
|
||||
"title":"Blog post"
|
||||
},
|
||||
{
|
||||
"url":"https://www.webplatform.org/docs/css/properties/hyphens",
|
||||
"title":"WebPlatform Docs"
|
||||
},
|
||||
{
|
||||
"url":"https://bugs.chromium.org/p/chromium/issues/detail?id=605840",
|
||||
"title":"Chrome bug for implementing hyphenation"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"categories":[
|
||||
"CSS3"
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"firefox":{
|
||||
"2":"n",
|
||||
"3":"n",
|
||||
"3.5":"n",
|
||||
"3.6":"n",
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"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"
|
||||
},
|
||||
"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":"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"
|
||||
},
|
||||
"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 x",
|
||||
"10.1":"y x",
|
||||
"11":"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",
|
||||
"35":"n",
|
||||
"36":"n",
|
||||
"37":"n",
|
||||
"38":"n",
|
||||
"39":"n",
|
||||
"40":"n",
|
||||
"41":"n",
|
||||
"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"
|
||||
},
|
||||
"ios_saf":{
|
||||
"3.2":"n",
|
||||
"4.0-4.1":"n",
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"62":"a #1"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"n"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"n"
|
||||
},
|
||||
"and_chr":{
|
||||
"62":"a #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"57":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11.4":"a x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n",
|
||||
"5":"a #1",
|
||||
"6.2":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
},
|
||||
"baidu":{
|
||||
"7.12":"a #1"
|
||||
}
|
||||
},
|
||||
"notes":"Chrome < 55 and Android 4.0 Browser support \"-webkit-hyphens: none\", but not the \"auto\" property. It is [advisable to set the @lang attribute](http://blog.adrianroselli.com/2015/01/on-use-of-lang-attribute.html) on the HTML element to enable hyphenation support and improve accessibility.",
|
||||
"notes_by_num":{
|
||||
"1":"Only supported on Android & Mac platforms (and only the \"auto\" value) for now. [See commit](https://crrev.com/ed7e106e0e48b3afb160a5bdbb37649e307d2b05) & related [bug](https://bugs.chromium.org/p/chromium/issues/detail?id=652964)."
|
||||
},
|
||||
"usage_perc_y":25.74,
|
||||
"usage_perc_a":63.74,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"hyphen,shy",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user